mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
[MQTT] Try to improve error handling
This commit is contained in:
parent
6272514820
commit
227bbdea2f
|
@ -351,7 +351,7 @@ class Monitor extends BeanModel {
|
|||
}
|
||||
} else if (this.type === "mqtt") {
|
||||
try {
|
||||
bean.msg = await mqttAsync(this.url, this.mqttTopic, this.mqttSuccessMessage, {
|
||||
bean.msg = await mqttAsync(this.hostname, this.mqttTopic, this.mqttSuccessMessage, {
|
||||
mqttPort: this.port,
|
||||
mqttUsername: this.mqttUsername,
|
||||
mqttPassword: this.mqttPassword,
|
||||
|
|
|
@ -12,7 +12,6 @@ const fs = require("fs");
|
|||
const nodeJsUtil = require("util");
|
||||
const mqtt = require("mqtt");
|
||||
|
||||
|
||||
// From ping-lite
|
||||
exports.WIN = /^win/.test(process.platform);
|
||||
exports.LIN = /^linux/.test(process.platform);
|
||||
|
@ -94,19 +93,30 @@ exports.pingAsync = function (hostname, ipv6 = false) {
|
|||
exports.mqttAsync = function (hostname, topic, okMessage, options = {}) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const { port, username, password, interval = 20 } = options;
|
||||
try {
|
||||
|
||||
// Adds MQTT protocol to the hostname if not already present
|
||||
if (!/^(?:http|mqtt)s?:\/\//.test(hostname)) {
|
||||
hostname = "mqtt://" + hostname;
|
||||
}
|
||||
|
||||
debug("MQTT connecting");
|
||||
|
||||
let client = mqtt.connect(hostname, {
|
||||
port,
|
||||
username,
|
||||
password
|
||||
});
|
||||
|
||||
client.on("connect", () => {
|
||||
debug("MQTT subscribe topic");
|
||||
client.subscribe(topic);
|
||||
});
|
||||
|
||||
client.on("error", (error) => {
|
||||
client.end();
|
||||
reject(error);
|
||||
});
|
||||
|
||||
client.on("message", (messageTopic, message) => {
|
||||
if (messageTopic == topic) {
|
||||
if (message.toString() === okMessage) {
|
||||
|
@ -118,12 +128,11 @@ exports.mqttAsync = function (hostname, topic, okMessage, options = {}) {
|
|||
}
|
||||
}
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
client.end();
|
||||
}, interval * 1000);
|
||||
} catch (error) {
|
||||
reject(new Error(error));
|
||||
}
|
||||
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue