forked from bren1818/TCPLightingWebInterface
-
Notifications
You must be signed in to change notification settings - Fork 4
/
scheduler.php
408 lines (349 loc) · 15.7 KB
/
scheduler.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<?php
include "include.php";
pageHeader("TCP Lighting Scheduler");
?>
<style>
.scheduledTask{
margin: 20px 0px;
background-color: #fff;
}
.scheduledTask > div{ margin: 10px 0; }
.fxTo{ width: 200px; }
.ifSunTime,
.ifFixedTime,
.ifDim,
.ifSwitch{ display: none; }
.scheduledTask.tm-SunTime .ifSunTime{ display: block; }
.scheduledTask.tm-FixedTime .ifFixedTime{ display: block; }
.scheduledTask.fx-Dim .ifDim{ display: block; }
.scheduledTask.fx-Switch .ifSwitch{ display: block; }
.scheduledTask { border: 1px solid #000; padding: 20px; position: relative; }
.scheduledTask .delTask{
position: absolute; top: -1px; right: -1px; color: #f00; cursor: pointer; height: 20px; width: 20px; border: 1px solid #000; text-align: center; margin: 0;
}
.taskNote{ width: 100%; clear: both; }
.taskNote textarea{ height: 50px; width: 100%; }
p{ margin: 4px 0; }
</style>
<script>
function randomString(length, chars) {
var result = '';
for (var i = length; i > 0; --i) result += chars[Math.floor(Math.random() * chars.length)];
return result;
}
$(function(){
function runSchedule(){
var d = new Date();
console.log("Running Schedule " + d);
$.get("runSchedule.php", function( data ) {
console.log("Schedule Runnner returns: " + data);
});
}
$('#runOnce').click(function(){
runSchedule();
});
$('#poll').click(function(){
$('#runOnce').attr('disabled', true);
$(this).unbind();
$(this).addClass('running');
setInterval(runSchedule, 30000);
});
/* Output Add Scheduled Task */
<?php ob_start(); getScheduleView("__REPLACE__");$schedule = ob_get_clean(); ?>
var addSchedule = '<?php echo preg_replace( "/\r|\n/", "",$schedule); ?>';
function SelectMoveRows(SS1,SS2){
//function shamelessly borrowed from http://johnwbartlett.com/cf_tipsntricks/index.cfm?TopicID=86
var SelID='';
var SelText='';
// Move rows from SS1 to SS2 from bottom to top
for (i=SS1.options.length - 1; i>=0; i--){
if (SS1.options[i].selected == true){
SelID=SS1.options[i].value;
SelText=SS1.options[i].text;
var newRow = new Option(SelText,SelID);
SS2.options[SS2.length]=newRow;
SS1.options[i]=null;
}
}
}
function bindEvents(){
$('select[name="TIME_TYPE"]').change(function(){
$(this).closest('.scheduledTask').removeClass('tm-SunTime');
$(this).closest('.scheduledTask').removeClass('tm-FixedTime');
if( $(this).find('option:selected').val() == "FIXED" ){
$(this).closest('.scheduledTask').addClass('tm-FixedTime');
}else{
$(this).closest('.scheduledTask').addClass('tm-SunTime');
}
});
$('select[name="FX"]').change(function(){
$(this).closest('.scheduledTask').removeClass('fx-Dim');
$(this).closest('.scheduledTask').removeClass('fx-Switch');
if( $(this).find('option:selected').val() == "DIM" ){
$(this).closest('.scheduledTask').addClass('fx-Dim');
}else{
$(this).closest('.scheduledTask').addClass('fx-Switch');
}
});
$('.schedule-slider').slider({
range: "min",
min: 0,
max: 100,
//value: $(this).attr('data-level'),
create: function( event, ui ){
$(this).slider("option", "value", $(this).parent().find("input[name='DIM_SCHED']").val() );
},
stop: function(event, ui) {
$(this).parent().find('input[name="DIM_SCHED"]').val( ui.value );
},
slide: function( event, ui ) {
$(this).parent().find('input[name="DIM_SCHED"]').val( ui.value );
}
});
$('select[name="TIME_TYPE"]').change();
$('select[name="FX"]').change();
$('.btnAdd, .btnRemove').click(function(){
var available = $(this).closest('.deviceList').find('select.available')[0];
var selected = $(this).closest('.deviceList').find('select.selected')[0];
if( $(this).hasClass('btnAdd') ){
SelectMoveRows(available, selected );
}else{
SelectMoveRows( selected, available );
}
});
$('.delTask').click(function(){ $(this).parent().remove(); });
}
$('#add').click(function(){
$('#events').append( addSchedule.replace(/__REPLACE__/g, randomString(10, '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') ) );
bindEvents();
});
$('#save').click(function(){
$('select[name="DEVICE_SELECTED"] option').each(function(){ $(this).attr('selected','selected'); });
var schedules = [];
$('.scheduledTask').each(function(){
schedules.push( $(this).find(':input').serializeArray() );
});
/* Sample
[[{"name":"DAY_MON","value":"on"},{"name":"DAY_WED","value":"on"},{"name":"DAY_FRI","value":"on"},{"name":"HOUR","value":"8"},{"name":"MIN","value":"1"},{"name":"FX","value":"SWITCH"},{"name":"DIM_SCHED","value":""},{"name":"SWITCH_SCHED","value":"1"},{"name":"DEVICE_SELECTED","value":"359905593582463444"}],[{"name":"DAY_MON","value":"on"},{"name":"DAY_WED","value":"on"},{"name":"DAY_FRI","value":"on"},{"name":"HOUR","value":"8"},{"name":"MIN","value":"10"},{"name":"FX","value":"SWITCH"},{"name":"DIM_SCHED","value":""},{"name":"DEVICE_SELECTED","value":"359905593582463444"}]]
*/
//$.ajaxSetup({ cache: false, async: false });
$.ajax({
type: 'POST',
url: 'runSchedule.php',
data: {'schedule': JSON.stringify(schedules)},
success: function(msg) {
alert("Saved");
}
});
});
bindEvents();
$( "#events" ).sortable({
placeholder: "ui-state-highlight"
});
$( "#events" ).disableSelection();
});
</script>
<?php
/*
*
* TCP Ligthing Web UI Test Script - By Brendon Irwin
*
*/
function getScheduleView($task=array()){
if( $task == "__REPLACE__"){
$randID = "__REPLACE__";
}else{
$randID = generateRandomString();
}
?>
<form class="scheduledTask">
<div class="delTask">X</div>
<div class="taskNote">
<p>Schedule title/note:</p>
<textarea name="TITLE_NOTE"><?php echo (isset($task["TITLE_NOTE"])) ? $task["TITLE_NOTE"] : ""; ?></textarea>
</div>
<div class="daysOfWeek">
<label for="<?php echo $randID; ?>_MON"><input id="<?php echo $randID; ?>_MON" type="checkbox" name="DAY_MON" <?php echo (isset($task["DAY_MON"]) && $task["DAY_MON"] == "on") ? " checked" : ""; ?>/> Monday</label><br />
<label for="<?php echo $randID; ?>_TUE"><input id="<?php echo $randID; ?>_TUE" type="checkbox" name="DAY_TUE" <?php echo (isset($task["DAY_TUE"]) && $task["DAY_TUE"] == "on") ? " checked" : ""; ?>/> Tuesday</label><br />
<label for="<?php echo $randID; ?>_WED"><input id="<?php echo $randID; ?>_WED" type="checkbox" name="DAY_WED" <?php echo (isset($task["DAY_WED"]) && $task["DAY_WED"] == "on") ? " checked" : ""; ?>/> Wednesday</label><br />
<label for="<?php echo $randID; ?>_THU"><input id="<?php echo $randID; ?>_THU" type="checkbox" name="DAY_THU" <?php echo (isset($task["DAY_THU"]) && $task["DAY_THU"] == "on") ? " checked" : ""; ?>/> Thursday</label><br />
<label for="<?php echo $randID; ?>_FRI"><input id="<?php echo $randID; ?>_FRI" type="checkbox" name="DAY_FRI" <?php echo (isset($task["DAY_FRI"]) && $task["DAY_FRI"] == "on") ? " checked" : ""; ?>/> Friday</label><br />
<label for="<?php echo $randID; ?>_SAT"><input id="<?php echo $randID; ?>_SAT" type="checkbox" name="DAY_SAT" <?php echo (isset($task["DAY_SAT"]) && $task["DAY_SAT"] == "on") ? " checked" : ""; ?>/> Saturday</label><br />
<label for="<?php echo $randID; ?>_SUN"><input id="<?php echo $randID; ?>_SUN" type="checkbox" name="DAY_SUN" <?php echo (isset($task["DAY_SUN"]) && $task["DAY_SUN"] == "on") ? " checked" : ""; ?>/> Sunday</label><br />
<label for=""<?php echo $randID; ?>_ALL><input id="<?php echo $randID; ?>_ALL" type="checkbox" name="DAY_ALL" <?php echo (isset($task["DAY_ALL"]) && $task["DAY_ALL"] == "on") ? " checked" : ""; ?>/> Everyday</label>
</div>
<div class="timeOfDay">
<label>Time:
<select name="TIME_TYPE"><option value="FIXED" <?php echo (isset($task["TIME_TYPE"]) && $task["TIME_TYPE"] == "FIXED") ? " selected" : ""; ?>>FIXED</option><option value="SUNRISE" <?php echo (isset($task["TIME_TYPE"]) && $task["TIME_TYPE"] == "SUNRISE") ? " selected" : ""; ?>>SUNRISE</option><option value="SUNSET" <?php echo (isset($task["TIME_TYPE"]) && $task["TIME_TYPE"] == "SUNSET") ? " selected" : ""; ?>>SUNSET</option>
</select>
</label>
</div>
<div class="timeType">
<?php /***
*
* Added Sunrise-Sunset settings
* 2017-06-09 by Andrew Tsui
*
*/
?>
<div class="ifSunTime">
<label>Offset Hours: <select name="OFFSET_HOUR"><?php for($x=0; $x<=12; $x++){ echo '<option value="'.sprintf("%02d",$x).'"'.( (isset($task["OFFSET_HOUR"]) && $task["OFFSET_HOUR"] == $x) ? " selected" : "").'>'.sprintf("%02d",$x).'</option>'; }
?>
</select>
</label>
<label>Minutes:
<select name="OFFSET_MIN">
<?php for($x=0; $x<=59; $x++){ echo '<option value="'.sprintf("%02d",$x).'"'.( (isset($task["OFFSET_MIN"]) && $task["OFFSET_MIN"] == $x) ? " selected" : "").'>'.sprintf("%02d",$x).'</option>'; }
?>
</select>
</label>
<label>
<select name="OFFSET_DIR"><option value="before" <?php echo (isset($task["OFFSET_DIR"]) && $task["OFFSET_DIR"] == "before") ? " selected" : ""; ?>>before</option><option value="after" <?php echo (isset($task["OFFSET_DIR"]) && $task["OFFSET_DIR"] == "after") ? " selected" : ""; ?>>after</option>
</select>
</label>
</div>
<div class="ifFixedTime">
<label>Hour:
<select name="HOUR">
<?php for($x=0; $x<=23; $x++){
if( $x == 0 ){
echo '<option value="'.sprintf("%02d",$x).'"'.( (isset($task["HOUR"]) && $task["HOUR"] == $x) ? " selected" : "").'>12 AM - MIDNIGHT</option>';
}else if($x == 12){
echo '<option value="'.sprintf("%02d",$x).'"'.( (isset($task["HOUR"]) && $task["HOUR"] == $x) ? " selected" : "").'>12 PM - NOON</option>';
}else{
if( $x > 12 ){
echo '<option value="'.sprintf("%02d",$x).'"'.( (isset($task["HOUR"]) && $task["HOUR"] == $x) ? " selected" : "").'>'. ($x - 12) .( $x >= 12 ? ' PM' : ' AM' ).'</option>';
}else{
echo '<option value="'.sprintf("%02d",$x).'"'.( (isset($task["HOUR"]) && $task["HOUR"] == $x) ? " selected" : "").'>'.$x.( $x >= 12 ? ' PM' : ' AM' ).'</option>';
}
}
} ?>
</select>
</label>
<label>Minute:
<select name="MIN">
<?php for($x=0; $x<=59; $x++){
echo '<option value="'.sprintf("%02d",$x).'"'.( (isset($task["MIN"]) && $task["MIN"] == $x) ? " selected" : "").'>'.sprintf("%02d",$x).'</option>';
}
?>
</select>
</label>
</div>
</div>
<div class="functionTrigger">
<label>Function: <select name="FX"><option value="DIM" <?php echo (isset($task["FX"]) && $task["FX"] == "DIM") ? " selected" : ""; ?>>DIM</option><option value="SWITCH" <?php echo (isset($task["FX"]) && $task["FX"] != "DIM") ? " selected" : ""; ?>>SWITCH</option></select></label>
</div>
<div class="fxTo">
<div class="ifDim">
<div class="schedule-slider" data-device-id="all"></div>
<input name="DIM_SCHED" type="hidden" value="<?php echo (isset($task["FX"]) && $task["FX"] == "DIM") ? $task["DIM_SCHED"] : ""; ?>" />
</div>
<div class="ifSwitch">
<label class="switch">
<input name="SWITCH_SCHED" value="1" type="checkbox" <?php echo (isset($task["FX"]) && $task["FX"] != "DIM" && $task["SWITCH_SCHED"] == 1) ? "checked" : ""; ?>>
<div class="slider round"></div>
</label>
</div>
</div>
<div class="deviceList">
<table>
<tr>
<td>Available</td><td> </td><td>Selected</td>
</tr>
<tr>
<td>
<select size="9" class="available" name="DEVICE_AVAILABLE" multiple>
<?php
$CMD = "cmd=GWRBatch&data=<gwrcmds><gwrcmd><gcmd>RoomGetCarousel</gcmd><gdata><gip><version>1</version><token>".TOKEN."</token><fields>name,image,imageurl,control,power,product,class,realtype,status</fields></gip></gdata></gwrcmd></gwrcmds>&fmt=xml";
$result = getCurlReturn($CMD);
$array = xmlToArray($result);
if( isset( $array["gwrcmd"]["gdata"]["gip"]["room"] ) ){
$DATA = $array["gwrcmd"]["gdata"]["gip"]["room"];
}
if( sizeof($DATA) > 0 ){
if ( isset( $DATA["rid"] ) ){ $DATA = array( $DATA ); }
foreach($DATA as $room){
echo '<optgroup label="Room - '.$room["name"].'">';
//echo '<option data-device-type="room" data-device-id="'.$room["rid"].'" data-room-name="'.$room["name"].'">' . $room["name"] . '</option>';
if( is_array($room["device"]) ){
$device = (array)$room["device"];
if( isset($device["did"]) ){
//$DEVICES[] = "<option data-device-type='light' data-device-id='".$room["device"]["did"]."' data-room-name='".$room["name"]."'>". $room["device"]["name"] ."</option>";
if( isset($task) && isset($task["devices"]) && is_array($task["devices"]) && in_array($device['did'], $task["devices"]) ){
$selected.= '<option value="'.$device['did'].'" selected>'.$device['prodtype'].' - '.$device['name'].'</option>';
}else{
echo '<option value="'.$device['did'].'">'.$device['prodtype'].' - '.$device['name'].'</option>';
}
}else{
for( $x = 0; $x < sizeof($device); $x++ ){
if( isset($device[$x]) && is_array($device[$x]) && ! empty($device[$x]) ){
//$DEVICES[] = '<option data-device-type="light" data-device-id="'.$device[$x]["did"].'" data-room-name="'.$room["name"].'">'. $device[$x]["name"] ."</option>";
if( isset($task) && isset($task["devices"]) && is_array($task["devices"]) && in_array($device[$x]['did'], $task["devices"]) ){
$selected.= '<option value="'.$device[$x]['did'].'" selected>'.$device[$x]['prodtype'].' - '.$device[$x]['name'].'</option>';
}else{
echo '<option value="'.$device[$x]['did'].'">'.$device[$x]['prodtype'].' - '.$device[$x]['name'].'</option>';
}
}
}
}
}
echo '</optgroup>';
}
}
?>
</select>
</td>
<td>
<input type="Button" value="Add >>" class="btnAdd"><br />
<br />
<input type="Button" value="<< Remove" class="btnRemove">
</td>
<td>
<select size="9" class="selected" name="DEVICE_SELECTED" multiple>
<?php
if( isset($selected) && $selected != ""){
echo $selected;
}
?>
</select>
</td>
</tr>
</table>
</div>
</form>
<?php
}
?>
<div class="container" style="background-color: #fff; padding: 20px;">
<h1>Device Scheduler <span style="font-size: 10px;">an alternative to using <a href="scenescreatedit.php?SID=-1">scenes</a></span></h1>
<p><button id="runOnce">Run Now</button> <button id="poll">Poll continuously</button></p>
<p>Note, polling continuously will work if the tab this script is running on has focus. Consider setting up a batch file to run the schedule. See documentation and runschedule.bat</p>
<p>Tasks can be dragged and dropped to re-order. Just click save after.</p>
<?php
$sun_info = date_sun_info(time(), LATITUDE, LONGITUDE);
echo "Sunrise Today: " . date("H:i", $sun_info['sunrise']) . " ";
echo "Sunset Today: " . date("H:i", $sun_info['sunset']) . "<br />";
?>
</div>
<div id="events" class="container">
<?php
if( file_exists("schedule.sched") ){
$array = file_get_contents("schedule.sched");
$tasks = unserialize ($array);
ob_start();
foreach($tasks as $task){
getScheduleView($task);
}
ob_end_flush();
}else{
echo $schedule;
}
?>
</div>
<div class="container">
<button id="save">Save</button>
<button id="add">Add Task</button>
</div>
<?php
pageFooter();
?>