Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

719 lines
21 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. /*
  2. WEBSERVER MODULE
  3. Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #include <ESPAsyncTCP.h>
  6. #include <ESPAsyncWebServer.h>
  7. #include <ESP8266mDNS.h>
  8. #include <FS.h>
  9. #include <Hash.h>
  10. #include <AsyncJson.h>
  11. #include <ArduinoJson.h>
  12. #include <Ticker.h>
  13. #include <vector>
  14. AsyncWebServer server(80);
  15. AsyncWebSocket ws("/ws");
  16. Ticker deferred;
  17. typedef struct {
  18. IPAddress ip;
  19. unsigned long timestamp = 0;
  20. } ws_ticket_t;
  21. ws_ticket_t _ticket[WS_BUFFER_SIZE];
  22. typedef struct {
  23. char * url;
  24. char * key;
  25. apiGetCallbackFunction getFn = NULL;
  26. apiPutCallbackFunction putFn = NULL;
  27. } web_api_t;
  28. std::vector<web_api_t> _apis;
  29. // -----------------------------------------------------------------------------
  30. // WEBSOCKETS
  31. // -----------------------------------------------------------------------------
  32. bool wsSend(const char * payload) {
  33. DEBUG_MSG("[WEBSOCKET] Broadcasting '%s'\n", payload);
  34. ws.textAll(payload);
  35. }
  36. bool wsSend(uint32_t client_id, const char * payload) {
  37. DEBUG_MSG("[WEBSOCKET] Sending '%s' to #%ld\n", payload, client_id);
  38. ws.text(client_id, payload);
  39. }
  40. void wsMQTTCallback(unsigned int type, const char * topic, const char * payload) {
  41. if (type == MQTT_CONNECT_EVENT) {
  42. wsSend("{\"mqttStatus\": true}");
  43. }
  44. if (type == MQTT_DISCONNECT_EVENT) {
  45. wsSend("{\"mqttStatus\": false}");
  46. }
  47. }
  48. void _wsParse(uint32_t client_id, uint8_t * payload, size_t length) {
  49. // Parse JSON input
  50. DynamicJsonBuffer jsonBuffer;
  51. JsonObject& root = jsonBuffer.parseObject((char *) payload);
  52. if (!root.success()) {
  53. DEBUG_MSG("[WEBSOCKET] Error parsing data\n");
  54. ws.text(client_id, "{\"message\": \"Error parsing data!\"}");
  55. return;
  56. }
  57. // Check actions
  58. if (root.containsKey("action")) {
  59. String action = root["action"];
  60. unsigned int relayID = 0;
  61. if (root.containsKey("relayID")) {
  62. String value = root["relayID"];
  63. relayID = value.toInt();
  64. }
  65. DEBUG_MSG("[WEBSOCKET] Requested action: %s\n", action.c_str());
  66. if (action.equals("reset")) ESP.reset();
  67. if (action.equals("reconnect")) {
  68. // Let the HTTP request return and disconnect after 100ms
  69. deferred.once_ms(100, wifiDisconnect);
  70. }
  71. if (action.equals("on")) relayStatus(relayID, true);
  72. if (action.equals("off")) relayStatus(relayID, false);
  73. };
  74. // Check config
  75. if (root.containsKey("config") && root["config"].is<JsonArray&>()) {
  76. JsonArray& config = root["config"];
  77. DEBUG_MSG("[WEBSOCKET] Parsing configuration data\n");
  78. bool save = false;
  79. bool changed = false;
  80. bool changedMQTT = false;
  81. bool apiEnabled = false;
  82. #if ENABLE_FAUXMO
  83. bool fauxmoEnabled = false;
  84. #endif
  85. unsigned int network = 0;
  86. unsigned int dczRelayIdx = 0;
  87. String adminPass;
  88. for (unsigned int i=0; i<config.size(); i++) {
  89. String key = config[i]["name"];
  90. String value = config[i]["value"];
  91. #if ENABLE_POW
  92. if (key == "powExpectedPower") {
  93. powSetExpectedActivePower(value.toInt());
  94. changed = true;
  95. }
  96. if (key == "powExpectedVoltage") {
  97. powSetExpectedVoltage(value.toInt());
  98. changed = true;
  99. }
  100. if (key == "powExpectedCurrent") {
  101. powSetExpectedCurrent(value.toInt());
  102. changed = true;
  103. }
  104. if (key == "powExpectedReset") {
  105. powReset();
  106. changed = true;
  107. }
  108. #endif
  109. if (key.startsWith("pow")) continue;
  110. #if ENABLE_DOMOTICZ
  111. if (key == "dczRelayIdx") {
  112. if (dczRelayIdx >= relayCount()) continue;
  113. key = key + String(dczRelayIdx);
  114. ++dczRelayIdx;
  115. }
  116. #else
  117. if (key.startsWith("dcz")) continue;
  118. #endif
  119. // Check password
  120. if (key == "adminPass1") {
  121. adminPass = value;
  122. continue;
  123. }
  124. if (key == "adminPass2") {
  125. if (!value.equals(adminPass)) {
  126. ws.text(client_id, "{\"message\": \"Passwords do not match!\"}");
  127. return;
  128. }
  129. if (value.length() == 0) continue;
  130. ws.text(client_id, "{\"action\": \"reload\"}");
  131. key = String("adminPass");
  132. }
  133. // Checkboxes
  134. if (key == "apiEnabled") {
  135. apiEnabled = true;
  136. continue;
  137. }
  138. #if ENABLE_FAUXMO
  139. if (key == "fauxmoEnabled") {
  140. fauxmoEnabled = true;
  141. continue;
  142. }
  143. #endif
  144. if (key == "ssid") {
  145. key = key + String(network);
  146. }
  147. if (key == "pass") {
  148. key = key + String(network);
  149. }
  150. if (key == "ip") {
  151. key = key + String(network);
  152. }
  153. if (key == "gw") {
  154. key = key + String(network);
  155. }
  156. if (key == "mask") {
  157. key = key + String(network);
  158. }
  159. if (key == "dns") {
  160. key = key + String(network);
  161. ++network;
  162. }
  163. if (value != getSetting(key)) {
  164. //DEBUG_MSG("[WEBSOCKET] Storing %s = %s\n", key.c_str(), value.c_str());
  165. setSetting(key, value);
  166. save = changed = true;
  167. if (key.startsWith("mqtt")) changedMQTT = true;
  168. }
  169. }
  170. // Checkboxes
  171. if (apiEnabled != (getSetting("apiEnabled").toInt() == 1)) {
  172. setSetting("apiEnabled", apiEnabled);
  173. save = changed = true;
  174. }
  175. #if ENABLE_FAUXMO
  176. if (fauxmoEnabled != (getSetting("fauxmoEnabled").toInt() == 1)) {
  177. setSetting("fauxmoEnabled", fauxmoEnabled);
  178. save = changed = true;
  179. }
  180. #endif
  181. // Clean wifi networks
  182. for (int i = 0; i < network; i++) {
  183. if (getSetting("pass" + String(i)).length() == 0) delSetting("pass" + String(i));
  184. if (getSetting("ip" + String(i)).length() == 0) delSetting("ip" + String(i));
  185. if (getSetting("gw" + String(i)).length() == 0) delSetting("gw" + String(i));
  186. if (getSetting("mask" + String(i)).length() == 0) delSetting("mask" + String(i));
  187. if (getSetting("dns" + String(i)).length() == 0) delSetting("dns" + String(i));
  188. }
  189. for (int i = network; i<WIFI_MAX_NETWORKS; i++) {
  190. if (getSetting("ssid" + String(i)).length() > 0) {
  191. save = changed = true;
  192. }
  193. delSetting("ssid" + String(i));
  194. delSetting("pass" + String(i));
  195. delSetting("ip" + String(i));
  196. delSetting("gw" + String(i));
  197. delSetting("mask" + String(i));
  198. delSetting("dns" + String(i));
  199. }
  200. // Save settings
  201. if (save) {
  202. saveSettings();
  203. wifiConfigure();
  204. otaConfigure();
  205. #if ENABLE_FAUXMO
  206. fauxmoConfigure();
  207. #endif
  208. buildTopics();
  209. #if ENABLE_RF
  210. rfBuildCodes();
  211. #endif
  212. #if ENABLE_EMON
  213. setCurrentRatio(getSetting("emonRatio").toFloat());
  214. #endif
  215. #if ITEAD_1CH_INCHING
  216. byte relayPulseMode = getSetting("relayPulseMode", String(RELAY_PULSE_MODE)).toInt();
  217. digitalWrite(LED_PULSE, relayPulseMode != RELAY_PULSE_NONE);
  218. #endif
  219. // Check if we should reconfigure MQTT connection
  220. if (changedMQTT) {
  221. mqttDisconnect();
  222. }
  223. }
  224. if (changed) {
  225. ws.text(client_id, "{\"message\": \"Changes saved\"}");
  226. } else {
  227. ws.text(client_id, "{\"message\": \"No changes detected\"}");
  228. }
  229. }
  230. }
  231. void _wsStart(uint32_t client_id) {
  232. char chipid[6];
  233. sprintf(chipid, "%06X", ESP.getChipId());
  234. DynamicJsonBuffer jsonBuffer;
  235. JsonObject& root = jsonBuffer.createObject();
  236. root["app"] = APP_NAME;
  237. root["version"] = APP_VERSION;
  238. root["buildDate"] = __DATE__;
  239. root["buildTime"] = __TIME__;
  240. root["manufacturer"] = String(MANUFACTURER);
  241. root["chipid"] = chipid;
  242. root["mac"] = WiFi.macAddress();
  243. root["device"] = String(DEVICE);
  244. root["hostname"] = getSetting("hostname", HOSTNAME);
  245. root["network"] = getNetwork();
  246. root["deviceip"] = getIP();
  247. root["mqttStatus"] = mqttConnected();
  248. root["mqttServer"] = getSetting("mqttServer", MQTT_SERVER);
  249. root["mqttPort"] = getSetting("mqttPort", MQTT_PORT);
  250. root["mqttUser"] = getSetting("mqttUser");
  251. root["mqttPassword"] = getSetting("mqttPassword");
  252. root["mqttTopic"] = getSetting("mqttTopic", MQTT_TOPIC);
  253. JsonArray& relay = root.createNestedArray("relayStatus");
  254. for (unsigned char relayID=0; relayID<relayCount(); relayID++) {
  255. relay.add(relayStatus(relayID));
  256. }
  257. root["relayMode"] = getSetting("relayMode", RELAY_MODE);
  258. root["relayPulseMode"] = getSetting("relayPulseMode", RELAY_PULSE_MODE);
  259. root["relayPulseTime"] = getSetting("relayPulseTime", RELAY_PULSE_TIME);
  260. if (relayCount() > 1) {
  261. root["multirelayVisible"] = 1;
  262. root["relaySync"] = getSetting("relaySync", RELAY_SYNC);
  263. }
  264. root["apiEnabled"] = getSetting("apiEnabled").toInt() == 1;
  265. root["apiKey"] = getSetting("apiKey");
  266. #if ENABLE_DOMOTICZ
  267. root["dczVisible"] = 1;
  268. root["dczTopicIn"] = getSetting("dczTopicIn", DOMOTICZ_IN_TOPIC);
  269. root["dczTopicOut"] = getSetting("dczTopicOut", DOMOTICZ_OUT_TOPIC);
  270. JsonArray& dczRelayIdx = root.createNestedArray("dczRelayIdx");
  271. for (byte i=0; i<relayCount(); i++) {
  272. dczRelayIdx.add(relayToIdx(i));
  273. }
  274. #if ENABLE_DHT
  275. root["dczTmpIdx"] = getSetting("dczTmpIdx").toInt();
  276. root["dczHumIdx"] = getSetting("dczHumIdx").toInt();
  277. #endif
  278. #if ENABLE_DS18B20
  279. root["dczTmpIdx"] = getSetting("dczTmpIdx").toInt();
  280. #endif
  281. #if ENABLE_EMON
  282. root["dczPowIdx"] = getSetting("dczPowIdx").toInt();
  283. root["dczEnergyIdx"] = getSetting("dczEnergyIdx").toInt();
  284. root["dczCurrentIdx"] = getSetting("dczCurrentIdx").toInt();
  285. #endif
  286. #if ENABLE_POW
  287. root["dczPowIdx"] = getSetting("dczPowIdx").toInt();
  288. root["dczEnergyIdx"] = getSetting("dczEnergyIdx").toInt();
  289. root["dczVoltIdx"] = getSetting("dczVoltIdx").toInt();
  290. root["dczCurrentIdx"] = getSetting("dczCurrentIdx").toInt();
  291. #endif
  292. #endif
  293. #if ENABLE_FAUXMO
  294. root["fauxmoVisible"] = 1;
  295. root["fauxmoEnabled"] = getSetting("fauxmoEnabled", FAUXMO_ENABLED).toInt() == 1;
  296. #endif
  297. #if ENABLE_DS18B20
  298. root["dsVisible"] = 1;
  299. root["dsTmp"] = getDSTemperature();
  300. #endif
  301. #if ENABLE_DHT
  302. root["dhtVisible"] = 1;
  303. root["dhtTmp"] = getDHTTemperature();
  304. root["dhtHum"] = getDHTHumidity();
  305. #endif
  306. #if ENABLE_RF
  307. root["rfVisible"] = 1;
  308. root["rfChannel"] = getSetting("rfChannel", RF_CHANNEL);
  309. root["rfDevice"] = getSetting("rfDevice", RF_DEVICE);
  310. #endif
  311. #if ENABLE_EMON
  312. root["emonVisible"] = 1;
  313. root["emonPower"] = getPower();
  314. root["emonMains"] = getSetting("emonMains", EMON_MAINS_VOLTAGE);
  315. root["emonRatio"] = getSetting("emonRatio", EMON_CURRENT_RATIO);
  316. #endif
  317. #if ENABLE_POW
  318. root["powVisible"] = 1;
  319. root["powActivePower"] = getActivePower();
  320. root["powApparentPower"] = getApparentPower();
  321. root["powReactivePower"] = getReactivePower();
  322. root["powVoltage"] = getVoltage();
  323. root["powCurrent"] = getCurrent();
  324. root["powPowerFactor"] = getPowerFactor();
  325. #endif
  326. root["maxNetworks"] = WIFI_MAX_NETWORKS;
  327. JsonArray& wifi = root.createNestedArray("wifi");
  328. for (byte i=0; i<WIFI_MAX_NETWORKS; i++) {
  329. if (getSetting("ssid" + String(i)).length() == 0) break;
  330. JsonObject& network = wifi.createNestedObject();
  331. network["ssid"] = getSetting("ssid" + String(i));
  332. network["pass"] = getSetting("pass" + String(i));
  333. network["ip"] = getSetting("ip" + String(i));
  334. network["gw"] = getSetting("gw" + String(i));
  335. network["mask"] = getSetting("mask" + String(i));
  336. network["dns"] = getSetting("dns" + String(i));
  337. }
  338. String output;
  339. root.printTo(output);
  340. ws.text(client_id, (char *) output.c_str());
  341. }
  342. bool _wsAuth(AsyncWebSocketClient * client) {
  343. IPAddress ip = client->remoteIP();
  344. unsigned long now = millis();
  345. unsigned short index = 0;
  346. for (index = 0; index < WS_BUFFER_SIZE; index++) {
  347. if ((_ticket[index].ip == ip) && (now - _ticket[index].timestamp < WS_TIMEOUT)) break;
  348. }
  349. if (index == WS_BUFFER_SIZE) {
  350. DEBUG_MSG("[WEBSOCKET] Validation check failed\n");
  351. ws.text(client->id(), "{\"message\": \"Session expired, please reload page...\"}");
  352. return false;
  353. }
  354. return true;
  355. }
  356. void _wsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len){
  357. static uint8_t * message;
  358. // Authorize
  359. #ifndef NOWSAUTH
  360. if (!_wsAuth(client)) return;
  361. #endif
  362. if (type == WS_EVT_CONNECT) {
  363. IPAddress ip = client->remoteIP();
  364. DEBUG_MSG("[WEBSOCKET] #%u connected, ip: %d.%d.%d.%d, url: %s\n", client->id(), ip[0], ip[1], ip[2], ip[3], server->url());
  365. _wsStart(client->id());
  366. } else if(type == WS_EVT_DISCONNECT) {
  367. DEBUG_MSG("[WEBSOCKET] #%u disconnected\n", client->id());
  368. } else if(type == WS_EVT_ERROR) {
  369. DEBUG_MSG("[WEBSOCKET] #%u error(%u): %s\n", client->id(), *((uint16_t*)arg), (char*)data);
  370. } else if(type == WS_EVT_PONG) {
  371. DEBUG_MSG("[WEBSOCKET] #%u pong(%u): %s\n", client->id(), len, len ? (char*) data : "");
  372. } else if(type == WS_EVT_DATA) {
  373. AwsFrameInfo * info = (AwsFrameInfo*)arg;
  374. // First packet
  375. if (info->index == 0) {
  376. //Serial.printf("Before malloc: %d\n", ESP.getFreeHeap());
  377. message = (uint8_t*) malloc(info->len);
  378. //Serial.printf("After malloc: %d\n", ESP.getFreeHeap());
  379. }
  380. // Store data
  381. memcpy(message + info->index, data, len);
  382. // Last packet
  383. if (info->index + len == info->len) {
  384. _wsParse(client->id(), message, info->len);
  385. //Serial.printf("Before free: %d\n", ESP.getFreeHeap());
  386. free(message);
  387. //Serial.printf("After free: %d\n", ESP.getFreeHeap());
  388. }
  389. }
  390. }
  391. // -----------------------------------------------------------------------------
  392. // WEBSERVER
  393. // -----------------------------------------------------------------------------
  394. void webLogRequest(AsyncWebServerRequest *request) {
  395. DEBUG_MSG("[WEBSERVER] Request: %s %s\n", request->methodToString(), request->url().c_str());
  396. }
  397. bool _authenticate(AsyncWebServerRequest *request) {
  398. String password = getSetting("adminPass", ADMIN_PASS);
  399. char httpPassword[password.length() + 1];
  400. password.toCharArray(httpPassword, password.length() + 1);
  401. return request->authenticate(HTTP_USERNAME, httpPassword);
  402. }
  403. bool _authAPI(AsyncWebServerRequest *request) {
  404. if (getSetting("apiEnabled").toInt() == 0) {
  405. DEBUG_MSG("[WEBSERVER] HTTP API is not enabled\n");
  406. request->send(403);
  407. return false;
  408. }
  409. if (!request->hasParam("apikey", (request->method() == HTTP_PUT))) {
  410. DEBUG_MSG("[WEBSERVER] Missing apikey parameter\n");
  411. request->send(403);
  412. return false;
  413. }
  414. AsyncWebParameter* p = request->getParam("apikey", (request->method() == HTTP_PUT));
  415. if (!p->value().equals(getSetting("apiKey"))) {
  416. DEBUG_MSG("[WEBSERVER] Wrong apikey parameter\n");
  417. request->send(403);
  418. return false;
  419. }
  420. return true;
  421. }
  422. bool _asJson(AsyncWebServerRequest *request) {
  423. bool asJson = false;
  424. if (request->hasHeader("Accept")) {
  425. AsyncWebHeader* h = request->getHeader("Accept");
  426. asJson = h->value().equals("application/json");
  427. }
  428. return asJson;
  429. }
  430. ArRequestHandlerFunction _bindAPI(unsigned int apiID) {
  431. return [apiID](AsyncWebServerRequest *request) {
  432. webLogRequest(request);
  433. if (!_authAPI(request)) return;
  434. bool asJson = _asJson(request);
  435. web_api_t api = _apis[apiID];
  436. if (request->method() == HTTP_PUT) {
  437. if (request->hasParam("value", true)) {
  438. AsyncWebParameter* p = request->getParam("value", true);
  439. (api.putFn)((p->value()).c_str());
  440. }
  441. }
  442. char value[10];
  443. (api.getFn)(value, 10);
  444. // jump over leading spaces
  445. char *p = value;
  446. while ((unsigned char) *p == ' ') ++p;
  447. if (asJson) {
  448. char buffer[64];
  449. sprintf_P(buffer, PSTR("{ \"%s\": %s }"), api.key, p);
  450. request->send(200, "application/json", buffer);
  451. } else {
  452. request->send(200, "text/plain", p);
  453. }
  454. };
  455. }
  456. void apiRegister(const char * url, const char * key, apiGetCallbackFunction getFn, apiPutCallbackFunction putFn) {
  457. // Store it
  458. web_api_t api;
  459. api.url = strdup(url);
  460. api.key = strdup(key);
  461. api.getFn = getFn;
  462. api.putFn = putFn;
  463. _apis.push_back(api);
  464. // Bind call
  465. unsigned int methods = HTTP_GET;
  466. if (putFn != NULL) methods += HTTP_PUT;
  467. server.on(url, methods, _bindAPI(_apis.size() - 1));
  468. }
  469. void _onAPIs(AsyncWebServerRequest *request) {
  470. webLogRequest(request);
  471. if (!_authAPI(request)) return;
  472. bool asJson = _asJson(request);
  473. String output;
  474. if (asJson) {
  475. DynamicJsonBuffer jsonBuffer;
  476. JsonObject& root = jsonBuffer.createObject();
  477. for (unsigned int i=0; i < _apis.size(); i++) {
  478. root[_apis[i].key] = _apis[i].url;
  479. }
  480. root.printTo(output);
  481. request->send(200, "application/json", output);
  482. } else {
  483. for (unsigned int i=0; i < _apis.size(); i++) {
  484. output += _apis[i].key + String(" -> ") + _apis[i].url + String("\n<br />");
  485. }
  486. request->send(200, "text/plain", output);
  487. }
  488. }
  489. void _onRPC(AsyncWebServerRequest *request) {
  490. webLogRequest(request);
  491. if (!_authAPI(request)) return;
  492. //bool asJson = _asJson(request);
  493. int response = 404;
  494. if (request->hasParam("action")) {
  495. AsyncWebParameter* p = request->getParam("action");
  496. String action = p->value();
  497. DEBUG_MSG("[RPC] Action: %s\n", action.c_str());
  498. if (action.equals("reset")) {
  499. response = 200;
  500. deferred.once_ms(100, []() { ESP.reset(); });
  501. }
  502. }
  503. request->send(response);
  504. }
  505. void _onHome(AsyncWebServerRequest *request) {
  506. webLogRequest(request);
  507. if (!_authenticate(request)) return request->requestAuthentication();
  508. #if FORCE_CHANGE_PASS == 1
  509. String password = getSetting("adminPass", ADMIN_PASS);
  510. if (password.equals(ADMIN_PASS)) {
  511. request->send(SPIFFS, "/password.html");
  512. } else {
  513. request->send(SPIFFS, "/index.html");
  514. }
  515. #else
  516. request->send(SPIFFS, "/index.html");
  517. #endif
  518. }
  519. void _onAuth(AsyncWebServerRequest *request) {
  520. webLogRequest(request);
  521. if (!_authenticate(request)) return request->requestAuthentication();
  522. IPAddress ip = request->client()->remoteIP();
  523. unsigned long now = millis();
  524. unsigned short index;
  525. for (index = 0; index < WS_BUFFER_SIZE; index++) {
  526. if (_ticket[index].ip == ip) break;
  527. if (_ticket[index].timestamp == 0) break;
  528. if (now - _ticket[index].timestamp > WS_TIMEOUT) break;
  529. }
  530. if (index == WS_BUFFER_SIZE) {
  531. request->send(423);
  532. } else {
  533. _ticket[index].ip = ip;
  534. _ticket[index].timestamp = now;
  535. request->send(204);
  536. }
  537. }
  538. AsyncWebServer * getServer() {
  539. return &server;
  540. }
  541. void webSetup() {
  542. // Setup websocket
  543. ws.onEvent(_wsEvent);
  544. mqttRegister(wsMQTTCallback);
  545. // Setup webserver
  546. server.addHandler(&ws);
  547. // Serve home (basic authentication protection)
  548. server.on("/", HTTP_GET, _onHome);
  549. server.on("/index.html", HTTP_GET, _onHome);
  550. server.on("/auth", HTTP_GET, _onAuth);
  551. server.on("/apis", HTTP_GET, _onAPIs);
  552. server.on("/rpc", HTTP_GET, _onRPC);
  553. // Serve static files
  554. char lastModified[50];
  555. sprintf(lastModified, "%s %s GMT", __DATE__, __TIME__);
  556. server.serveStatic("/", SPIFFS, "/").setLastModified(lastModified);
  557. // 404
  558. server.onNotFound([](AsyncWebServerRequest *request){
  559. request->send(404);
  560. });
  561. // Run server
  562. server.begin();
  563. }