PHP_SMART_HOME_V3/app/api/WidgetApi.php

132 lines
3.2 KiB
PHP
Raw Normal View History

2020-05-24 17:35:19 +00:00
<?php
2020-10-14 16:33:34 +00:00
class WidgetApi extends ApiController
{
2020-05-24 17:35:19 +00:00
2020-10-14 16:33:34 +00:00
public function run($subDeviceId)
{
2020-05-24 17:35:19 +00:00
//$this->requireAuth();
2020-07-20 09:07:32 +00:00
2020-05-24 17:35:19 +00:00
$response = null;
2020-07-20 09:07:32 +00:00
if (RecordManager::getLastRecord($subDeviceId)['execuded'] === 0) {
throw new Exception("Unreachable", 409);
}
2020-05-24 17:35:19 +00:00
$subDeviceData = SubDeviceManager::getSubDevice($subDeviceId);
2020-10-14 16:33:34 +00:00
if ($subDeviceData['type'] == 'on/off') {
2020-05-24 17:35:19 +00:00
$lastValue = RecordManager::getLastRecord($subDeviceData['subdevice_id'])['value'];
RecordManager::create($subDeviceData['device_id'], 'on/off', (int) !$lastValue);
2020-05-24 17:35:19 +00:00
$response = !$lastValue;
2020-07-20 09:07:32 +00:00
} else {
throw new Exception("Bad Request", 403);
2020-05-24 17:35:19 +00:00
}
2020-07-20 09:07:32 +00:00
$i = 0;
$timeout = 20;
2020-10-14 16:33:34 +00:00
while (RecordManager::getLastRecord($subDeviceId)['execuded'] == 0) {
2020-07-20 09:07:32 +00:00
if ($i == $timeout) {
throw new Exception("Timeout", 444);
}
$i++;
usleep(250000);
}
$this->response(['value' => $response]);
2020-05-26 19:42:39 +00:00
}
2020-05-26 19:47:36 +00:00
2020-10-14 16:33:34 +00:00
public function detail($subDeviceId)
{
2020-05-26 19:47:36 +00:00
//$this->requireAuth();
$response = null;
2020-05-27 19:37:35 +00:00
$connectionError = true;
$subDeviceData = SubDeviceManager::getSubDevice($subDeviceId);
2020-10-05 19:11:44 +00:00
$deviceData = DeviceManager::getDeviceById($subDeviceData['device_id']);
2020-05-27 19:37:35 +00:00
2020-10-19 14:22:54 +00:00
//TODO: zeptat se @Patrik Je Graf Dobře Seřazený na DESC ?
$events = RecordManager::getAllRecordForGraph($subDeviceId);
if ( count($events) == 0){
throw new Exception("No Records", 404);
}
$LastRecordTime = new DateTime(reset($events)['time']);
2020-05-27 19:37:35 +00:00
$niceTime = Utilities::ago($LastRecordTime);
$interval = $LastRecordTime->diff(new DateTime());
$hours = $interval->format('%h');
$minutes = $interval->format('%i');
$lastSeen = ($hours * 60 + $minutes);
if (
$lastSeen < $deviceData['sleep_time'] ||
$subDeviceData['type'] == "on/off" ||
2020-10-05 19:11:44 +00:00
$subDeviceData['type'] == "door" ||
$subDeviceData['type'] == "wather"
2020-10-14 16:33:34 +00:00
) {
$connectionError = false;
}
2020-05-27 19:37:35 +00:00
2020-10-14 16:33:34 +00:00
$labels = [];
$values = [];
foreach ($events as $key => $event) {
$recordDatetime = new DateTime($event['time']);
2020-10-19 14:22:54 +00:00
if ($key == 0){
$labels[] = 'now';
} else {
$labels[] = $recordDatetime->format('H:i');
}
2020-10-14 16:33:34 +00:00
$values[] = [
'y' => $event['value'],
't' => $recordDatetime->getTimestamp() * 1000,
];
}
2020-10-05 19:11:44 +00:00
2020-10-14 16:33:34 +00:00
$response = [
'records' => $events,
'graph' => [
2020-10-19 14:22:54 +00:00
'type' => $this->getDeviceConfig($subDeviceData['type'])['graph'],
2020-10-14 16:33:34 +00:00
'data' => [
2020-10-05 19:32:23 +00:00
'labels' => $labels,
2020-10-15 16:55:16 +00:00
'datasets' => [[
//'label' => 'FUCK you',
'data' => $values,
]],
2020-10-14 16:33:34 +00:00
],
'options' => [
2020-10-14 12:31:22 +00:00
'scales' => [
2020-10-19 14:22:54 +00:00
'xAxis' => [[
2020-10-14 12:31:22 +00:00
'type' => 'time',
'distribution' => 'linear',
2020-10-19 14:22:54 +00:00
]],
'yAxes' => [[
2020-10-14 12:31:22 +00:00
'ticks' => [
2020-10-15 16:55:16 +00:00
'min' => $this->getDeviceConfig($subDeviceData['type'])['min'],
'max' => $this->getDeviceConfig($subDeviceData['type'])['max'],
'steps' => $this->getDeviceConfig($subDeviceData['type'])['scale'],
2020-10-14 12:31:22 +00:00
]
2020-10-19 14:22:54 +00:00
]]
2020-10-14 12:31:22 +00:00
],
'legend' => [
'display' => false
],
'tooltips' => [
'enabled' => true
],
'hover' => [
'mode' => true
],
2020-10-05 19:11:44 +00:00
],
2020-10-14 16:33:34 +00:00
],
'comError' => $connectionError,
'lastConnectionTime' => (empty($niceTime) ? "00:00" : $niceTime),
];
2020-05-26 19:47:36 +00:00
2020-10-14 16:33:34 +00:00
$this->response($response);
2020-05-26 19:47:36 +00:00
}
2020-10-15 16:55:16 +00:00
private function getDeviceConfig($type){
if (isset(RANGES[$type])){
return RANGES[$type];
}
return RANGES[''];
}
2020-10-14 16:33:34 +00:00
}