-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlampcontrol.php
262 lines (245 loc) · 7.8 KB
/
lampcontrol.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
<?php
$channel=($_GET['channel']);
$command=($_GET['command']);
$xmlfile = "switch.xml";
openlog("noolite-php", LOG_NDELAY, LOG_LOCAL0);
include 'switchlamp.php';
if (($channel < 1) || ($channel > 64))
{
if ($LOGGING)
{
syslog("LOG_WARNING", "Channel " . $channel . " out of range");
}
exit;
}
$db = new SQLite3("lamps.db", SQLITE3_OPEN_READWRITE);
$db->busyTimeout(1000);
$db->exec("PRAGMA synchronous=OFF;");
$db->exec("PRAGMA journal_mode=MEMORY;");
$switches = simplexml_load_file($xmlfile);
if (!$switches)
{
syslog(LOG_ERR, "Couldn't open XML file " . $xmlfile);
exit();
}
$items = $switches->xpath("channel[@id=" . $channel . "]");
if (count($items) > 0)
{
if (count($items) == 1)
{
$item = $items[0];
}
else
{
$success = 0;
foreach($items as $i => $subitem)
{
if ($subitem["command"] == $command)
{
$item = $items[$i];
$success = 1;
break;
}
if (($subitem["command"] == NULL) && !isset($defkey))
{
$defkey = $i;
}
}
if (!$success)
{
if (isset($defkey))
{
$item = $items[$defkey];
}
else
{
$item = $items[0];
}
}
}
if ($item["enabled"] == "yes")
{
switch ((string)$item["mode"])
{
case "toggle":
foreach ($item->lamp as $lamp)
{
$state = $db->querySingle("SELECT state FROM lamps WHERE id=" . $lamp["channel"] . ";", false);
syslog(LOG_INFO, "Channel: " . $lamp["channel"] . " State: " . $state);
if ($state > 0)
{
$state = 0;
}
else
{
$state = 1;
}
switchlamp($lamp["channel"], $state);
}
break;
case "on":
foreach ($item->lamp as $lamp)
{
switchlamp($lamp["channel"], 1);
}
break;
case "off":
foreach ($item->lamp as $lamp)
{
switchlamp($lamp["channel"], 0);
}
break;
case "alloff":
$lamps = $db->query("SELECT id FROM lamps WHERE state=1;");
while ($lamp = $lamps->fetchArray())
{
switchlamp($lamp["channel"], 0);
}
break;
case "combined":
$i = 0;
foreach ($item->lamp as $lamp)
{
$lamps[$i++] = $db->querySingle("SELECT state FROM lamps WHERE id=" . $lamp["channel"] . ";", false);
}
$key = array_search("0", $lamps); // find the first lamp which is off
if ($key === FALSE) // all lamps are turned on
{
foreach ($item->lamp as $lamp) // turn'em off
{
switchlamp($lamp["channel"], 0);
}
}
else
{
$lamp = $item->lamp[$key];
switchlamp($lamp["channel"], 1); // turn on the next lamp
/*
if ($item["override"] == "yes") // check if any other lamps are enabled and turn'em off
{
$index = array_search($key, array_keys($lamps));
$lamps_subarr = array_slice($lamps, $index+1, 255, true);
foreach ($lamps_subarr as $id => $state)
{
if ($state > 0)
{
$lamp = $item->lamp[$id];
switchlamp($lamp["channel"], 0);
}
}
}
*/
}
break;
case "sequence":
$i = 0;
foreach ($item->lamp as $lamp)
{
$lamps[$i++] = $db->querySingle("SELECT state FROM lamps WHERE id=" . $lamp["channel"] . ";", false);
}
$key = array_search("1", $lamps); // find the first lamp which is on
if ($key === FALSE) // all lamps are turned off
{
$lamp = $item->lamp[0]; // turn on the first lamp
switchlamp($lamp["channel"], 1);
}
else
{
$lamp = $item->lamp[++$key];
switchlamp($lamp["channel"], 1); // turn on next lamp
/*
if ($item["override"] == "yes") // check if any other lamps are enabled and turn'em off
{
$index = array_search($key, array_keys($lamps));
$lamps_subarr = array_slice($lamps, $index+1, 255, true);
foreach ($lamps_subarr as $id => $state)
{
if ($state > 0)
{
$lamp = $item->lamp[$id];
switchlamp($lamp["channel"], 0);
}
}
}
*/
$lamp = $item->lamp[++$key];
switchlamp($lamp["channel"], 0); // turn off lamp that was on before
}
break;
case "group":
$i = 0;
foreach ($item->lamp as $lamp)
{
$lamps[$i++] = $db->querySingle("SELECT state FROM lamps WHERE id=" . $lamp["channel"] . ";", false);
}
$keys = array_keys($lamps, "1"); // find all lamps turned on, if any
if (empty($keys)) // turn on all lamps
{
foreach ($item->lamp as $lamp)
{
switchlamp($lamp["channel"], 1);
}
}
else // turn off all lamps
{
foreach ($keys as $key => $id)
{
$lamp = $item->lamp[$id];
switchlamp($lamp["channel"], 0);
}
}
break;
case "dim_steps":
$i = 0;
foreach ($item->lamp as $lamp)
{
$lamps[$i++] = $db->querySingle("SELECT state FROM lamps WHERE id=" . $lamp["channel"] . ";", false);
}
$keys = array_keys($lamps, "1");
if (empty($keys)) // switch all lamps to 50 % brightness
{
foreach ($item->lamp as $lamp)
{
switchlamp($lamp["channel"], 1, 50);
}
}
else
{
$level = $db->querySingle("SELECT dimlevel FROM lamps WHERE id =" . reset($keys) . ";", false);
if ($level <= 50) // lamps at 50 % brightness, switch them to 100 %
{
foreach ($keys as $key => $id)
{
$lamp = $item->lamp[$id];
switchlamp($lamp["channel"], 1);
}
}
else // lamps at 100 % brightness, switch them off
{
foreach ($keys as $key => $id)
{
$lamp = $item->lamp[$id];
switchlamp($lamp["channel"], 0);
}
}
}
break;
case "dim_onoff":
break;
}
}
else
{
syslog(LOG_WARNING, "Switch " . $channel. " is disabled in the XML file " . $xmlfile);
}
}
else
{
syslog(LOG_WARNING, "Switch " . $channel . " was not found in the XML file " . $xmlfile);
}
if ($LOGGING)
{
closelog();
}
$db->close();
?>