forked from WebThingsIO/webthing-arduino
-
Notifications
You must be signed in to change notification settings - Fork 2
/
EthernetWebThingAdapter.h
699 lines (606 loc) · 16.7 KB
/
EthernetWebThingAdapter.h
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
/**
* EthernetThingAdapter.h
*
* Exposes the Web Thing API based on provided ThingDevices.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
#if !defined(ESP32) && !defined(ESP8266)
#include <Arduino.h>
#if defined(STM32F7xx)
#include <LwIP.h>
#include <STM32Ethernet.h>
#else
#include <Ethernet.h>
#include <EthernetClient.h>
#include <EthernetServer.h>
#define CONFIG_MDNS 1
#endif
#ifdef CONFIG_MDNS
#include <EthernetUdp.h>
#include <ArduinoMDNS.h>
#endif
#include <ArduinoJson.h>
#define WITHOUT_WS 1
#include "Thing.h"
#ifndef LARGE_JSON_DOCUMENT_SIZE
#ifdef LARGE_JSON_BUFFERS
#define LARGE_JSON_DOCUMENT_SIZE 4096
#else
#define LARGE_JSON_DOCUMENT_SIZE 1024
#endif
#endif
#ifndef SMALL_JSON_DOCUMENT_SIZE
#ifdef LARGE_JSON_BUFFERS
#define SMALL_JSON_DOCUMENT_SIZE 1024
#else
#define SMALL_JSON_DOCUMENT_SIZE 256
#endif
#endif
static const bool DEBUG = false;
enum HTTPMethod {
HTTP_ANY,
HTTP_GET,
HTTP_PUT,
HTTP_POST,
HTTP_DELETE,
HTTP_OPTIONS
};
enum ReadState {
STATE_READ_METHOD,
STATE_READ_URI,
STATE_DISCARD_HTTP11,
STATE_DISCARD_HEADERS_PRE_HOST,
STATE_READ_HOST,
STATE_DISCARD_HEADERS_POST_HOST,
STATE_READ_CONTENT
};
class WebThingAdapter {
public:
WebThingAdapter(String _name, uint32_t _ip, uint16_t _port = 80,
bool _disableHostValidation = false)
: name(_name), port(_port), server(_port),
disableHostValidation(_disableHostValidation)
#ifdef CONFIG_MDNS
,
mdns(udp)
#endif
{
ip = "";
for (int i = 0; i < 4; i++) {
ip += _ip & 0xff;
if (i < 3) {
ip += '.';
}
_ip >>= 8;
}
}
void begin() {
name.toLowerCase();
#ifdef CONFIG_MDNS
String serviceName = name + "._webthing";
mdns.begin(Ethernet.localIP(), name.c_str());
// \x06 is the length of the record
mdns.addServiceRecord(serviceName.c_str(), port, MDNSServiceTCP,
"\x06path=/");
#endif
server.begin();
}
void update() {
#ifdef CONFIG_MDNS
mdns.run();
#endif
if (!client) {
EthernetClient client = server.available();
if (!client) {
return;
}
if (DEBUG) {
Serial.println("New client available");
}
this->client = client;
}
if (!client.connected()) {
if (DEBUG) {
Serial.println("Client disconnected");
}
resetParser();
client.stop();
return;
}
char c = client.read();
if (c == 255 || c == -1) {
if (state == STATE_READ_CONTENT) {
handleRequest();
resetParser();
}
retries += 1;
if (retries > 5000) {
if (DEBUG) {
Serial.println("Giving up on client");
}
resetParser();
client.stop();
}
return;
}
switch (state) {
case STATE_READ_METHOD:
if (c == ' ') {
if (methodRaw == "GET") {
method = HTTP_GET;
} else if (methodRaw == "POST") {
method = HTTP_POST;
} else if (methodRaw == "PUT") {
method = HTTP_PUT;
} else if (methodRaw == "DELETE") {
method = HTTP_DELETE;
} else if (methodRaw == "OPTIONS") {
method = HTTP_OPTIONS;
} else {
method = HTTP_ANY;
}
state = STATE_READ_URI;
} else {
methodRaw += c;
}
break;
case STATE_READ_URI:
if (c == ' ') {
state = STATE_DISCARD_HTTP11;
} else {
uri += c;
}
break;
case STATE_DISCARD_HTTP11:
if (c == '\r') {
state = STATE_DISCARD_HEADERS_PRE_HOST;
}
break;
case STATE_DISCARD_HEADERS_PRE_HOST:
if (c == '\r') {
break;
}
if (c == '\n') {
headerRaw = "";
break;
}
if (c == ':') {
if (headerRaw.equalsIgnoreCase("Host")) {
state = STATE_READ_HOST;
}
break;
}
headerRaw += c;
break;
case STATE_READ_HOST:
if (c == '\r') {
returnsAndNewlines = 1;
state = STATE_DISCARD_HEADERS_POST_HOST;
break;
}
if (c == ' ') {
break;
}
host += c;
break;
case STATE_DISCARD_HEADERS_POST_HOST:
if (c == '\r' || c == '\n') {
returnsAndNewlines += 1;
} else {
returnsAndNewlines = 0;
}
if (returnsAndNewlines == 4) {
state = STATE_READ_CONTENT;
}
break;
case STATE_READ_CONTENT:
content += c;
break;
}
}
void addDevice(ThingDevice *device) {
if (this->lastDevice == nullptr) {
this->firstDevice = device;
this->lastDevice = device;
} else {
this->lastDevice->next = device;
this->lastDevice = device;
}
}
private:
String name, ip;
uint16_t port;
bool disableHostValidation;
EthernetServer server;
EthernetClient client;
#ifdef CONFIG_MDNS
EthernetUDP udp;
MDNS mdns;
#endif
ReadState state = STATE_READ_METHOD;
String uri = "";
HTTPMethod method = HTTP_ANY;
String content = "";
String methodRaw = "";
String host = "";
String headerRaw = "";
int returnsAndNewlines = 0;
int retries = 0;
ThingDevice *firstDevice = nullptr, *lastDevice = nullptr;
bool verifyHost() {
if (disableHostValidation) {
return true;
}
int colonIndex = host.indexOf(':');
if (colonIndex >= 0) {
host.remove(colonIndex);
}
if (host.equalsIgnoreCase(name + ".local")) {
return true;
}
if (host == ip) {
return true;
}
if (host == "localhost") {
return true;
}
return false;
}
void handleRequest() {
if (DEBUG) {
Serial.print("handleRequest: ");
Serial.print("method: ");
Serial.println(method);
Serial.print("uri: ");
Serial.println(uri);
Serial.print("host: ");
Serial.println(host);
Serial.print("content: ");
Serial.println(content);
}
if (!verifyHost()) {
client.println("HTTP/1.1 403 Forbidden");
client.println("Connection: close");
client.println();
delay(1);
client.stop();
return;
}
if (uri == "/") {
handleThings();
return;
}
ThingDevice *device = this->firstDevice;
while (device != nullptr) {
String deviceBase = "/things/" + device->id;
if (uri.startsWith(deviceBase)) {
if (uri == deviceBase) {
if (method == HTTP_GET || method == HTTP_OPTIONS) {
handleThing(device);
} else {
handleError();
}
return;
} else if (uri == deviceBase + "/properties") {
if (method == HTTP_GET || method == HTTP_OPTIONS) {
handleThingPropertiesGet(device->firstProperty);
} else {
handleError();
}
return;
} else if (uri == deviceBase + "/actions") {
if (method == HTTP_GET || method == HTTP_OPTIONS) {
handleThingActionsGet(device);
} else if (method == HTTP_POST) {
handleThingActionsPost(device);
} else {
handleError();
}
return;
} else if (uri == deviceBase + "/events") {
if (method == HTTP_GET || method == HTTP_OPTIONS) {
handleThingEventsGet(device);
} else {
handleError();
}
return;
} else {
ThingProperty *property = device->firstProperty;
while (property != nullptr) {
String propertyBase = deviceBase + "/properties/" + property->id;
if (uri == propertyBase) {
if (method == HTTP_GET || method == HTTP_OPTIONS) {
handleThingPropertyGet(property);
} else if (method == HTTP_PUT) {
handleThingPropertyPut(device, property);
} else {
handleError();
}
return;
}
property = (ThingProperty *)property->next;
}
ThingAction *action = device->firstAction;
while (action != nullptr) {
String actionBase = deviceBase + "/actions/" + action->id;
if (uri == actionBase) {
if (method == HTTP_GET || method == HTTP_OPTIONS) {
handleThingActionGet(device, action);
} else if (method == HTTP_POST) {
handleThingActionPost(device, action);
} else {
handleError();
}
return;
} else if (uri.startsWith(actionBase + "/") &&
uri.length() > (actionBase.length() + 1)) {
if (method == HTTP_GET || method == HTTP_OPTIONS) {
handleThingActionIdGet(device, action);
} else if (method == HTTP_DELETE) {
handleThingActionIdDelete(device, action);
} else {
handleError();
}
return;
}
action = action->next;
}
ThingEvent *event = device->firstEvent;
while (event != nullptr) {
String eventBase = deviceBase + "/events/" + event->id;
if (uri == eventBase) {
if (method == HTTP_GET || method == HTTP_OPTIONS) {
handleThingEventGet(device, event);
} else {
handleError();
}
return;
}
event = (ThingEvent *)event->next;
}
}
}
device = device->next;
}
handleError();
}
void sendOk() { client.println("HTTP/1.1 200 OK"); }
void sendCreated() { client.println("HTTP/1.1 201 Created"); }
void sendNoContent() { client.println("HTTP/1.1 204 No Content"); }
void sendHeaders() {
client.println("Access-Control-Allow-Origin: *");
client.println(
"Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
client.println("Access-Control-Allow-Headers: "
"Origin, X-Requested-With, Content-Type, Accept");
client.println("Content-Type: application/json");
client.println("Connection: close");
client.println();
}
void handleThings() {
sendOk();
sendHeaders();
DynamicJsonDocument buf(LARGE_JSON_DOCUMENT_SIZE);
JsonArray things = buf.to<JsonArray>();
ThingDevice *device = this->firstDevice;
while (device != nullptr) {
JsonObject descr = things.createNestedObject();
device->serialize(descr, ip, port);
descr["href"] = "/things/" + device->id;
device = device->next;
}
serializeJson(things, client);
delay(1);
client.stop();
}
void handleThing(ThingDevice *device) {
sendOk();
sendHeaders();
DynamicJsonDocument buf(LARGE_JSON_DOCUMENT_SIZE);
JsonObject descr = buf.to<JsonObject>();
device->serialize(descr, ip, port);
serializeJson(descr, client);
delay(1);
client.stop();
}
void handleThingPropertyGet(ThingItem *item) {
sendOk();
sendHeaders();
DynamicJsonDocument doc(SMALL_JSON_DOCUMENT_SIZE);
JsonObject prop = doc.to<JsonObject>();
item->serializeValue(prop);
serializeJson(prop, client);
delay(1);
client.stop();
}
void handleThingActionGet(ThingDevice *device, ThingAction *action) {
sendOk();
sendHeaders();
DynamicJsonDocument doc(LARGE_JSON_DOCUMENT_SIZE);
JsonArray queue = doc.to<JsonArray>();
device->serializeActionQueue(queue, action->id);
serializeJson(queue, client);
delay(1);
client.stop();
}
void handleThingActionIdGet(ThingDevice *device, ThingAction *action) {
String base = "/things/" + device->id + "/actions/" + action->id;
String actionId = uri.substring(base.length() + 1);
const char *actionIdC = actionId.c_str();
const char *slash = strchr(actionIdC, '/');
if (slash) {
actionId = actionId.substring(0, slash - actionIdC);
}
ThingActionObject *obj = device->findActionObject(actionId.c_str());
if (obj == nullptr) {
handleError();
return;
}
sendOk();
sendHeaders();
DynamicJsonDocument doc(SMALL_JSON_DOCUMENT_SIZE);
JsonObject o = doc.to<JsonObject>();
obj->serialize(o, device->id);
serializeJson(o, client);
delay(1);
client.stop();
}
void handleThingActionIdDelete(ThingDevice *device, ThingAction *action) {
String base = "/things/" + device->id + "/actions/" + action->id;
String actionId = uri.substring(base.length() + 1);
const char *actionIdC = actionId.c_str();
const char *slash = strchr(actionIdC, '/');
if (slash) {
actionId = actionId.substring(0, slash - actionIdC);
}
device->removeAction(actionId);
sendNoContent();
sendHeaders();
}
void handleThingActionPost(ThingDevice *device, ThingAction *action) {
DynamicJsonDocument *newBuffer =
new DynamicJsonDocument(SMALL_JSON_DOCUMENT_SIZE);
auto error = deserializeJson(*newBuffer, content);
if (error) { // unable to parse json
handleError();
delete newBuffer;
return;
}
JsonObject newAction = newBuffer->as<JsonObject>();
if (!newAction.containsKey(action->id)) {
handleError();
delete newBuffer;
return;
}
ThingActionObject *obj = device->requestAction(newBuffer);
if (obj == nullptr) {
handleError();
delete newBuffer;
return;
}
sendCreated();
sendHeaders();
DynamicJsonDocument respBuffer(SMALL_JSON_DOCUMENT_SIZE);
JsonObject item = respBuffer.to<JsonObject>();
obj->serialize(item, device->id);
serializeJson(item, client);
delay(1);
client.stop();
obj->start();
}
void handleThingEventGet(ThingDevice *device, ThingItem *item) {
sendOk();
sendHeaders();
DynamicJsonDocument doc(SMALL_JSON_DOCUMENT_SIZE);
JsonArray queue = doc.to<JsonArray>();
device->serializeEventQueue(queue, item->id);
serializeJson(queue, client);
delay(1);
client.stop();
}
void handleThingPropertiesGet(ThingItem *rootItem) {
sendOk();
sendHeaders();
DynamicJsonDocument doc(LARGE_JSON_DOCUMENT_SIZE);
JsonObject prop = doc.to<JsonObject>();
ThingItem *item = rootItem;
while (item != nullptr) {
item->serializeValue(prop);
item = item->next;
}
serializeJson(prop, client);
delay(1);
client.stop();
}
void handleThingActionsGet(ThingDevice *device) {
sendOk();
sendHeaders();
DynamicJsonDocument doc(LARGE_JSON_DOCUMENT_SIZE);
JsonArray queue = doc.to<JsonArray>();
device->serializeActionQueue(queue);
serializeJson(queue, client);
delay(1);
client.stop();
}
void handleThingActionsPost(ThingDevice *device) {
DynamicJsonDocument *newBuffer =
new DynamicJsonDocument(SMALL_JSON_DOCUMENT_SIZE);
auto error = deserializeJson(*newBuffer, content);
if (error) { // unable to parse json
handleError();
delete newBuffer;
return;
}
JsonObject newAction = newBuffer->as<JsonObject>();
if (newAction.size() != 1) {
handleError();
delete newBuffer;
return;
}
ThingActionObject *obj = device->requestAction(newBuffer);
if (obj == nullptr) {
handleError();
delete newBuffer;
return;
}
sendCreated();
sendHeaders();
DynamicJsonDocument respBuffer(SMALL_JSON_DOCUMENT_SIZE);
JsonObject item = respBuffer.to<JsonObject>();
obj->serialize(item, device->id);
serializeJson(item, client);
delay(1);
client.stop();
obj->start();
}
void handleThingEventsGet(ThingDevice *device) {
sendOk();
sendHeaders();
DynamicJsonDocument doc(LARGE_JSON_DOCUMENT_SIZE);
JsonArray queue = doc.to<JsonArray>();
device->serializeEventQueue(queue);
serializeJson(queue, client);
delay(1);
client.stop();
}
void handleThingPropertyPut(ThingDevice *device, ThingProperty *property) {
DynamicJsonDocument newBuffer(SMALL_JSON_DOCUMENT_SIZE);
auto error = deserializeJson(newBuffer, content);
if (error) { // unable to parse json
handleError();
return;
}
JsonObject newProp = newBuffer.as<JsonObject>();
if (!newProp.containsKey(property->id)) {
handleError();
return;
}
device->setProperty(property->id.c_str(), newProp[property->id]);
sendOk();
sendHeaders();
serializeJson(newProp, client);
delay(1);
client.stop();
}
void handleError() {
client.println("HTTP/1.1 400 Bad Request");
sendHeaders();
delay(1);
client.stop();
}
void resetParser() {
state = STATE_READ_METHOD;
method = HTTP_ANY;
methodRaw = "";
headerRaw = "";
host = "";
uri = "";
content = "";
retries = 0;
}
};
#endif // neither ESP32 nor ESP8266 defined