Minor Tweeks
This commit is contained in:
parent
879a63948f
commit
ff2c51d505
@ -18,6 +18,7 @@ class RoomsApi extends ApiController
|
||||
$subDevicesData = SubDeviceManager::getSubdevicesByRoomIds($roomIds);
|
||||
foreach ($subDevicesData as $subDeviceKey => $subDevice) {
|
||||
foreach ($subDevice as $key => $value) {
|
||||
//Type Handling
|
||||
$type = null;
|
||||
if (strpos($subDevicesData[$subDeviceKey][$key]['type'], '-') !== false) {
|
||||
$type = $subDevicesData[$subDeviceKey][$key]['type'];
|
||||
@ -27,6 +28,7 @@ class RoomsApi extends ApiController
|
||||
continue;
|
||||
}
|
||||
|
||||
//Record Translation
|
||||
$cammelCaseClass = "";
|
||||
foreach (explode('-', $type) as $word) {
|
||||
$cammelCaseClass .= ucfirst($word);
|
||||
@ -39,6 +41,25 @@ class RoomsApi extends ApiController
|
||||
continue;
|
||||
}
|
||||
$subDevicesData[$subDeviceKey][$key]['value'] = $deviceClass->translate($subDevicesData[$subDeviceKey][$key]['value']);
|
||||
|
||||
//Connection Error Creation
|
||||
$niceTime = Utilities::ago($LastRecordTime);
|
||||
|
||||
$interval = $LastRecordTime->diff(new DateTime());
|
||||
$hours = $interval->format('%h');
|
||||
$minutes = $interval->format('%i');
|
||||
$lastSeen = ($hours * 60 + $minutes);
|
||||
|
||||
if (
|
||||
$lastSeen < $subDevicesData[$subDeviceKey][$key]['sleep_time'] ||
|
||||
$subDevicesData[$subDeviceKey][$key]['type'] == "on/off" ||
|
||||
$subDevicesData[$subDeviceKey][$key]['type'] == "door" ||
|
||||
$subDevicesData[$subDeviceKey][$key]['type'] == "wather"
|
||||
) {
|
||||
$connectionError = false;
|
||||
}
|
||||
$subDevicesData[$subDeviceKey][$key]['connection_error'] = $connectionError
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -46,8 +46,8 @@ class WidgetApi extends ApiController
|
||||
$response = null;
|
||||
$connectionError = true;
|
||||
|
||||
$subDeviceData = SubDeviceManager::getSubDevice($subDeviceId);
|
||||
$deviceData = DeviceManager::getDeviceById($subDeviceData['device_id']);
|
||||
$subDeviceData = SubDeviceManager::getSubdeviceDetailById($subDeviceId);
|
||||
|
||||
|
||||
//TODO: zeptat se @Patrik Je Graf Dobře Seřazený na DESC ?
|
||||
$events = RecordManager::getAllRecordForGraph($subDeviceId, $period, $groupBy[$period]);
|
||||
@ -65,20 +65,6 @@ class WidgetApi extends ApiController
|
||||
$LastRecordTime = new DateTime(reset($events)['time']);
|
||||
$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" ||
|
||||
$subDeviceData['type'] == "door" ||
|
||||
$subDeviceData['type'] == "wather"
|
||||
) {
|
||||
$connectionError = false;
|
||||
}
|
||||
|
||||
$labels = [];
|
||||
$values = [];
|
||||
foreach ($events as $key => $event) {
|
||||
@ -95,6 +81,9 @@ class WidgetApi extends ApiController
|
||||
}
|
||||
|
||||
$response = [
|
||||
'room_id' => $subDeviceData['room_id'],
|
||||
'device_id' => $subDeviceData['device_id'],
|
||||
'lastConnectionTime' => (empty($niceTime) ? "00:00" : $niceTime),
|
||||
'records' => $events,
|
||||
'graph' => [
|
||||
'type' => $this->getDeviceConfig($subDeviceData['type'])['graph'],
|
||||
@ -124,8 +113,7 @@ class WidgetApi extends ApiController
|
||||
],
|
||||
],
|
||||
],
|
||||
'comError' => $connectionError,
|
||||
'lastConnectionTime' => (empty($niceTime) ? "00:00" : $niceTime),
|
||||
|
||||
];
|
||||
|
||||
//TODO: Make Cleaner
|
||||
|
@ -26,6 +26,10 @@ class GoogleHome {
|
||||
}
|
||||
}
|
||||
|
||||
if ($traids < 0){
|
||||
continue;
|
||||
}
|
||||
|
||||
$tempDevice = [
|
||||
'id' => (string) $deviceData['device_id'],
|
||||
'type' => $actionType,
|
||||
|
@ -72,12 +72,13 @@ class SubDeviceManager
|
||||
return Db::loadAll("DELETE FROM subdevices WHERE subdevice_id = ?", array($subDeviceId));
|
||||
}
|
||||
|
||||
public static function getSubdevicesByRoomIds($roomIds = NULL) {
|
||||
public static function getSubdevicesByRoomIds($roomIds = NULL)
|
||||
{
|
||||
if (empty($roomIds)) return NULL;
|
||||
|
||||
//TODO: @Patrik Check line 89
|
||||
$rows = Db::loadAll("
|
||||
SELECT d.room_id, sd.subdevice_id, sd.device_id, d.icon, d.name, sd.type, sd.unit, r.value FROM subdevices sd
|
||||
SELECT d.room_id, d.sleep_time, sd.subdevice_id, sd.device_id, d.icon, d.name, sd.type, sd.unit, r.value FROM subdevices sd
|
||||
JOIN devices d ON sd.device_id = d.device_id
|
||||
JOIN records r ON r.subdevice_id = sd.subdevice_id
|
||||
WHERE d.room_id IN (" . str_repeat("?,", count($roomIds) - 1) . "?)
|
||||
@ -98,4 +99,15 @@ class SubDeviceManager
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
public static function getSubdeviceDetailById($subDeviceId){
|
||||
if (empty($subDeviceId)) return NULL;
|
||||
|
||||
$rows = Db::loadOne("SELECT d.room_id, d.sleep_time, sd.subdevice_id, sd.type, sd.device_id FROM subdevices sd
|
||||
JOIN devices d ON sd.device_id = d.device_id
|
||||
WHERE sd.subdevice_id = ? ", [$subDeviceId]);
|
||||
|
||||
return $rows;
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user