mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-17 10:58:31 -07:00
ba7a85bbb5
* Initial implementation of backend for frontend. * Frontend fixes (#4205) * Send data to frontend api withoud baseTopic preffix * Send frontend api requests to mqtt * Fix topic name sanitisation * Fix base_topic trimming * Update frontend.js * Add zigbee2mqtt-frontend dependency Co-authored-by: Koen Kanters <koenkanters94@gmail.com> * Dont' setup separate MQTT connection. * Correctly stop * Add frontend tests. * [WIP] Bindings structure change (#4233) * Change bindings location * Bump frontend version * Republish devices on bindings change * Fix data structure * Fix payload double encoding * Change endpoints structure * Expose config to bridge/info * Fix typo * Updates Co-authored-by: Koen Kanters <koenkanters94@gmail.com> * Resend states on ws reconnect * Update deps * Bump frontend (#4264) Co-authored-by: John Doe <nurikk@users.noreply.github.com>
127 lines
4.1 KiB
JavaScript
127 lines
4.1 KiB
JavaScript
const mqtt = require('mqtt');
|
|
const logger = require('./util/logger');
|
|
const settings = require('./util/settings');
|
|
const fs = require('fs');
|
|
const events = require('events');
|
|
|
|
class MQTT extends events.EventEmitter {
|
|
constructor() {
|
|
super();
|
|
this.onMessage = this.onMessage.bind(this);
|
|
}
|
|
|
|
async connect() {
|
|
const mqttSettings = settings.get().mqtt;
|
|
logger.info(`Connecting to MQTT server at ${mqttSettings.server}`);
|
|
|
|
const options = {
|
|
will: {
|
|
topic: `${settings.get().mqtt.base_topic}/bridge/state`,
|
|
payload: 'offline',
|
|
retain: true,
|
|
},
|
|
};
|
|
|
|
if (mqttSettings.version) {
|
|
options.protocolVersion = mqttSettings.version;
|
|
}
|
|
|
|
if (mqttSettings.keepalive) {
|
|
logger.debug(`Using MQTT keepalive: ${mqttSettings.keepalive}`);
|
|
options.keepalive = mqttSettings.keepalive;
|
|
}
|
|
|
|
if (mqttSettings.ca) {
|
|
logger.debug(`MQTT SSL/TLS: Path to CA certificate = ${mqttSettings.ca}`);
|
|
options.ca = fs.readFileSync(mqttSettings.ca);
|
|
}
|
|
|
|
if (mqttSettings.key && mqttSettings.cert) {
|
|
logger.debug(`MQTT SSL/TLS: Path to client key = ${mqttSettings.key}`);
|
|
logger.debug(`MQTT SSL/TLS: Path to client certificate = ${mqttSettings.cert}`);
|
|
options.key = fs.readFileSync(mqttSettings.key);
|
|
options.cert = fs.readFileSync(mqttSettings.cert);
|
|
}
|
|
|
|
if (mqttSettings.user && mqttSettings.password) {
|
|
options.username = mqttSettings.user;
|
|
options.password = mqttSettings.password;
|
|
}
|
|
|
|
if (mqttSettings.client_id) {
|
|
logger.debug(`Using MQTT client ID: '${mqttSettings.client_id}'`);
|
|
options.clientId = mqttSettings.client_id;
|
|
}
|
|
|
|
if (mqttSettings.hasOwnProperty('reject_unauthorized') && !mqttSettings.reject_unauthorized) {
|
|
logger.debug(`MQTT reject_unauthorized set false, ignoring certificate warnings.`);
|
|
options.rejectUnauthorized = false;
|
|
}
|
|
|
|
// Set timer at interval to check if connected to MQTT server.
|
|
const interval = 10 * 1000; // seconds * 1000.
|
|
this.connectionTimer = setInterval(() => {
|
|
if (this.client.reconnecting) {
|
|
logger.error('Not connected to MQTT server!');
|
|
}
|
|
}, interval);
|
|
|
|
return new Promise((resolve) => {
|
|
this.client = mqtt.connect(mqttSettings.server, options);
|
|
|
|
this.client.on('connect', () => {
|
|
logger.info('Connected to MQTT server');
|
|
resolve();
|
|
});
|
|
|
|
this.client.on('message', this.onMessage);
|
|
});
|
|
}
|
|
|
|
async disconnect() {
|
|
clearTimeout(this.connectionTimer);
|
|
this.connectionTimer = null;
|
|
await this.publish('bridge/state', 'offline', {retain: true, qos: 0});
|
|
logger.info('Disconnecting from MQTT server');
|
|
this.client.end();
|
|
}
|
|
|
|
subscribe(topic) {
|
|
this.client.subscribe(topic);
|
|
}
|
|
|
|
onMessage(topic, message) {
|
|
this.emit('message', {topic, message: message.toString()});
|
|
}
|
|
|
|
isConnected() {
|
|
return this.client && !this.client.reconnecting;
|
|
}
|
|
|
|
async publish(topic, payload, options, base=settings.get().mqtt.base_topic, skipLog=false) {
|
|
topic = `${base}/${topic}`;
|
|
options = {qos: 0, retain: false, ...options};
|
|
|
|
if (!this.isConnected()) {
|
|
if (!skipLog) {
|
|
logger.error(`Not connected to MQTT server!`);
|
|
logger.error(`Cannot send message: topic: '${topic}', payload: '${payload}`);
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (!skipLog) {
|
|
logger.info(`MQTT publish: topic '${topic}', payload '${payload}'`);
|
|
}
|
|
|
|
return new Promise((resolve) => {
|
|
this.client.publish(topic, payload, options, () => {
|
|
this.emit('publishedMessage', {topic, payload, options});
|
|
resolve();
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = MQTT;
|