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.

367 lines
10 KiB

6 years ago
  1. /*
  2. WEBSOCKET MODULE
  3. Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #if WEB_SUPPORT
  6. #include <ESPAsyncTCP.h>
  7. #include <ESPAsyncWebServer.h>
  8. #include <ArduinoJson.h>
  9. #include <Ticker.h>
  10. #include <vector>
  11. #include "libs/WebSocketIncommingBuffer.h"
  12. AsyncWebSocket _ws("/ws");
  13. Ticker _web_defer;
  14. std::vector<ws_on_send_callback_f> _ws_on_send_callbacks;
  15. std::vector<ws_on_action_callback_f> _ws_on_action_callbacks;
  16. std::vector<ws_on_after_parse_callback_f> _ws_on_after_parse_callbacks;
  17. // -----------------------------------------------------------------------------
  18. // Private methods
  19. // -----------------------------------------------------------------------------
  20. #if MQTT_SUPPORT
  21. void _wsMQTTCallback(unsigned int type, const char * topic, const char * payload) {
  22. if (type == MQTT_CONNECT_EVENT) wsSend_P(PSTR("{\"mqttStatus\": true}"));
  23. if (type == MQTT_DISCONNECT_EVENT) wsSend_P(PSTR("{\"mqttStatus\": false}"));
  24. }
  25. #endif
  26. bool _wsStore(String key, String value) {
  27. // HTTP port
  28. if (key == "webPort") {
  29. if ((value.toInt() == 0) || (value.toInt() == 80)) {
  30. return delSetting(key);
  31. }
  32. }
  33. if (value != getSetting(key)) {
  34. return setSetting(key, value);
  35. }
  36. return false;
  37. }
  38. bool _wsStore(String key, JsonArray& value) {
  39. bool changed = false;
  40. unsigned char index = 0;
  41. for (auto element : value) {
  42. if (_wsStore(key + index, element.as<String>())) changed = true;
  43. index++;
  44. }
  45. // Delete further values
  46. for (unsigned char i=index; i<SETTINGS_MAX_LIST_COUNT; i++) {
  47. if (!delSetting(key, index)) break;
  48. changed = true;
  49. }
  50. return changed;
  51. }
  52. void _wsParse(AsyncWebSocketClient *client, uint8_t * payload, size_t length) {
  53. //DEBUG_MSG_P(PSTR("[WEBSOCKET] Parsing: %s\n"), length ? (char*) payload : "");
  54. // Get client ID
  55. uint32_t client_id = client->id();
  56. // Parse JSON input
  57. DynamicJsonBuffer jsonBuffer;
  58. JsonObject& root = jsonBuffer.parseObject((char *) payload);
  59. if (!root.success()) {
  60. DEBUG_MSG_P(PSTR("[WEBSOCKET] Error parsing data\n"));
  61. wsSend_P(client_id, PSTR("{\"message\": 3}"));
  62. return;
  63. }
  64. // Check actions -----------------------------------------------------------
  65. const char* action = root["action"];
  66. if (action) {
  67. DEBUG_MSG_P(PSTR("[WEBSOCKET] Requested action: %s\n"), action);
  68. if (strcmp(action, "reboot") == 0) deferredReset(100, CUSTOM_RESET_WEB);
  69. if (strcmp(action, "reconnect") == 0) _web_defer.once_ms(100, wifiDisconnect);
  70. JsonObject& data = root["data"];
  71. if (data.success()) {
  72. // Callbacks
  73. for (unsigned char i = 0; i < _ws_on_action_callbacks.size(); i++) {
  74. (_ws_on_action_callbacks[i])(action, data);
  75. }
  76. // Restore configuration via websockets
  77. if (strcmp(action, "restore") == 0) {
  78. if (settingsRestore(data)) {
  79. wsSend_P(client_id, PSTR("{\"message\": 5}"));
  80. } else {
  81. wsSend_P(client_id, PSTR("{\"message\": 4}"));
  82. }
  83. }
  84. }
  85. };
  86. // Check configuration -----------------------------------------------------
  87. JsonObject& config = root["config"];
  88. if (config.success()) {
  89. DEBUG_MSG_P(PSTR("[WEBSOCKET] Parsing configuration data\n"));
  90. String adminPass;
  91. bool save = false;
  92. #if MQTT_SUPPORT
  93. bool changedMQTT = false;
  94. #endif
  95. for (auto kv: config) {
  96. bool changed = false;
  97. String key = kv.key;
  98. JsonVariant& value = kv.value;
  99. // Check password
  100. if (key == "adminPass") {
  101. if (!value.is<JsonArray&>()) continue;
  102. JsonArray& values = value.as<JsonArray&>();
  103. if (values.size() != 2) continue;
  104. if (values[0].as<String>().equals(values[1].as<String>())) {
  105. String password = values[0].as<String>();
  106. if (password.length() > 0) {
  107. setSetting(key, password);
  108. save = true;
  109. wsSend_P(client_id, PSTR("{\"action\": \"reload\"}"));
  110. }
  111. } else {
  112. wsSend_P(client_id, PSTR("{\"message\": 7}"));
  113. }
  114. continue;
  115. }
  116. // Store values
  117. if (value.is<JsonArray&>()) {
  118. if (_wsStore(key, value.as<JsonArray&>())) changed = true;
  119. } else {
  120. if (_wsStore(key, value.as<String>())) changed = true;
  121. }
  122. // Update flags if value has changed
  123. if (changed) {
  124. save = true;
  125. #if MQTT_SUPPORT
  126. if (key.startsWith("mqtt")) changedMQTT = true;
  127. #endif
  128. }
  129. }
  130. // Save settings
  131. if (save) {
  132. // Callbacks
  133. for (unsigned char i = 0; i < _ws_on_after_parse_callbacks.size(); i++) {
  134. (_ws_on_after_parse_callbacks[i])();
  135. }
  136. // This should got to callback as well
  137. // but first change management has to be in place
  138. #if MQTT_SUPPORT
  139. if (changedMQTT) {
  140. mqttConfigure();
  141. mqttDisconnect();
  142. }
  143. #endif
  144. // Persist settings
  145. saveSettings();
  146. wsSend_P(client_id, PSTR("{\"message\": 8}"));
  147. } else {
  148. wsSend_P(client_id, PSTR("{\"message\": 9}"));
  149. }
  150. }
  151. }
  152. void _wsOnStart(JsonObject& root) {
  153. #if WEB_FORCE_PASS_CHANGE
  154. String adminPass = getSetting("adminPass", ADMIN_PASS);
  155. bool changePassword = adminPass.equals(ADMIN_PASS);
  156. #else
  157. bool changePassword = false;
  158. #endif
  159. if (changePassword) {
  160. root["webMode"] = WEB_MODE_PASSWORD;
  161. } else {
  162. char chipid[7];
  163. snprintf_P(chipid, sizeof(chipid), PSTR("%06X"), ESP.getChipId());
  164. root["webMode"] = WEB_MODE_NORMAL;
  165. root["app_name"] = APP_NAME;
  166. root["app_version"] = APP_VERSION;
  167. root["app_build"] = buildTime();
  168. root["manufacturer"] = MANUFACTURER;
  169. root["chipid"] = String(chipid);
  170. root["mac"] = WiFi.macAddress();
  171. root["device"] = DEVICE;
  172. root["hostname"] = getSetting("hostname");
  173. root["network"] = getNetwork();
  174. root["deviceip"] = getIP();
  175. root["uptime"] = getUptime();
  176. root["heap"] = getFreeHeap();
  177. root["sketch_size"] = ESP.getSketchSize();
  178. root["free_size"] = ESP.getFreeSketchSpace();
  179. root["btnDelay"] = getSetting("btnDelay", BUTTON_DBLCLICK_DELAY).toInt();
  180. root["webPort"] = getSetting("webPort", WEB_PORT).toInt();
  181. root["tmpUnits"] = getSetting("tmpUnits", SENSOR_TEMPERATURE_UNITS).toInt();
  182. root["tmpCorrection"] = getSetting("tmpCorrection", SENSOR_TEMPERATURE_CORRECTION).toFloat();
  183. }
  184. }
  185. void _wsStart(uint32_t client_id) {
  186. for (unsigned char i = 0; i < _ws_on_send_callbacks.size(); i++) {
  187. wsSend(client_id, _ws_on_send_callbacks[i]);
  188. }
  189. }
  190. void _wsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len){
  191. if (type == WS_EVT_CONNECT) {
  192. IPAddress ip = client->remoteIP();
  193. DEBUG_MSG_P(PSTR("[WEBSOCKET] #%u connected, ip: %d.%d.%d.%d, url: %s\n"), client->id(), ip[0], ip[1], ip[2], ip[3], server->url());
  194. _wsStart(client->id());
  195. client->_tempObject = new WebSocketIncommingBuffer(&_wsParse, true);
  196. wifiReconnectCheck();
  197. } else if(type == WS_EVT_DISCONNECT) {
  198. DEBUG_MSG_P(PSTR("[WEBSOCKET] #%u disconnected\n"), client->id());
  199. if (client->_tempObject) {
  200. delete (WebSocketIncommingBuffer *) client->_tempObject;
  201. }
  202. wifiReconnectCheck();
  203. } else if(type == WS_EVT_ERROR) {
  204. DEBUG_MSG_P(PSTR("[WEBSOCKET] #%u error(%u): %s\n"), client->id(), *((uint16_t*)arg), (char*)data);
  205. } else if(type == WS_EVT_PONG) {
  206. DEBUG_MSG_P(PSTR("[WEBSOCKET] #%u pong(%u): %s\n"), client->id(), len, len ? (char*) data : "");
  207. } else if(type == WS_EVT_DATA) {
  208. //DEBUG_MSG_P(PSTR("[WEBSOCKET] #%u data(%u): %s\n"), client->id(), len, len ? (char*) data : "");
  209. WebSocketIncommingBuffer *buffer = (WebSocketIncommingBuffer *)client->_tempObject;
  210. AwsFrameInfo * info = (AwsFrameInfo*)arg;
  211. buffer->data_event(client, info, data, len);
  212. }
  213. }
  214. // -----------------------------------------------------------------------------
  215. // Piblic API
  216. // -----------------------------------------------------------------------------
  217. bool wsConnected() {
  218. return (_ws.count() > 0);
  219. }
  220. void wsOnSendRegister(ws_on_send_callback_f callback) {
  221. _ws_on_send_callbacks.push_back(callback);
  222. }
  223. void wsOnActionRegister(ws_on_action_callback_f callback) {
  224. _ws_on_action_callbacks.push_back(callback);
  225. }
  226. void wsOnAfterParseRegister(ws_on_after_parse_callback_f callback) {
  227. _ws_on_after_parse_callbacks.push_back(callback);
  228. }
  229. void wsSend(ws_on_send_callback_f callback) {
  230. if (_ws.count() > 0) {
  231. DynamicJsonBuffer jsonBuffer;
  232. JsonObject& root = jsonBuffer.createObject();
  233. callback(root);
  234. String output;
  235. root.printTo(output);
  236. _ws.textAll((char *) output.c_str());
  237. }
  238. }
  239. void wsSend(const char * payload) {
  240. if (_ws.count() > 0) {
  241. _ws.textAll(payload);
  242. }
  243. }
  244. void wsSend_P(PGM_P payload) {
  245. if (_ws.count() > 0) {
  246. char buffer[strlen_P(payload)];
  247. strcpy_P(buffer, payload);
  248. _ws.textAll(buffer);
  249. }
  250. }
  251. void wsSend(uint32_t client_id, ws_on_send_callback_f callback) {
  252. DynamicJsonBuffer jsonBuffer;
  253. JsonObject& root = jsonBuffer.createObject();
  254. callback(root);
  255. String output;
  256. root.printTo(output);
  257. _ws.text(client_id, (char *) output.c_str());
  258. }
  259. void wsSend(uint32_t client_id, const char * payload) {
  260. _ws.text(client_id, payload);
  261. }
  262. void wsSend_P(uint32_t client_id, PGM_P payload) {
  263. char buffer[strlen_P(payload)];
  264. strcpy_P(buffer, payload);
  265. _ws.text(client_id, buffer);
  266. }
  267. void wsConfigure() {
  268. _ws.setAuthentication(WEB_USERNAME, (const char *) getSetting("adminPass", ADMIN_PASS).c_str());
  269. }
  270. void wsSetup() {
  271. _ws.onEvent(_wsEvent);
  272. wsConfigure();
  273. webServer()->addHandler(&_ws);
  274. #if MQTT_SUPPORT
  275. mqttRegister(_wsMQTTCallback);
  276. #endif
  277. wsOnSendRegister(_wsOnStart);
  278. wsOnAfterParseRegister(wsConfigure);
  279. }
  280. #endif // WEB_SUPPORT