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.

584 lines
17 KiB

8 years ago
8 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. /*
  2. MQTT MODULE
  3. Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #include <ESP8266WiFi.h>
  6. #include <ESP8266mDNS.h>
  7. #include <ArduinoJson.h>
  8. #include <vector>
  9. #include <Ticker.h>
  10. #if MQTT_USE_ASYNC // Using AsyncMqttClient
  11. #include <AsyncMqttClient.h>
  12. AsyncMqttClient _mqtt;
  13. #else // Using PubSubClient
  14. #include <PubSubClient.h>
  15. PubSubClient _mqtt;
  16. bool _mqtt_connected = false;
  17. WiFiClient _mqtt_client;
  18. #if ASYNC_TCP_SSL_ENABLED
  19. WiFiClientSecure _mqtt_client_secure;
  20. #endif // ASYNC_TCP_SSL_ENABLED
  21. #endif // MQTT_USE_ASYNC
  22. bool _mqtt_enabled = MQTT_ENABLED;
  23. bool _mqtt_use_json = false;
  24. unsigned long _mqtt_reconnect_delay = MQTT_RECONNECT_DELAY_MIN;
  25. String _mqtt_topic;
  26. String _mqtt_setter;
  27. String _mqtt_getter;
  28. bool _mqtt_forward;
  29. char *_mqtt_user = 0;
  30. char *_mqtt_pass = 0;
  31. char *_mqtt_will;
  32. #if MQTT_SKIP_RETAINED
  33. unsigned long _mqtt_connected_at = 0;
  34. #endif
  35. std::vector<mqtt_callback_f> _mqtt_callbacks;
  36. typedef struct {
  37. char * topic;
  38. char * message;
  39. } mqtt_message_t;
  40. std::vector<mqtt_message_t> _mqtt_queue;
  41. Ticker _mqtt_flush_ticker;
  42. // -----------------------------------------------------------------------------
  43. // Public API
  44. // -----------------------------------------------------------------------------
  45. bool mqttConnected() {
  46. return _mqtt.connected();
  47. }
  48. void mqttDisconnect() {
  49. if (_mqtt.connected()) {
  50. DEBUG_MSG_P("[MQTT] Disconnecting\n");
  51. _mqtt.disconnect();
  52. }
  53. }
  54. bool mqttForward() {
  55. return _mqtt_forward;
  56. }
  57. String mqttSubtopic(char * topic) {
  58. String response;
  59. String t = String(topic);
  60. if (t.startsWith(_mqtt_topic) && t.endsWith(_mqtt_setter)) {
  61. response = t.substring(_mqtt_topic.length(), t.length() - _mqtt_setter.length());
  62. }
  63. return response;
  64. }
  65. void mqttSendRaw(const char * topic, const char * message) {
  66. if (_mqtt.connected()) {
  67. #if MQTT_USE_ASYNC
  68. unsigned int packetId = _mqtt.publish(topic, MQTT_QOS, MQTT_RETAIN, message);
  69. DEBUG_MSG_P(PSTR("[MQTT] Sending %s => %s (PID %d)\n"), topic, message, packetId);
  70. #else
  71. _mqtt.publish(topic, message, MQTT_RETAIN);
  72. DEBUG_MSG_P(PSTR("[MQTT] Sending %s => %s\n"), topic, message);
  73. #endif
  74. }
  75. }
  76. String getTopic(const char * topic, bool set) {
  77. String output = _mqtt_topic + String(topic);
  78. if (set) output += _mqtt_setter;
  79. return output;
  80. }
  81. String getTopic(const char * topic, unsigned int index, bool set) {
  82. char buffer[strlen(topic)+5];
  83. snprintf_P(buffer, sizeof(buffer), PSTR("%s/%d"), topic, index);
  84. return getTopic(buffer, set);
  85. }
  86. void _mqttFlush() {
  87. if (_mqtt_queue.size() == 0) return;
  88. DynamicJsonBuffer jsonBuffer;
  89. JsonObject& root = jsonBuffer.createObject();
  90. for (unsigned char i=0; i<_mqtt_queue.size(); i++) {
  91. mqtt_message_t element = _mqtt_queue[i];
  92. root[element.topic] = element.message;
  93. }
  94. #if NTP_SUPPORT
  95. if (ntpConnected()) root[MQTT_TOPIC_TIME] = ntpDateTime();
  96. #endif
  97. root[MQTT_TOPIC_HOSTNAME] = getSetting("hostname");
  98. root[MQTT_TOPIC_IP] = getIP();
  99. String output;
  100. root.printTo(output);
  101. String path = _mqtt_topic + String(MQTT_TOPIC_JSON);
  102. mqttSendRaw(path.c_str(), output.c_str());
  103. for (unsigned char i = 0; i < _mqtt_queue.size(); i++) {
  104. mqtt_message_t element = _mqtt_queue[i];
  105. free(element.topic);
  106. free(element.message);
  107. }
  108. _mqtt_queue.clear();
  109. }
  110. void mqttSend(const char * topic, const char * message, bool force) {
  111. bool useJson = force ? false : _mqtt_use_json;
  112. if (useJson) {
  113. mqtt_message_t element;
  114. element.topic = strdup(topic);
  115. element.message = strdup(message);
  116. _mqtt_queue.push_back(element);
  117. _mqtt_flush_ticker.once_ms(MQTT_USE_JSON_DELAY, _mqttFlush);
  118. } else {
  119. String path = _mqtt_topic + String(topic) + _mqtt_getter;
  120. mqttSendRaw(path.c_str(), message);
  121. }
  122. }
  123. void mqttSend(const char * topic, const char * message) {
  124. mqttSend(topic, message, false);
  125. }
  126. void mqttSend(const char * topic, unsigned int index, const char * message, bool force) {
  127. char buffer[strlen(topic)+5];
  128. snprintf_P(buffer, sizeof(buffer), PSTR("%s/%d"), topic, index);
  129. mqttSend(buffer, message, force);
  130. }
  131. void mqttSend(const char * topic, unsigned int index, const char * message) {
  132. mqttSend(topic, index, message, false);
  133. }
  134. void mqttSubscribeRaw(const char * topic) {
  135. if (_mqtt.connected() && (strlen(topic) > 0)) {
  136. #if MQTT_USE_ASYNC
  137. unsigned int packetId = _mqtt.subscribe(topic, MQTT_QOS);
  138. DEBUG_MSG_P(PSTR("[MQTT] Subscribing to %s (PID %d)\n"), topic, packetId);
  139. #else
  140. _mqtt.subscribe(topic, MQTT_QOS);
  141. DEBUG_MSG_P(PSTR("[MQTT] Subscribing to %s\n"), topic);
  142. #endif
  143. }
  144. }
  145. void mqttSubscribe(const char * topic) {
  146. String path = _mqtt_topic + String(topic) + _mqtt_setter;
  147. mqttSubscribeRaw(path.c_str());
  148. }
  149. void mqttUnsubscribeRaw(const char * topic) {
  150. if (_mqtt.connected() && (strlen(topic) > 0)) {
  151. #if MQTT_USE_ASYNC
  152. unsigned int packetId = _mqtt.unsubscribe(topic);
  153. DEBUG_MSG_P(PSTR("[MQTT] Unsubscribing to %s (PID %d)\n"), topic, packetId);
  154. #else
  155. _mqtt.unsubscribe(topic);
  156. DEBUG_MSG_P(PSTR("[MQTT] Unsubscribing to %s\n"), topic);
  157. #endif
  158. }
  159. }
  160. void mqttRegister(mqtt_callback_f callback) {
  161. _mqtt_callbacks.push_back(callback);
  162. }
  163. // -----------------------------------------------------------------------------
  164. // Callbacks
  165. // -----------------------------------------------------------------------------
  166. void _mqttCallback(unsigned int type, const char * topic, const char * payload) {
  167. if (type == MQTT_CONNECT_EVENT) {
  168. mqttSubscribe(MQTT_TOPIC_ACTION);
  169. }
  170. if (type == MQTT_MESSAGE_EVENT) {
  171. // Match topic
  172. String t = mqttSubtopic((char *) topic);
  173. // Actions
  174. if (t.equals(MQTT_TOPIC_ACTION)) {
  175. if (strcmp(payload, MQTT_ACTION_RESET) == 0) {
  176. deferredReset(100, CUSTOM_RESET_MQTT);
  177. }
  178. }
  179. }
  180. }
  181. void _mqttOnConnect() {
  182. DEBUG_MSG_P(PSTR("[MQTT] Connected!\n"));
  183. _mqtt_reconnect_delay = MQTT_RECONNECT_DELAY_MIN;
  184. #if MQTT_SKIP_RETAINED
  185. _mqtt_connected_at = millis();
  186. #endif
  187. // Send first Heartbeat
  188. heartbeat();
  189. // Clean subscriptions
  190. mqttUnsubscribeRaw("#");
  191. // Send connect event to subscribers
  192. for (unsigned char i = 0; i < _mqtt_callbacks.size(); i++) {
  193. (_mqtt_callbacks[i])(MQTT_CONNECT_EVENT, NULL, NULL);
  194. }
  195. }
  196. void _mqttOnDisconnect() {
  197. DEBUG_MSG_P(PSTR("[MQTT] Disconnected!\n"));
  198. // Send disconnect event to subscribers
  199. for (unsigned char i = 0; i < _mqtt_callbacks.size(); i++) {
  200. (_mqtt_callbacks[i])(MQTT_DISCONNECT_EVENT, NULL, NULL);
  201. }
  202. }
  203. void _mqttOnMessage(char* topic, char* payload, unsigned int len) {
  204. if (len == 0) return;
  205. char message[len + 1];
  206. strlcpy(message, (char *) payload, len + 1);
  207. #if MQTT_SKIP_RETAINED
  208. if (millis() - _mqtt_connected_at < MQTT_SKIP_TIME) {
  209. DEBUG_MSG_P(PSTR("[MQTT] Received %s => %s - SKIPPED\n"), topic, message);
  210. return;
  211. }
  212. #endif
  213. DEBUG_MSG_P(PSTR("[MQTT] Received %s => %s\n"), topic, message);
  214. // Send message event to subscribers
  215. for (unsigned char i = 0; i < _mqtt_callbacks.size(); i++) {
  216. (_mqtt_callbacks[i])(MQTT_MESSAGE_EVENT, topic, message);
  217. }
  218. }
  219. #if MQTT_USE_ASYNC
  220. bool mqttFormatFP(const char * fingerprint, unsigned char * bytearray) {
  221. // check length (20 2-character digits ':' or ' ' separated => 20*2+19 = 59)
  222. if (strlen(fingerprint) != 59) return false;
  223. DEBUG_MSG_P(PSTR("[MQTT] Fingerprint %s\n"), fingerprint);
  224. // walk the fingerprint
  225. for (unsigned int i=0; i<20; i++) {
  226. bytearray[i] = strtol(fingerprint + 3*i, NULL, 16);
  227. }
  228. return true;
  229. }
  230. #else
  231. bool mqttFormatFP(const char * fingerprint, char * destination) {
  232. // check length (20 2-character digits ':' or ' ' separated => 20*2+19 = 59)
  233. if (strlen(fingerprint) != 59) return false;
  234. DEBUG_MSG_P(PSTR("[MQTT] Fingerprint %s\n"), fingerprint);
  235. // copy it
  236. strncpy(destination, fingerprint, 59);
  237. // walk the fingerprint replacing ':' for ' '
  238. for (unsigned char i = 0; i<59; i++) {
  239. if (destination[i] == ':') destination[i] = ' ';
  240. }
  241. return true;
  242. }
  243. #endif
  244. void mqttEnabled(bool status) {
  245. _mqtt_enabled = status;
  246. setSetting("mqttEnabled", status ? 1 : 0);
  247. }
  248. bool mqttEnabled() {
  249. return _mqtt_enabled;
  250. }
  251. void mqttConnect() {
  252. // Do not connect if disabled
  253. if (!_mqtt_enabled) return;
  254. // Do not connect if already connected
  255. if (_mqtt.connected()) return;
  256. // Check reconnect interval
  257. static unsigned long last = 0;
  258. if (millis() - last < _mqtt_reconnect_delay) return;
  259. last = millis();
  260. // Increase the reconnect delay
  261. _mqtt_reconnect_delay += MQTT_RECONNECT_DELAY_STEP;
  262. if (_mqtt_reconnect_delay > MQTT_RECONNECT_DELAY_MAX) {
  263. _mqtt_reconnect_delay = MQTT_RECONNECT_DELAY_MAX;
  264. }
  265. char * host = strdup(getSetting("mqttServer", MQTT_SERVER).c_str());
  266. if (strlen(host) == 0) return;
  267. unsigned int port = getSetting("mqttPort", MQTT_PORT).toInt();
  268. if (_mqtt_user) free(_mqtt_user);
  269. if (_mqtt_pass) free(_mqtt_pass);
  270. if (_mqtt_will) free(_mqtt_will);
  271. _mqtt_user = strdup(getSetting("mqttUser", MQTT_USER).c_str());
  272. _mqtt_pass = strdup(getSetting("mqttPassword", MQTT_PASS).c_str());
  273. _mqtt_will = strdup((_mqtt_topic + MQTT_TOPIC_STATUS).c_str());
  274. DEBUG_MSG_P(PSTR("[MQTT] Connecting to broker at %s:%d\n"), host, port);
  275. #if MQTT_USE_ASYNC
  276. _mqtt.setServer(host, port);
  277. _mqtt.setKeepAlive(MQTT_KEEPALIVE).setCleanSession(false);
  278. _mqtt.setWill(_mqtt_will, MQTT_QOS, MQTT_RETAIN, "0");
  279. if ((strlen(_mqtt_user) > 0) && (strlen(_mqtt_pass) > 0)) {
  280. DEBUG_MSG_P(PSTR("[MQTT] Connecting as user %s\n"), _mqtt_user);
  281. _mqtt.setCredentials(_mqtt_user, _mqtt_pass);
  282. }
  283. #if ASYNC_TCP_SSL_ENABLED
  284. bool secure = getSetting("mqttUseSSL", MQTT_SSL_ENABLED).toInt() == 1;
  285. _mqtt.setSecure(secure);
  286. if (secure) {
  287. DEBUG_MSG_P(PSTR("[MQTT] Using SSL\n"));
  288. unsigned char fp[20] = {0};
  289. if (mqttFormatFP(getSetting("mqttFP", MQTT_SSL_FINGERPRINT).c_str(), fp)) {
  290. _mqtt.addServerFingerprint(fp);
  291. } else {
  292. DEBUG_MSG_P(PSTR("[MQTT] Wrong fingerprint\n"));
  293. }
  294. }
  295. #endif // ASYNC_TCP_SSL_ENABLED
  296. DEBUG_MSG_P(PSTR("[MQTT] Will topic: %s\n"), _mqtt_will);
  297. DEBUG_MSG_P(PSTR("[MQTT] QoS: %d\n"), MQTT_QOS);
  298. DEBUG_MSG_P(PSTR("[MQTT] Retain flag: %d\n"), MQTT_RETAIN);
  299. _mqtt.connect();
  300. #else // not MQTT_USE_ASYNC
  301. bool response = true;
  302. #if ASYNC_TCP_SSL_ENABLED
  303. bool secure = getSetting("mqttUseSSL", MQTT_SSL_ENABLED).toInt() == 1;
  304. if (secure) {
  305. DEBUG_MSG_P(PSTR("[MQTT] Using SSL\n"));
  306. if (_mqtt_client_secure.connect(host, port)) {
  307. char fp[60] = {0};
  308. if (mqttFormatFP(getSetting("mqttFP", MQTT_SSL_FINGERPRINT).c_str(), fp)) {
  309. if (_mqtt_client_secure.verify(fp, host)) {
  310. _mqtt.setClient(_mqtt_client_secure);
  311. } else {
  312. DEBUG_MSG_P(PSTR("[MQTT] Invalid fingerprint\n"));
  313. response = false;
  314. }
  315. _mqtt_client_secure.stop();
  316. yield();
  317. } else {
  318. DEBUG_MSG_P(PSTR("[MQTT] Wrong fingerprint\n"));
  319. response = false;
  320. }
  321. } else {
  322. DEBUG_MSG_P(PSTR("[MQTT] Client connection failed\n"));
  323. response = false;
  324. }
  325. } else {
  326. _mqtt.setClient(_mqtt_client);
  327. }
  328. #else // not ASYNC_TCP_SSL_ENABLED
  329. _mqtt.setClient(_mqtt_client);
  330. #endif // ASYNC_TCP_SSL_ENABLED
  331. if (response) {
  332. _mqtt.setServer(host, port);
  333. if ((strlen(_mqtt_user) > 0) && (strlen(_mqtt_pass) > 0)) {
  334. DEBUG_MSG_P(PSTR("[MQTT] Connecting as user %s\n"), _mqtt_user);
  335. response = _mqtt.connect(getIdentifier().c_str(), _mqtt_user, _mqtt_pass, _mqtt_will, MQTT_QOS, MQTT_RETAIN, "0");
  336. } else {
  337. response = _mqtt.connect(getIdentifier().c_str(), _mqtt_will, MQTT_QOS, MQTT_RETAIN, "0");
  338. }
  339. DEBUG_MSG_P(PSTR("[MQTT] Will topic: %s\n"), _mqtt_will);
  340. DEBUG_MSG_P(PSTR("[MQTT] QoS: %d\n"), MQTT_QOS);
  341. DEBUG_MSG_P(PSTR("[MQTT] Retain flag: %d\n"), MQTT_RETAIN);
  342. }
  343. if (response) {
  344. _mqttOnConnect();
  345. } else {
  346. DEBUG_MSG_P(PSTR("[MQTT] Connection failed\n"));
  347. }
  348. #endif // MQTT_USE_ASYNC
  349. free(host);
  350. }
  351. void mqttConfigure() {
  352. // Replace identifier
  353. _mqtt_topic = getSetting("mqttTopic", MQTT_TOPIC);
  354. _mqtt_topic.replace("{identifier}", getSetting("hostname"));
  355. if (!_mqtt_topic.endsWith("/")) _mqtt_topic = _mqtt_topic + "/";
  356. // Getters and setters
  357. _mqtt_setter = getSetting("mqttSetter", MQTT_USE_SETTER);
  358. _mqtt_getter = getSetting("mqttGetter", MQTT_USE_GETTER);
  359. _mqtt_forward = !_mqtt_getter.equals(_mqtt_setter);
  360. // Enable
  361. if (getSetting("mqttServer", MQTT_SERVER).length() == 0) {
  362. mqttEnabled(false);
  363. } else {
  364. _mqtt_enabled = getSetting("mqttEnabled", MQTT_ENABLED).toInt() == 1;
  365. }
  366. _mqtt_use_json = (getSetting("mqttUseJson", MQTT_USE_JSON).toInt() == 1);
  367. _mqtt_reconnect_delay = MQTT_RECONNECT_DELAY_MIN;
  368. }
  369. void mqttSetBroker(IPAddress ip, unsigned int port) {
  370. setSetting("mqttServer", ip.toString());
  371. setSetting("mqttPort", port);
  372. mqttEnabled(MQTT_AUTOCONNECT);
  373. }
  374. void mqttSetBrokerIfNone(IPAddress ip, unsigned int port) {
  375. if (!hasSetting("mqttServer")) mqttSetBroker(ip, port);
  376. }
  377. void mqttSetup() {
  378. DEBUG_MSG_P(PSTR("[MQTT] MQTT_USE_ASYNC = %d\n"), MQTT_USE_ASYNC);
  379. DEBUG_MSG_P(PSTR("[MQTT] MQTT_AUTOCONNECT = %d\n"), MQTT_AUTOCONNECT);
  380. #if MQTT_USE_ASYNC
  381. _mqtt.onConnect([](bool sessionPresent) {
  382. _mqttOnConnect();
  383. });
  384. _mqtt.onDisconnect([](AsyncMqttClientDisconnectReason reason) {
  385. if (reason == AsyncMqttClientDisconnectReason::TCP_DISCONNECTED) {
  386. DEBUG_MSG_P(PSTR("[MQTT] TCP Disconnected\n"));
  387. }
  388. if (reason == AsyncMqttClientDisconnectReason::MQTT_IDENTIFIER_REJECTED) {
  389. DEBUG_MSG_P(PSTR("[MQTT] Identifier Rejected\n"));
  390. }
  391. if (reason == AsyncMqttClientDisconnectReason::MQTT_SERVER_UNAVAILABLE) {
  392. DEBUG_MSG_P(PSTR("[MQTT] Server unavailable\n"));
  393. }
  394. if (reason == AsyncMqttClientDisconnectReason::MQTT_MALFORMED_CREDENTIALS) {
  395. DEBUG_MSG_P(PSTR("[MQTT] Malformed credentials\n"));
  396. }
  397. if (reason == AsyncMqttClientDisconnectReason::MQTT_NOT_AUTHORIZED) {
  398. DEBUG_MSG_P(PSTR("[MQTT] Not authorized\n"));
  399. }
  400. #if ASYNC_TCP_SSL_ENABLED
  401. if (reason == AsyncMqttClientDisconnectReason::TLS_BAD_FINGERPRINT) {
  402. DEBUG_MSG_P(PSTR("[MQTT] Bad fingerprint\n"));
  403. }
  404. #endif
  405. _mqttOnDisconnect();
  406. });
  407. _mqtt.onMessage([](char* topic, char* payload, AsyncMqttClientMessageProperties properties, size_t len, size_t index, size_t total) {
  408. _mqttOnMessage(topic, payload, len);
  409. });
  410. _mqtt.onSubscribe([](uint16_t packetId, uint8_t qos) {
  411. DEBUG_MSG_P(PSTR("[MQTT] Subscribe ACK for PID %d\n"), packetId);
  412. });
  413. _mqtt.onPublish([](uint16_t packetId) {
  414. DEBUG_MSG_P(PSTR("[MQTT] Publish ACK for PID %d\n"), packetId);
  415. });
  416. #else // not MQTT_USE_ASYNC
  417. DEBUG_MSG_P(PSTR("[MQTT] Using SYNC MQTT library\n"));
  418. _mqtt.setCallback([](char* topic, byte* payload, unsigned int length) {
  419. _mqttOnMessage(topic, (char *) payload, length);
  420. });
  421. #endif // MQTT_USE_ASYNC
  422. mqttConfigure();
  423. mqttRegister(_mqttCallback);
  424. }
  425. void mqttLoop() {
  426. if (WiFi.status() != WL_CONNECTED) return;
  427. #if MQTT_USE_ASYNC
  428. mqttConnect();
  429. #else // not MQTT_USE_ASYNC
  430. if (_mqtt.connected()) {
  431. _mqtt.loop();
  432. } else {
  433. if (_mqtt_connected) {
  434. _mqttOnDisconnect();
  435. _mqtt_connected = false;
  436. }
  437. mqttConnect();
  438. }
  439. #endif
  440. }