-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhttpd.cpp
477 lines (335 loc) · 10.7 KB
/
httpd.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
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
/*
Here we Have the Web Server (httpd) and the update client over http
to update goto HTTP://IP/update select the file and send it in.
the html files are located in the data subfolder and need to be sent in with
ESP8266/ESP32 Sketch Data Upload.
*/
#include "config_TPM.h"
#ifdef ESP32
#include <WiFi.h>
#include <HTTPClient.h>
#include <ESPmDNS.h>
#include <WebServer.h>
WebServer httpd(80); // The Web Server
//#endif
#include <Update.h>
//#include <ESP32httpUpdate.h>
//#include <WiFiClient.h>
#endif
#ifdef USE_SD
//#include "FS.h"
#include "SD_MMC.h"
fs::SDMMCFS &httpFS = SD_MMC;
#else
#include<SPIFFS.h>
fs::SPIFFSFS &httpFS = SPIFFS;
#endif
// ********* Externals
#include "tools.h" // for bools reading/writing
#include "config_fs.h"
#include "httpd.h"
// *********** External Variables
#include "wifi-ota.h" // get the wifi structures
extern wifi_Struct wifi_cfg; // link to wifi variable wifi_cfg
// static serv from progmem. https://github.com/Gheotic/ESP-HTML-Compressor
String httpd_getContentType(String filename) {
if (httpd.hasArg("download")) {
return "application/octet-stream";
} else if (filename.endsWith(".htm")) {
return "text/html";
} else if (filename.endsWith(".html")) {
return "text/html";
} else if (filename.endsWith(".css")) {
return "text/css";
} else if (filename.endsWith(".js")) {
return "application/javascript";
} else if (filename.endsWith(".png")) {
return "image/png";
} else if (filename.endsWith(".gif")) {
return "image/gif";
} else if (filename.endsWith(".jpg")) {
return "image/jpeg";
} else if (filename.endsWith(".ico")) {
return "image/x-icon";
} else if (filename.endsWith(".xml")) {
return "text/xml";
} else if (filename.endsWith(".pdf")) {
return "application/x-pdf";
} else if (filename.endsWith(".zip")) {
return "application/x-zip";
} else if (filename.endsWith(".gz")) {
return "application/x-gzip";
}
return "text/plain";
}
bool httpd_handleFileRead(String path) {
debugMe("pre name");
if (path.endsWith("/")) path += "index.html";
debugMe("handleFileRead: " + path);
String contentType = httpd_getContentType(path);
String pathWithGz = path + ".gz";
if (httpFS.exists(pathWithGz) || httpFS.exists(path)) {
if (httpFS.exists(pathWithGz))
path += ".gz";
File file = httpFS.open(path, "r");
debugMe("prestreeam");
size_t sent = httpd.streamFile(file, contentType);
debugMe("post stream");
//String(file.size());
file.close();
debugMe(" " + path + " closed and sent :" + String(sent) );
return true;
}
return false;
}
File fsUploadFile;
void httpd_handleFileUpload() {
if (httpd.uri() != "/edit") {
return;
}
HTTPUpload& upload = httpd.upload();
if (upload.status == UPLOAD_FILE_START) {
String filename = upload.filename;
if (!filename.startsWith("/")) {
filename = "/" + filename;
}
debugMe("handleFileUpload Name: "); debugMe(filename);
fsUploadFile = httpFS.open(filename, "w");
filename = String();
} else if (upload.status == UPLOAD_FILE_WRITE) {
if (fsUploadFile) {
fsUploadFile.write(upload.buf, upload.currentSize);
}
} else if (upload.status == UPLOAD_FILE_END) {
if (fsUploadFile) {
fsUploadFile.close();
}
debugMe("handleFileUpload Size: "); debugMe(String(upload.totalSize));
}
}
void httpd_handleFileDelete() {
if (httpd.args() == 0) return httpd.send(500, "text/plain", "BAD ARGS");
String path = httpd.arg(0);
debugMe("handleFileDelete: " + path);
if (path == "/")
return httpd.send(500, "text/plain", "BAD PATH");
if (!httpFS.exists(path))
return httpd.send(404, "text/plain", "FileNotFound");
httpFS.remove(path);
httpd.send(200, "text/plain", "");
path = String();
}
void httpd_handleFileCreate() {
if (httpd.args() == 0)
return httpd.send(500, "text/plain", "BAD ARGS");
String path = httpd.arg(0);
debugMe("handleFileCreate: " + path);
if (path == "/")
return httpd.send(500, "text/plain", "BAD PATH");
if (httpFS.exists(path))
return httpd.send(500, "text/plain", "FILE EXISTS");
File file = httpFS.open(path, "w");
if (file)
file.close();
else
return httpd.send(500, "text/plain", "CREATE FAILED");
httpd.send(200, "text/plain", "");
path = String();
}
void httpd_handlecConfFileList() {
String path = "/conf";
debugMe("handleCONFFileList xxxx: " + path);
File dir = httpFS.open(path);
path = String();
String output = "[";
File fileX = dir.openNextFile();
while (fileX) {
if( String(fileX.name()).startsWith("/"))
{
if (output != "[") output += ',';
bool isDir = false;
output += "{\"type\":\"";
output += (isDir) ? "dir" : "file";
output += "\",\"name\":\"";
output += String(fileX.name()).substring(1);
output += "\"}";
debugMe(String(fileX.name()));
}
fileX.close();
fileX = dir.openNextFile();
}
dir.close();
output += "]";
httpd.send(200, "text/json", output);
}
void httpd_handleFileList() {
String path = "/";
if (httpd.hasArg("dir"))
path = httpd.arg("dir");
debugMe("handleFileList: " + path);
File dir = httpFS.open(path);
path = String();
String output = "[";
File fileX = dir.openNextFile();
debugMe(String(fileX.name()));
while (fileX) {
if (output != "[") output += ',';
bool isDir = false;
output += "{\"type\":\"";
output += (isDir) ? "dir" : "file";
output += "\",\"name\":\"";
output += String(fileX.name()).substring(1);
output += "\"}";
fileX.close();
fileX = dir.openNextFile();
debugMe(String(fileX.name()));
}
dir.close();
output += "]";
httpd.send(200, "text/json", output);
}
void httpd_handle_default_args()
{
if (httpd.args() > 0)
{
debugMe("set args present");
// set the brightness
if (httpd.hasArg("ssid") && httpd.hasArg("password") && httpd.hasArg("wifiMode")) {
String ssid_STR = httpd.arg("ssid");
String PWD_STR = httpd.arg("password");
String wifiMmode_STR = httpd.arg("wifiMode");
ssid_STR.toCharArray(wifi_cfg.ssid, sizeof(wifi_cfg.ssid));
PWD_STR.toCharArray(wifi_cfg.pwd, sizeof(wifi_cfg.pwd));
write_bool(WIFI_MODE_TPM, 1);
//wifiMode = wifiMmode_STR[0];
FS_wifi_write();
debugMe("Setting ssid to ", false);
debugMe(wifi_cfg.ssid);
debugMe("Setting password to ", false);
debugMe(wifi_cfg.pwd);
debugMe("Setting wifi_mode to ", false);
debugMe(get_bool(WIFI_MODE_TPM));
}
if (httpd.hasArg("APname") && httpd.hasArg("wifiMode")) {
String APname_STR = httpd.arg("APname");
String wifiMmode_STR = httpd.arg("wifiMode");
APname_STR.toCharArray(wifi_cfg.APname, 32);
write_bool(WIFI_MODE_TPM, 0 );
FS_wifi_write();
debugMe("Setting APname to ", false);
debugMe(wifi_cfg.APname);
debugMe("Setting wifi_mode to ", false);
debugMe(get_bool(WIFI_MODE_TPM));
}
if (httpd.hasArg("delete")) {
String path = httpd.arg("delete");
// path.toCharArray(ePassword,64);
httpFS.remove(path);
debugMe("requested delte : ", false);
debugMe(path);
}
}
}
void httpd_handleRequestSettings()
{
debugMe("pre http-on1");
// Setup Handlers
/*handling uploading firmware file */
httpd.on("/update", HTTP_GET, []() {
httpd.sendHeader("Connection", "close");
httpd.send(200, "text/html", "<form method='POST' action='/update' enctype='multipart/form-data'><input type='file' name='update'><input type='submit' value='Update'></form>");
});
httpd.on("/update", HTTP_POST, []() {
httpd.sendHeader("Connection", "close");
httpd.send(200, "text/plain", (Update.hasError()) ? "FAIL" : "OK");
//esp_wifi_wps_disable();
ESP.restart();
}, []() {
HTTPUpload& upload = httpd.upload();
if (upload.status == UPLOAD_FILE_START) {
Serial.printf("Update: %s\n", upload.filename.c_str());
if (!Update.begin(UPDATE_SIZE_UNKNOWN)) {//start with max available size
Update.printError(Serial);
}
}
else if (upload.status == UPLOAD_FILE_WRITE) {
// flashing firmware to ESP //
if (Update.write(upload.buf, upload.currentSize) != upload.currentSize) {
Update.printError(Serial);
}
}
else if (upload.status == UPLOAD_FILE_END) {
if (Update.end(true)) { //true to set the size to the current progress
Serial.printf("Update Success: %u\nRebooting...\n", upload.totalSize);
}
else {
Update.printError(Serial);
}
}
}); //*/
httpd.on("/index.html", []() {
#ifdef ARTNET_ENABLED
if (get_bool(ARTNET_ENABLE) == true)
handleFileRead("/artnet.html");
else
#endif
httpd_handleFileRead("/index.html");
httpd_handle_default_args();
});
debugMe("pre http-on2");
httpd.on("/settings.html", []() { httpd_handleFileRead("/settings.html"); httpd_handle_default_args(); });
httpd.on("/list", HTTP_GET, httpd_handlecConfFileList);
httpd.on("/listall", HTTP_GET, httpd_handleFileList);
//load editor
httpd.on("/edit", HTTP_GET, []() { if (!httpd_handleFileRead("/edit.htm")) httpd.send(404, "text/plain", "edit_FileNotFound"); });
httpd.on("/edit", HTTP_DELETE, httpd_handleFileDelete);
httpd.on("/edit", HTTP_POST, []() { httpd.send(200, "text/plain", ""); }, httpd_handleFileUpload);
httpd.onNotFound([]() {if (!httpd_handleFileRead(httpd.uri())) httpd.send(404, "text/plain", "FileNotFound im sorry check in the next 2'n dimension on the left"); });
httpd.on("/wifiMode", []() { httpd.send(200, "text/plain", String(get_bool(WIFI_MODE_TPM))); });
httpd.on("/ssid", HTTP_GET, []() { httpd.send(200, "text/plain", wifi_cfg.ssid); });
httpd.on("/password", HTTP_GET, []() { httpd.send(200, "text/plain", wifi_cfg.pwd); });
httpd.on("/APname", HTTP_GET, []() { httpd.send(200, "text/plain", wifi_cfg.APname); });
httpd.on("/reset", HTTP_GET, []() { httpd.send(200, "text/plain", "Rebooting"); ESP.restart(); });
//httpd.on("/js/ace.js", HTTP_GET, []() { httpd.send(200, "text/javascript", data_ace_js); });
}
void httpd_toggle_webserver()
{
if (get_bool(HTTP_ENABLED) == true)
{
httpd.stop();
write_bool(HTTP_ENABLED, false);
debugMe("httpd turned off");
}
else
{
httpd.begin();
write_bool(HTTP_ENABLED, true);
debugMe("httpd turned on");
#ifdef ESP8266
httpUpdater.setup(&httpd);
#endif
MDNS.begin(wifi_cfg.APname);
MDNS.addService("http", "tcp", 80);
}
}
void httpd_setup()
{
debugMe("HTTPd_setup");
httpd_handleRequestSettings();
if (get_bool(HTTP_ENABLED) == true)
{
httpd.begin(); // Switch on the HTTP Server
#ifdef ESP8266
httpUpdater.setup(&httpd);
debugMe("HTTP server started");
#endif
MDNS.begin(wifi_cfg.APname);
MDNS.addService("http", "tcp", 80);
debugMe("Starting HTTP");
}
}
void http_loop()
{
if (get_bool(HTTP_ENABLED) == true)
httpd.handleClient();
}