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. char * host = strdup(getSetting("mqttServer", MQTT_SERVER).c_str());
  253. if (strlen(host) == 0) return;
  254. unsigned int port = getSetting("mqttPort", MQTT_PORT).toInt();
  255. if (_mqtt_user) free(_mqtt_user);
  256. if (_mqtt_pass) free(_mqtt_pass);
  257. if (_mqtt_will) free(_mqtt_will);
  258. _mqtt_user = strdup(getSetting("mqttUser", MQTT_USER).c_str());
  259. _mqtt_pass = strdup(getSetting("mqttPassword", MQTT_PASS).c_str());
  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. #if MQTT_USE_ASYNC
  263. _mqtt.setServer(host, port);
  264. _mqtt.setKeepAlive(MQTT_KEEPALIVE).setCleanSession(false);
  265. _mqtt.setWill(_mqtt_will, MQTT_QOS, MQTT_RETAIN, "0");
  266. if ((strlen(_mqtt_user) > 0) && (strlen(_mqtt_pass) > 0)) {
  267. DEBUG_MSG_P(PSTR("[MQTT] Connecting as user %s\n"), _mqtt_user);
  268. _mqtt.setCredentials(_mqtt_user, _mqtt_pass);
  269. }
  270. #if ASYNC_TCP_SSL_ENABLED
  271. bool secure = getSetting("mqttUseSSL", MQTT_SSL_ENABLED).toInt() == 1;
  272. _mqtt.setSecure(secure);
  273. if (secure) {
  274. DEBUG_MSG_P(PSTR("[MQTT] Using SSL\n"));
  275. unsigned char fp[20] = {0};
  276. if (mqttFormatFP(getSetting("mqttFP", MQTT_SSL_FINGERPRINT).c_str(), fp)) {
  277. _mqtt.addServerFingerprint(fp);
  278. } else {
  279. DEBUG_MSG_P(PSTR("[MQTT] Wrong fingerprint\n"));
  280. }
  281. }
  282. #endif // ASYNC_TCP_SSL_ENABLED
  283. DEBUG_MSG_P(PSTR("[MQTT] Will topic: %s\n"), _mqtt_will);
  284. DEBUG_MSG_P(PSTR("[MQTT] QoS: %d\n"), MQTT_QOS);
  285. DEBUG_MSG_P(PSTR("[MQTT] Retain flag: %d\n"), MQTT_RETAIN);
  286. _mqtt.connect();
  287. #else // not MQTT_USE_ASYNC
  288. bool response = true;
  289. #if ASYNC_TCP_SSL_ENABLED
  290. bool secure = getSetting("mqttUseSSL", MQTT_SSL_ENABLED).toInt() == 1;
  291. if (secure) {
  292. DEBUG_MSG_P(PSTR("[MQTT] Using SSL\n"));
  293. if (_mqtt_client_secure.connect(host, port)) {
  294. char fp[60] = {0};
  295. if (mqttFormatFP(getSetting("mqttFP", MQTT_SSL_FINGERPRINT).c_str(), fp)) {
  296. if (_mqtt_client_secure.verify(fp, host)) {
  297. _mqtt.setClient(_mqtt_client_secure);
  298. } else {
  299. DEBUG_MSG_P(PSTR("[MQTT] Invalid fingerprint\n"));
  300. response = false;
  301. }
  302. _mqtt_client_secure.stop();
  303. yield();
  304. } else {
  305. DEBUG_MSG_P(PSTR("[MQTT] Wrong fingerprint\n"));
  306. response = false;
  307. }
  308. } else {
  309. DEBUG_MSG_P(PSTR("[MQTT] Client connection failed\n"));
  310. response = false;
  311. }
  312. } else {
  313. _mqtt.setClient(_mqtt_client);
  314. }
  315. #else // not ASYNC_TCP_SSL_ENABLED
  316. _mqtt.setClient(_mqtt_client);
  317. #endif // ASYNC_TCP_SSL_ENABLED
  318. if (response) {
  319. _mqtt.setServer(host, port);
  320. if ((strlen(_mqtt_user) > 0) && (strlen(_mqtt_pass) > 0)) {
  321. DEBUG_MSG_P(PSTR("[MQTT] Connecting as user %s\n"), _mqtt_user);
  322. response = _mqtt.connect(getIdentifier().c_str(), _mqtt_user, _mqtt_pass, _mqtt_will, MQTT_QOS, MQTT_RETAIN, "0");
  323. } else {
  324. response = _mqtt.connect(getIdentifier().c_str(), _mqtt_will, MQTT_QOS, MQTT_RETAIN, "0");
  325. }
  326. DEBUG_MSG_P(PSTR("[MQTT] Will topic: %s\n"), _mqtt_will);
  327. DEBUG_MSG_P(PSTR("[MQTT] QoS: %d\n"), MQTT_QOS);
  328. DEBUG_MSG_P(PSTR("[MQTT] Retain flag: %d\n"), MQTT_RETAIN);
  329. }
  330. if (response) {
  331. _mqttOnConnect();
  332. } else {
  333. DEBUG_MSG_P(PSTR("[MQTT] Connection failed\n"));
  334. }
  335. #endif // MQTT_USE_ASYNC
  336. free(host);
  337. }
  338. void mqttConfigure() {
  339. // Replace identifier
  340. _mqtt_topic = getSetting("mqttTopic", MQTT_TOPIC);
  341. _mqtt_topic.replace("{identifier}", getSetting("hostname"));
  342. if (!_mqtt_topic.endsWith("/")) _mqtt_topic = _mqtt_topic + "/";
  343. // Getters and setters
  344. _mqtt_setter = getSetting("mqttSetter", MQTT_USE_SETTER);
  345. _mqtt_getter = getSetting("mqttGetter", MQTT_USE_GETTER);
  346. _mqtt_forward = !_mqtt_getter.equals(_mqtt_setter);
  347. // Enable
  348. if (getSetting("mqttServer", MQTT_SERVER).length() == 0) {
  349. mqttEnabled(false);
  350. } else {
  351. _mqtt_enabled = getSetting("mqttEnabled", MQTT_ENABLED).toInt() == 1;
  352. }
  353. }
  354. #if MDNS_SUPPORT
  355. boolean mqttDiscover() {
  356. int count = MDNS.queryService("mqtt", "tcp");
  357. DEBUG_MSG_P("[MQTT] MQTT brokers found: %d\n", count);
  358. for (int i=0; i<count; i++) {
  359. DEBUG_MSG_P("[MQTT] Broker at %s:%d\n", MDNS.IP(i).toString().c_str(), MDNS.port(i));
  360. if ((i==0) && (getSetting("mqttServer").length() == 0)) {
  361. setSetting("mqttServer", MDNS.IP(i).toString());
  362. setSetting("mqttPort", MDNS.port(i));
  363. mqttEnabled(MQTT_AUTOCONNECT);
  364. }
  365. }
  366. }
  367. #endif // MDNS_SUPPORT
  368. void mqttSetup() {
  369. DEBUG_MSG_P(PSTR("[MQTT] MQTT_USE_ASYNC = %d\n"), MQTT_USE_ASYNC);
  370. DEBUG_MSG_P(PSTR("[MQTT] MQTT_AUTOCONNECT = %d\n"), MQTT_AUTOCONNECT);
  371. #if MQTT_USE_ASYNC
  372. _mqtt.onConnect([](bool sessionPresent) {
  373. _mqttOnConnect();
  374. });
  375. _mqtt.onDisconnect([](AsyncMqttClientDisconnectReason reason) {
  376. if (reason == AsyncMqttClientDisconnectReason::TCP_DISCONNECTED) {
  377. DEBUG_MSG_P(PSTR("[MQTT] TCP Disconnected\n"));
  378. }
  379. if (reason == AsyncMqttClientDisconnectReason::MQTT_IDENTIFIER_REJECTED) {
  380. DEBUG_MSG_P(PSTR("[MQTT] Identifier Rejected\n"));
  381. }
  382. if (reason == AsyncMqttClientDisconnectReason::MQTT_SERVER_UNAVAILABLE) {
  383. DEBUG_MSG_P(PSTR("[MQTT] Server unavailable\n"));
  384. }
  385. if (reason == AsyncMqttClientDisconnectReason::MQTT_MALFORMED_CREDENTIALS) {
  386. DEBUG_MSG_P(PSTR("[MQTT] Malformed credentials\n"));
  387. }
  388. if (reason == AsyncMqttClientDisconnectReason::MQTT_NOT_AUTHORIZED) {
  389. DEBUG_MSG_P(PSTR("[MQTT] Not authorized\n"));
  390. }
  391. #if ASYNC_TCP_SSL_ENABLED
  392. if (reason == AsyncMqttClientDisconnectReason::TLS_BAD_FINGERPRINT) {
  393. DEBUG_MSG_P(PSTR("[MQTT] Bad fingerprint\n"));
  394. }
  395. #endif
  396. _mqttOnDisconnect();
  397. });
  398. _mqtt.onMessage([](char* topic, char* payload, AsyncMqttClientMessageProperties properties, size_t len, size_t index, size_t total) {
  399. _mqttOnMessage(topic, payload, len);
  400. });
  401. _mqtt.onSubscribe([](uint16_t packetId, uint8_t qos) {
  402. DEBUG_MSG_P(PSTR("[MQTT] Subscribe ACK for PID %d\n"), packetId);
  403. });
  404. _mqtt.onPublish([](uint16_t packetId) {
  405. DEBUG_MSG_P(PSTR("[MQTT] Publish ACK for PID %d\n"), packetId);
  406. });
  407. #else // not MQTT_USE_ASYNC
  408. DEBUG_MSG_P(PSTR("[MQTT] Using SYNC MQTT library\n"));
  409. _mqtt.setCallback([](char* topic, byte* payload, unsigned int length) {
  410. _mqttOnMessage(topic, (char *) payload, length);
  411. });
  412. #endif // MQTT_USE_ASYNC
  413. mqttConfigure();
  414. mqttRegister(_mqttCallback);
  415. }
  416. void mqttLoop() {
  417. if (WiFi.status() != WL_CONNECTED) return;
  418. #if MQTT_USE_ASYNC
  419. mqttConnect();
  420. #else // not MQTT_USE_ASYNC
  421. if (_mqtt.connected()) {
  422. _mqtt.loop();
  423. } else {
  424. if (_mqtt_connected) {
  425. _mqttOnDisconnect();
  426. _mqtt_connected = false;
  427. }
  428. mqttConnect();
  429. }
  430. #endif
  431. }