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 @@ +