Compare commits

...

2 Commits

Author SHA1 Message Date
Dirk Heilig d4fce11f5a atomic update 2024-04-19 14:52:11 +02:00
Dirk Heilig 5f188442a1 reformate 2024-04-19 14:50:54 +02:00
3 changed files with 12 additions and 13 deletions

View File

@ -14,5 +14,4 @@ ADD . /app
VOLUME /app/public
ENTRYPOINT /app/generator.php

View File

@ -16,4 +16,3 @@ variables:
werkstatt_temp:
topic: c3re/werkstatttemp
cast: float

View File

@ -35,7 +35,6 @@ $c->onMessage(function (\Mosquitto\Message $message) use (&$data, $conf) {
" unknown\n";
die(1);
}
var_dump($data);
$data[$message->topic]["changed"] = time();
$out = file_get_contents(__DIR__ . "/template.json");
$out = preg_replace_callback(
@ -69,7 +68,9 @@ $c->onMessage(function (\Mosquitto\Message $message) use (&$data, $conf) {
if (!is_dir("public")) {
mkdir("public");
}
file_put_contents("public/spaceapi.json", $out);
file_put_contents("public/spaceapi.json.new", $out);
// ensure atomic update
rename("public/spaceapi.json.new", "public/spaceapi.json");
});
$c->connect($conf["mqtt"]["host"]);
$data = [];