Added support dunction for get all api keys

This commit is contained in:
Lukáš Plevač 2023-10-01 11:50:55 +02:00
parent fed902d45e
commit 2a4e21fde3

View File

@ -3,9 +3,20 @@
function APIinfo($params) {
$station = new \DAL\station()
$station = new \DAL\station();
$station->find("apiKey", $params["key"])
$station->find("apiKey", $params["key"]);
return ["id" => $station->id->get(), "name" => $station->name->get(), "locator" => $station->locator->get()];
}
function keys($params) {
$stations = new \wsos\database\core\table(\DAL\station::class);
$res = [];
foreach ($stations->getAll()->values as $station) {
$res[] = ["name" => $station->name->get(), "key" => $station->apiKey->get()];
}
return $res;
}