2018-08-24 12:28:06 +02:00
|
|
|
<?php
|
|
|
|
require_once dirname(dirname(__DIR__)) . implode(DIRECTORY_SEPARATOR, ['', 'inc', 'include.php']);
|
|
|
|
$doors = new \pvv\side\Doors($pdo);
|
|
|
|
|
|
|
|
$out = null;
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
|
|
|
|
if (isset($_GET["name"])) {
|
|
|
|
$out = $doors->getByName($_GET["name"]);
|
|
|
|
if (!$out) {
|
|
|
|
echo '{"error": true, "reason": "not found"}';
|
|
|
|
http_response_code(404);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$out = $doors->getAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
|
|
if (isset($_POST["name"]) and isset($_POST["open"]) ) {
|
|
|
|
$out = $doors->setDoorState($_POST["name"], (strtolower($_POST["open"])==="true")?1:0);
|
|
|
|
|
|
|
|
$out = $doors->getByName($_POST["name"]);
|
|
|
|
if (!$out) {
|
|
|
|
echo '{"error": true, "reason": "not found"}';
|
|
|
|
http_response_code(404);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
echo '{"error": true, "reason": "missing either \"name\" or \"open\" argument"}';
|
|
|
|
http_response_code(404);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-24 13:53:18 +02:00
|
|
|
function utf8ize($d) {
|
|
|
|
if (is_array($d)) {
|
|
|
|
foreach ($d as $k => $v) {
|
|
|
|
$d[$k] = utf8ize($v);
|
|
|
|
}
|
|
|
|
} else if (is_string ($d)) {
|
|
|
|
return utf8_encode($d);
|
|
|
|
}
|
|
|
|
return $d;
|
|
|
|
}
|
|
|
|
|
|
|
|
echo json_encode(utf8ize($out));
|