PHP_SMART_HOME_V3/app/controls/automation.php

57 lines
1.8 KiB
PHP
Raw Normal View History

2019-08-23 11:39:42 +00:00
<?php
if (isset($_POST) && !empty($_POST)){
2019-10-13 08:07:03 +00:00
if (isset($_POST['modalFinal']) && $_POST['action'] == "add") {
2019-08-24 11:07:07 +00:00
$doCode = json_encode($_POST['device'], JSON_PRETTY_PRINT);
$ifCode = json_encode([
"type" => $_POST['atSelector'],
"value" => $_POST['atSelectorValue'],
], JSON_PRETTY_PRINT);
2019-08-23 11:39:42 +00:00
$onDays = $_POST['atDays'];
2019-10-13 08:07:03 +00:00
//Debug
2020-02-18 20:30:44 +00:00
// if (DEBUGMOD == 1) {
// echo '<pre>';
// echo $permissionsInJson;
// echo $deviceId;
// var_dump(json_decode ($permissionsInJson));
// echo '</pre>';
// echo '<a href="' . BASEDIR .'">CONTINUE</a>';
// die();
// }
2019-10-13 08:07:03 +00:00
2019-10-08 16:23:57 +00:00
AutomationManager::create($_POST['name'], $onDays, $doCode, $ifCode);
2019-08-23 11:39:42 +00:00
2019-10-13 08:07:03 +00:00
header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
2019-09-19 18:05:32 +00:00
die();
2019-10-13 08:07:03 +00:00
} else if (isset($_POST['modalFinal']) && $_POST['action'] == "edit") {
2019-09-19 18:05:32 +00:00
$doCode = json_encode($_POST['device'], JSON_PRETTY_PRINT);
if (isset ($_POST['atDeviceValue'])) {
$subDeviceId = $_POST['atDeviceValue'];
$subDeviceValue = $_POST['atDeviceValueInt'];
$subDevice = SubDeviceManager::getSubDevice($subDeviceId);
$subDeviceMaster = SubDeviceManager::getSubDeviceMaster($subDeviceId,$subDevice['type']);
$json = json_encode([
2019-10-13 08:07:03 +00:00
'deviceID' => $subDeviceMaster['device_id'],
'type'=> $subDevice['type'],
'value'=> $subDeviceValue,
2019-09-19 18:05:32 +00:00
]);
}
$_POST['atSelectorValue'] = (isset($_POST['atTime']) ? $_POST['atTime'] : (isset($_POST['atDeviceValue']) ? $json : $_POST['atSelector']));
$ifCode = json_encode([
"type" => $_POST['atSelector'],
"value" => $_POST['atSelectorValue'],
], JSON_PRETTY_PRINT);
$onDays = ($_POST['day'] != '' ? json_encode($_POST['day']) : '');
2019-10-08 16:23:57 +00:00
AutomationManager::create($_POST['name'], $onDays, $doCode, $ifCode, (isset ($_POST['automation_id']) ? $_POST['automation_id'] : ""));
2019-09-19 18:05:32 +00:00
2019-10-11 14:32:05 +00:00
header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
2019-08-23 12:30:46 +00:00
die();
}
2019-08-23 11:39:42 +00:00
}
?>