PHP_SMART_HOME_V3/app/class/FallbackManager.php

37 lines
1.0 KiB
PHP
Raw Normal View History

2020-02-11 15:01:00 +00:00
<?php
/**
*
*/
class FallbackManager
{
public $deviceDefinitions = "";
function __construct($deviceDefinition)
{
$this->deviceDefinitions = $deviceDefinition;
}
function check(){
//TODO: FIX IT
2020-02-14 16:05:56 +00:00
$allDevicesData = DeviceManager::getAllDevices();
2020-02-11 15:01:00 +00:00
foreach ($allDevicesData as $deviceKey => $deviceValue) {
$allSubDevicesData = SubDeviceManager::getAllSubDevices($deviceValue['device_id']);
foreach ($allSubDevicesData as $subDeviceKey => $subDeviceValue) {
if (!isset($this->deviceDefinitions[$subDeviceValue['type']]["fallBack"])) {
continue;
}
$lastRecord = RecordManager::getLastRecord($subDeviceValue['subdevice_id']);
2020-02-14 16:05:56 +00:00
if ($lastRecord["value"] == $this->deviceDefinitions[$subDeviceValue['type']]["fallBack"]) {
return;
}
$minutes = (strtotime($lastRecord['time']) - time()) / 60;
if ( $minutes > 3){
2020-02-11 15:01:00 +00:00
RecordManager::create($deviceValue['device_id'], $subDeviceValue['type'], $this->deviceDefinitions[$subDeviceValue['type']]["fallBack"]);
}
}
2020-02-14 16:05:56 +00:00
}
2020-02-11 15:01:00 +00:00
}
}