2019-08-23 11:39:42 +00:00
|
|
|
<?php
|
2019-09-18 07:38:24 +00:00
|
|
|
|
2019-08-23 11:39:42 +00:00
|
|
|
class AutomationManager{
|
|
|
|
public static $automation;
|
|
|
|
|
|
|
|
public function remove($automationId) {
|
|
|
|
return Db::command ('DELETE FROM automation WHERE automation_id=?', array ($automationId));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deactive($automationId) {
|
|
|
|
$automation = Db::loadOne ("SELECT * FROM automation WHERE automation_id=?" , array ($automationId));
|
|
|
|
$flipedValue = ($automation['active'] == 1 ? 0 : 1);
|
|
|
|
return Db::command ('UPDATE automation SET active = ? WHERE automation_id=?', array ($flipedValue,$automationId));
|
|
|
|
}
|
|
|
|
|
2019-09-19 18:05:32 +00:00
|
|
|
public function create ($name, $onDays, $doCode, $ifCode, $automationId = "") {
|
2019-08-23 11:39:42 +00:00
|
|
|
$scene = array (
|
|
|
|
'name' => $name,
|
|
|
|
'on_days' => $onDays,
|
2019-08-24 11:07:07 +00:00
|
|
|
'if_something' => $ifCode,
|
|
|
|
'do_something' => $doCode,
|
2019-08-23 11:39:42 +00:00
|
|
|
);
|
|
|
|
try {
|
2019-09-19 18:05:32 +00:00
|
|
|
if ($automationId == "") {
|
|
|
|
Db::add ('automation', $scene);
|
|
|
|
} else {
|
|
|
|
Db::edit ('automation', $scene, 'WHERE automation_id = ?', array ($automationId));
|
|
|
|
}
|
2019-08-23 11:39:42 +00:00
|
|
|
} catch(PDOException $error) {
|
|
|
|
echo $error->getMessage();
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAll(){
|
|
|
|
return Db::loadAll ("SELECT * FROM automation");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function executeAll(){
|
2019-09-18 07:38:24 +00:00
|
|
|
global $logManager;
|
|
|
|
|
2019-08-23 11:39:42 +00:00
|
|
|
$automations = Db::loadAll ("SELECT * FROM automation");
|
|
|
|
$dayNameNow = strtolower (date('D', time()));
|
2019-08-24 11:07:07 +00:00
|
|
|
|
2019-08-23 11:39:42 +00:00
|
|
|
foreach ($automations as $automation) {
|
2019-08-24 11:07:07 +00:00
|
|
|
$onValue = json_decode($automation['if_something'], true);
|
2019-08-23 11:39:42 +00:00
|
|
|
$sceneDoJson = $automation['do_something'];
|
|
|
|
$actionDays = json_decode($automation['on_days'], true);
|
|
|
|
$value = time();
|
2019-08-23 12:20:58 +00:00
|
|
|
$run = false;
|
|
|
|
$restart = false;
|
2019-08-23 11:39:42 +00:00
|
|
|
|
2019-10-08 15:08:54 +00:00
|
|
|
if ($automation['active'] == 1 && $automation['locked'] != 1){
|
|
|
|
Db::edit('automation', array('locked' => 1), 'WHERE automation_id = ?', array($automation['automation_id']));
|
2019-08-23 11:39:42 +00:00
|
|
|
if (in_array($dayNameNow, $actionDays)){
|
2019-09-18 07:38:24 +00:00
|
|
|
if (in_array($onValue['type'], ['sunSet', 'sunRise', 'time','now'])) {
|
2019-08-24 11:07:07 +00:00
|
|
|
if ($onValue['type'] == 'sunSet') {
|
2019-09-18 07:38:24 +00:00
|
|
|
$value = date_sunset($value, SUNFUNCS_RET_TIMESTAMP, 50.0755381 , 14.4378005, 90);
|
2019-08-24 11:07:07 +00:00
|
|
|
} else if ($onValue['type'] == 'sunRise') {
|
2019-09-18 07:38:24 +00:00
|
|
|
$value = date_sunrise($value, SUNFUNCS_RET_TIMESTAMP, 50.0755381 , 14.4378005, 90);
|
2019-08-24 11:07:07 +00:00
|
|
|
} else if ($onValue['type'] == 'time') {
|
|
|
|
$onValue = explode(':',$onValue['value']);
|
2019-08-23 12:20:58 +00:00
|
|
|
$today = date_create('now');
|
|
|
|
$onValue = $today->setTime($onValue[0], $onValue[1]);
|
|
|
|
$value = $today->getTimestamp();
|
|
|
|
}
|
2019-10-09 08:59:05 +00:00
|
|
|
|
|
|
|
if (time() > $value && $automation['executed'] == 0){
|
|
|
|
$run = true;
|
2019-10-10 11:02:44 +00:00
|
|
|
} else if (time() < $value && $automation['executed'] == 1) { //recovery realowing of automation
|
2019-10-09 08:59:05 +00:00
|
|
|
$restart = true;
|
2019-08-23 11:39:42 +00:00
|
|
|
}
|
2019-10-09 08:59:05 +00:00
|
|
|
|
2019-08-25 12:07:01 +00:00
|
|
|
} else if ($onValue['type'] == 'outHome') {
|
2019-08-23 12:20:58 +00:00
|
|
|
|
2019-08-25 12:07:01 +00:00
|
|
|
} else if ($onValue['type'] == 'inHome') {
|
2019-08-23 12:20:58 +00:00
|
|
|
|
2019-08-25 12:07:01 +00:00
|
|
|
} else if ($onValue['type'] == 'noOneHome') {
|
|
|
|
$users = UserManager::getUsers();
|
|
|
|
$membersHome = 0;
|
|
|
|
foreach ($users as $key => $user) {
|
|
|
|
if ($user['at_home'] == 'true'){
|
|
|
|
$membersHome++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($membersHome == 0 && $automation['executed'] == 0) {
|
|
|
|
$run = true;
|
|
|
|
} else if ($membersHome > 0 && $automation['executed'] == 1){
|
|
|
|
$restart = true;
|
|
|
|
}
|
|
|
|
} else if ($onValue['type'] == 'someOneHome') {
|
|
|
|
$users = UserManager::getUsers();
|
|
|
|
$membersHome = 0;
|
|
|
|
foreach ($users as $key => $user) {
|
|
|
|
if ($user['at_home'] == 'true'){
|
|
|
|
$membersHome++;
|
|
|
|
}
|
|
|
|
}
|
2019-08-26 15:32:54 +00:00
|
|
|
if ($membersHome == 0 && $automation['executed'] == 1) {
|
2019-08-25 12:07:01 +00:00
|
|
|
$restart = true;
|
2019-08-26 15:32:54 +00:00
|
|
|
} else if ($membersHome > 0 && $automation['executed'] == 0){
|
2019-08-25 12:07:01 +00:00
|
|
|
$run = true;
|
|
|
|
}
|
2019-08-23 12:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//finalization
|
|
|
|
if ($run) {
|
2019-10-08 14:49:08 +00:00
|
|
|
$body = '';
|
|
|
|
|
2019-08-23 12:20:58 +00:00
|
|
|
$sceneDoArray = json_decode($sceneDoJson);
|
|
|
|
foreach ($sceneDoArray as $deviceId => $deviceState) {
|
|
|
|
RecordManager::create($deviceId, 'on/off', $deviceState);
|
|
|
|
}
|
2019-10-08 14:49:08 +00:00
|
|
|
|
|
|
|
$subscribers = NotificationManager::getSubscription();
|
|
|
|
$i = 0;
|
2019-10-10 11:02:44 +00:00
|
|
|
|
2019-10-08 14:49:08 +00:00
|
|
|
foreach ($subscribers as $key => $subscriber) {
|
|
|
|
$logManager->write("[NOTIFICATION] SENDING NOTIFICATION TO" . $subscriber['id'] . " was executed" . $i);
|
2019-10-09 08:59:47 +00:00
|
|
|
$title = 'Automatization '.$automation['name']." was just executed";
|
|
|
|
$notification = new Notification(SERVERKEY);
|
2019-10-08 14:49:08 +00:00
|
|
|
$notification->to($subscriber['token']);
|
2019-10-09 08:59:47 +00:00
|
|
|
$notification->notification($title, '' , '', '');
|
2019-10-08 14:49:08 +00:00
|
|
|
$notification->send();
|
|
|
|
$notification = null;
|
|
|
|
}
|
|
|
|
|
2019-08-30 15:44:22 +00:00
|
|
|
$logManager->write("[AUTOMATIONS] automation id ". $automation['automation_id'] . " was executed");
|
2019-08-23 12:20:58 +00:00
|
|
|
Db::edit('automation', array('executed' => 1), 'WHERE automation_id = ?', array($automation['automation_id']));
|
|
|
|
} else if ($restart) {
|
2019-08-30 15:44:22 +00:00
|
|
|
$logManager->write("[AUTOMATIONS] automation id ". $automation['automation_id'] . " was restarted");
|
2019-08-23 11:39:42 +00:00
|
|
|
Db::edit('automation', array('executed' => 0), 'WHERE automation_id = ?', array($automation['automation_id']));
|
|
|
|
}
|
2019-10-08 15:08:54 +00:00
|
|
|
Db::edit('automation', array('locked' => 0), 'WHERE automation_id = ?', array($automation['automation_id']));
|
2019-08-23 11:39:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 11:07:07 +00:00
|
|
|
}
|