-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebGUI.cpp
424 lines (372 loc) · 12.3 KB
/
WebGUI.cpp
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#include "WebGUI.h"
#include "ARiF.h"
static EthernetServer WebGUIClass::WebGUIServer(80);
static EthernetClient WebGUIClass::WebGUIClient;
/* state information */
static bool registered;
static byte ardID;
static byte raspyID;
static IPAddress raspyIP;
static byte cmd;
static byte mode;
static WebShade WebGUIClass::shades[SHADES];
static WebLight WebGUIClass::lights[LIGHTS];
static byte WebGUIClass::SDStatus;
static void WebGUIClass::begin() {
Serial.println(F("Starting WebGUI server"));
WebGUIServer.begin();
}
static byte WebGUIClass::update() {
cmd = CMD_WEBGUI_NOTHING;
EthernetClient client = WebGUIServer.available();
if (client) {
Serial.print(F("WebGUI: HTTP Request received from: "));
Serial.println(client.remoteIP());
char buff[WEBGUI_HTTP_BUFF];
int index = 0;
while (client.available()) {
char c = client.read();
//Serial.print(c);
buff[index] = c;
index++;
if (c == '/n' or c == '/r' or index >= WEBGUI_HTTP_BUFF) break;
}
if (strstr(buff, "ajax_inputs")) {
/* AJAX query */
if (deregPressed(buff)) {
registered = false;
cmd = CMD_WEBGUI_DEREGISTER;
}
client.println(F(HTTP_200_OK_XML));
sendXMResponse(client);
client.println();
client.stop();
} else if (strstr(buff, "settings")) {
if (strstr(buff, "types=shades")) {
if (mode != M_WEBGUI_SHADES) {
mode = M_WEBGUI_SHADES;
cmd = CMD_WEBGUI_SET_M_SHADES;
}
} else if (strstr(buff, "types=lights")) {
if (mode != M_WEBGUI_LIGHTS) {
mode = M_WEBGUI_LIGHTS;
cmd = CMD_WEBGUI_SET_M_LIGHTS;
}
} else {
/* nothing here */
}
client.println(F(HTTP_200_OK));
sendWebGUIHTML(client);
client.println();
client.stop();
} else if (strstr(buff, "main.css")) {
Serial.println(F("HTTP GET for main.css received"));
if (getSDStatus() == SD_WEBGUI_AVAIL) {
client.println(F(HTTP_200_OK_CSS));
sendWebGUICSS(client);
} else {
Serial.println(F("HTTP GET for main.css unavailable"));
client.println(F(HTTP_404_NF));
}
client.println();
client.stop();
} else if (strstr(buff, "main.js")) {
Serial.println(F("HTTP GET for main.js received"));
if (getSDStatus() == SD_WEBGUI_AVAIL) {
client.println(F(HTTP_200_OK_JS));
sendWebGUIJS(client);
} else {
Serial.println(F("HTTP GET for main.js unavailable"));
client.println(F(HTTP_404_NF));
}
client.println();
client.stop();
} else {
/* regular HTTP GET */
Serial.println(F("HTTP GET for main page received"));
client.println(F(HTTP_200_OK));
if (getSDStatus() == SD_WEBGUI_AVAIL) {
sendWebGUIHTML(client);
} else {
Serial.println(F("HTTP GET - sending stub HTML"));
sendWebGUIHTMLStub(client);
}
client.println();
client.stop();
}
delay(1); // give the web browser time to receive the data
client.stop(); // close the connection
}
return cmd;
}
static void WebGUIClass::setInfoRegistered(byte aID, byte rID, IPAddress rIP) {
registered = true;
ardID = aID;
raspyID = rID;
raspyIP = rIP;
}
static void WebGUIClass::setInfoDeregistered() {
registered = false;
}
static void WebGUIClass::sendXMResponse(EthernetClient cl) {
cl.print("<?xml version = \"1.0\" ?>");
cl.print("<inputs>");
/* registration */
cl.print("<registered>");
if (registered) {
cl.print("true");
}
else {
cl.print("false");
}
cl.println("</registered>");
/* uptime */
cl.print("<uptime>");
cl.print(millis());
cl.print("</uptime>");
if (registered) {
/* ardID */
cl.print("<ardID>");
cl.print(ardID);
cl.println("</ardID>");
/* raspyID */
cl.print("<raspyIP>");
cl.print(raspyIP);
cl.println("</raspyIP>");
/* raspyIP */
cl.print("<raspyID>");
cl.print(raspyID);
cl.println("</raspyID>");
}
cl.print("</inputs>");
}
static void WebGUIClass::sendWebGUIHTML(EthernetClient client) {
client.println(F("<html>"));
client.println(F("<head>"));
client.println(F("<title>Velen IoT System</title>"));
//client.println(F("<script type=\"text/javascript\" src=\"http://37.46.83.239/velen-main.js\"> </script>"));
//client.println(F("<link rel=\"stylesheet\" type=\"text/css\" href=\"http://37.46.83.239/velen-main.css\" media=\"all\" />"));
client.println(F("<script type=\"text/javascript\" src=\"velen-main.js\"> </script>"));
client.println(F("<link rel=\"stylesheet\" type=\"text/css\" href=\"velen-main.css\" media=\"all\" />"));
client.println(F("</head>"));
client.println(F("<body onload=\"GetArduinoIO()\">"));
client.println(F("<h1>Velen IoT System</h1>"));
/* System Status box */
client.println(F("<div class=\"IO_box\">"));
client.println(F("<h2>System Status</h2>"));
client.println(F("<div> Version: 1.1.0 </div>"));
client.println(F("<div id=\"uptime\"> Uptime : --</div>"));
client.println(F("</div>"));
/* Registration box */
client.println(F("<div class=\"IO_box\">"));
client.println(F("<h2>Registration Status</h2>"));
client.println(F("<br>"));
client.println(F("<div id=\"reg-status\">Registration Status: --</div>"));
client.println(F("<div id=\"ardid\">ArdID : --</div>"));
client.println(F("<div id=\"raspyid\">RaspyID : --</div>"));
client.println(F("<div id=\"raspyip\">Raspy IP : --</div>"));
client.println(F("<br>"));
client.println(F("<button type=\"button\" id=\"deregister\" onclick=\"GetButton1()\">Deregister</button><br /><br />"));
client.println(F("</div>"));
/* System Settings */
client.println(F("<div class=\"IO_box\">"));
client.println(F("<h2>System Settings</h2>"));
client.println(F("<div> Device Type </div>"));
client.println(F("<form action=\"/settings\" method=\"get\">"));
client.println(F("<label for=\"types\">Choose the device type </label>"));
client.println(F("<select name=\"types\" id=\"types\">"));
if (mode == M_WEBGUI_LIGHTS) {
client.println(F("<option value=\"lights\" selected=\"selected\">Lights</option>"));
client.println(F("<option value=\"shades\">Shades</option>"));
} else if (mode = M_WEBGUI_SHADES) {
client.println(F("<option value=\"lights\">Lights</option>"));
client.println(F("<option value=\"shades\" selected=\"selected\">Shades</option>"));
}
client.println(F("</select>"));
client.println(F("<input type=\"submit\" value=\"Save\">"));
client.println(F("</form>"));
client.println(F("</div>"));
/* Device Status and Control */
if (mode == M_WEBGUI_LIGHTS) {
for (int i = 0; i < LIGHTS; i++) {
client.println(F("<div class=\"IO_box\">"));
client.print(F("<h2>DevID: "));
client.print(lights[i].devID);
client.println(F(" Data</h2>"));
client.println(F("<div class=\"device\">"));
/* light status DIV */
client.print(F("<div id=\"light-status\">Status : "));
if (lights[i].status) {
client.print(F("ON"));
} else {
client.print(F("OFF"));
}
client.println(F("</div>"));
/* light type timer DIVs */
if (lights[i].type == S_WEBGUI_L_TIMER) {
client.print(F("<div>Timer : "));
client.print(lights[i].timer);
client.println(F("ms </div>"));
}
client.println(F("</div>"));
client.println(F("</div>"));
}
} else if (mode == M_WEBGUI_SHADES) {
for (int i = 0; i < SHADES; i++) {
client.println(F("<div class=\"IO_box\">"));
client.print(F("<h2>DevID: "));
client.print(shades[i].devID);
client.println(F(" Data</h2>"));
client.println(F("<div class=\"device\">"));
if (shades[i].sync == S_WEBGUI_UNSYNC) {
client.println(F("<div id=\"shade-status\">Status : unsync</div>"));
client.println(F("<div id=\"shade-pos\">Pos : --</div>"));
client.println(F("<div id=\"shade-tilt\">Tilt : --</div><br>"));
} else if (shades[i].sync == S_WEBGUI_SYNC ) {
if (shades[i].direction == S_WEBGUI_UP ) {
client.println(F("<div id=\"shade-status\">Status : UP</div>"));
} else if (shades[i].direction == S_WEBGUI_DOWN ) {
client.println(F("<div id=\"shade-status\">Status : DOWN</div>"));
} else if (shades[i].direction == S_WEBGUI_STOP ) {
client.println(F("<div id=\"shade-status\">Status : STOPPED</div>"));
}
client.print(F("<div id=\"shade-pos\">Pos : "));
client.print(shades[i].position);
client.println(F(" </div>"));
client.print(F("<div id=\"shade-tilt\">Tilt : "));
client.print(shades[i].tilt);
client.println(F(" </div><br>"));
}
client.println(F("</div>"));
client.println(F("</div>"));
}
}
client.println(F("</body>"));
client.println(F("</html>"));
}
static void WebGUIClass::sendWebGUIHTMLStub(EthernetClient client) {
client.println(F("<html>"));
client.println(F("<head>"));
client.println(F("<title>Velen IoT System</title>"));
client.println(F("</head>"));
client.println(F("<body"));
client.println(F("<h1>Velen IoT System</h1>"));
client.println(F("<h3>HTML files not available on SD Card</h3>"));
client.println(F("</body>"));
client.println(F("</html>"));
}
static void WebGUIClass::sendWebGUICSS(EthernetClient client) {
if (getSDStatus() == SD_WEBGUI_AVAIL) {
File dataFile = Platform.SDCardFileOpen("MAIN.CSS");
if (dataFile) {
while (dataFile.available()) {
//Serial.write(dataFile.read());
client.write(dataFile.read());
}
dataFile.close();
}
} else {
}
}
static void WebGUIClass::sendWebGUIJS(EthernetClient client) {
if (getSDStatus() == SD_WEBGUI_AVAIL) {
File dataFile = Platform.SDCardFileOpen("MAIN.JS");
if (dataFile) {
while (dataFile.available()) {
//Serial.write(dataFile.read());
client.write(dataFile.read());
}
dataFile.close();
}
} else {
}
}
static bool WebGUIClass::deregPressed(char *buff) {
if (strstr(buff, "dereg=1")) {
return true;
} else {
return false;
}
}
static void WebGUIClass::setSystemMode(byte m) {
mode = m;
}
static void WebGUIClass::shadeInit(byte index, byte devID) {
shades[index].devID = devID;
shades[index].sync = S_WEBGUI_UNSYNC;
}
static void WebGUIClass::lightInit(byte index, byte devID, byte type) {
lights[index].devID = devID;
lights[index].status = false;
lights[index].type = type;
if (type == S_WEBGUI_L_ONOFF) {
lights[index].timer = 0;
}
}
static void WebGUIClass::shadeSetDirection(byte devID, byte direction) {
for (int i = 0; i < SHADES; i++) {
if (shades[i].devID == devID) {
shades[i].direction = direction;
if (shades[i].sync == S_WEBGUI_UNSYNC) {
shades[i].sync = S_WEBGUI_SYNC;
}
}
}
}
static void WebGUIClass::shadeSetPosition(byte devID, byte position) {
for (int i = 0; i < SHADES; i++) {
if (shades[i].devID == devID) {
shades[i].position = position;
if (shades[i].sync == S_WEBGUI_UNSYNC) {
shades[i].sync = S_WEBGUI_SYNC;
}
}
}
}
static void WebGUIClass::shadeSetTilt(byte devID, byte tilt) {
for (int i = 0; i < SHADES; i++) {
if (shades[i].devID == devID) {
shades[i].tilt = tilt;
if (shades[i].sync == S_WEBGUI_UNSYNC) {
shades[i].sync = S_WEBGUI_SYNC;
}
}
}
}
static void WebGUIClass::lightSetON(byte devID) {
for (int i = 0; i < LIGHTS; i++) {
if (lights[i].devID == devID) {
lights[i].status = true;
}
}
}
static void WebGUIClass::lightSetOFF(byte devID) {
for (int i = 0; i < LIGHTS; i++) {
if (lights[i].devID == devID) {
lights[i].status = false;
}
}
}
static void WebGUIClass::lightSetType(byte devID, byte type) {
for (int i = 0; i < LIGHTS; i++) {
if (lights[i].devID == devID) {
lights[i].type = type;
}
}
}
static void WebGUIClass::lightSetTimer(byte devID, unsigned long timer) {
for (int i = 0; i < LIGHTS; i++) {
if (lights[i].devID == devID) {
lights[i].timer = timer;
}
}
}
static void WebGUIClass::setSDStatusAvailable() {
SDStatus = SD_WEBGUI_AVAIL;
}
static void WebGUIClass::setSDStatusUnavailable() {
SDStatus = SD_WEBGUI_UNAVAIL;
}
static byte WebGUIClass::getSDStatus() {
return SDStatus;
}