From f26bd3e0916eb3b0c2d56feb1d0ad27a06c89728 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Pleva=C4=8D?= Date: Fri, 12 Apr 2024 12:53:35 +0200 Subject: [PATCH] Added support for telemetry --- docker-compose-dev.yml | 4 +- web/API/observations.php | 43 +++++++++++++ web/CONTROLLERS/target.php | 2 +- web/VIEWS/blocks/observation-item_short.html | 2 +- web/VIEWS/observation.html | 20 +++++- web/VIEWS/target.html | 2 +- web/dist/js/simple-json-viewer.min.js | 1 + web/index.php | 1 + web/seeds.php | 64 ++++++++++++++++---- web/static/js/station.js | 11 +++- web/wsos | 2 +- 11 files changed, 128 insertions(+), 24 deletions(-) create mode 100644 web/dist/js/simple-json-viewer.min.js diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index b98a12f..ae72f30 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -4,6 +4,6 @@ services: image: yags-web build: ./web ports: - - 8080:80 + - 3939:80 volumes: - - ./web:/var/www/html/ \ No newline at end of file + - ./web:/var/www/html/ diff --git a/web/API/observations.php b/web/API/observations.php index d92f36d..bbd1bc4 100644 --- a/web/API/observations.php +++ b/web/API/observations.php @@ -72,60 +72,101 @@ } function fail($params) { + if (is_null($params["id"])) { + return ["status" => "observation ID is not set"]; + } + $obs = new \DAL\observation(); $obs->id->set($params["id"]); $obs->fetch(); $obs->status->set("fail"); $obs->commit(); + + return ["status" => true]; } function assigned($params) { + if (is_null($params["id"])) { + return ["status" => "observation ID is not set"]; + } + $obs = new \DAL\observation(); $obs->id->set($params["id"]); $obs->fetch(); $obs->status->set("assigned"); $obs->commit(); + + return ["status" => true]; } function recording($params) { + if (is_null($params["id"])) { + return ["status" => "observation ID is not set"]; + } + $obs = new \DAL\observation(); $obs->id->set($params["id"]); $obs->fetch(); $obs->status->set("recording"); $obs->commit(); + + return ["status" => true]; } function recorded($params) { + if (is_null($params["id"])) { + return ["status" => "observation ID is not set"]; + } + $obs = new \DAL\observation(); $obs->id->set($params["id"]); $obs->fetch(); $obs->status->set("recorded"); $obs->commit(); + + + return ["status" => true]; } function decoding($params) { + if (is_null($params["id"])) { + return ["status" => "observation ID is not set"]; + } + $obs = new \DAL\observation(); $obs->id->set($params["id"]); $obs->fetch(); $obs->status->set("decoding"); $obs->commit(); + + return ["status" => true]; } function success($params) { + if (is_null($params["id"])) { + return ["status" => "observation ID is not set"]; + } + $obs = new \DAL\observation(); $obs->id->set($params["id"]); $obs->fetch(); $obs->status->set("success"); $obs->commit(); + + return ["status" => true]; } function addArtefacts($params) { + + if (is_null($params["fname"]) || is_null($params["id"])) { + return ["status" => "file name or observation ID is not set"]; + } $adir = __DIR__ . "/../ARTEFACTS/" . $params["id"]; @@ -156,4 +197,6 @@ //done artefact save $obs->artefacts->set($artefacts); $obs->commit(); + + return ["status" => true]; } diff --git a/web/CONTROLLERS/target.php b/web/CONTROLLERS/target.php index b578b34..7927004 100644 --- a/web/CONTROLLERS/target.php +++ b/web/CONTROLLERS/target.php @@ -50,4 +50,4 @@ $templates->load("target.html"); $templates->render($context); - $templates->show(); \ No newline at end of file + $templates->show(); diff --git a/web/VIEWS/blocks/observation-item_short.html b/web/VIEWS/blocks/observation-item_short.html index f40269b..16a4d10 100644 --- a/web/VIEWS/blocks/observation-item_short.html +++ b/web/VIEWS/blocks/observation-item_short.html @@ -1,4 +1,4 @@ - + {% BIND item.transmitter.modulation.name %}

-
+
@@ -208,6 +208,7 @@ +