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.

578 lines
16 KiB

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