2018-04-18 09:25:40 -07:00
|
|
|
const MQTT = require('./mqtt');
|
|
|
|
const Zigbee = require('./zigbee');
|
|
|
|
const logger = require('./util/logger');
|
2018-04-18 10:09:59 -07:00
|
|
|
const settings = require('./util/settings');
|
2018-06-04 11:03:53 -07:00
|
|
|
const zigbeeShepherdConverters = require('zigbee-shepherd-converters');
|
2018-04-24 10:30:56 -07:00
|
|
|
const homeassistant = require('./homeassistant');
|
2018-05-30 13:28:08 -07:00
|
|
|
const objectAssignDeep = require(`object-assign-deep`);
|
2018-06-15 08:48:10 -07:00
|
|
|
|
2018-04-25 11:54:41 -07:00
|
|
|
const mqttConfigRegex = new RegExp(`${settings.get().mqtt.base_topic}/bridge/config/\\w+`, 'g');
|
2018-06-02 15:42:15 -07:00
|
|
|
const mqttDeviceRegex = new RegExp(`${settings.get().mqtt.base_topic}/[\\w\\s\\d]+/set`, 'g');
|
|
|
|
const mqttDevicePrefixRegex = new RegExp(`${settings.get().mqtt.base_topic}/[\\w\\s\\d]+/[\\w\\s\\d]+/set`, 'g');
|
2018-04-25 11:54:41 -07:00
|
|
|
|
2018-05-21 02:49:02 -07:00
|
|
|
const pollInterval = 60 * 1000; // seconds * 1000.
|
|
|
|
const softResetTimeout = 3600 * 1000; // seconds * 1000.
|
2018-05-17 00:52:28 -07:00
|
|
|
|
2018-06-11 13:15:45 -07:00
|
|
|
const allowedLogLevels = ['error', 'warn', 'info', 'debug'];
|
|
|
|
|
2018-05-28 12:10:58 -07:00
|
|
|
/**
|
|
|
|
* Home Assistant requires ALL attributes to be present in ALL MQTT messages send by the device.
|
|
|
|
* https://community.home-assistant.io/t/missing-value-with-mqtt-only-last-data-set-is-shown/47070/9
|
|
|
|
*
|
|
|
|
* Therefore zigbee2mqtt BY DEFAULT caches all values and resend it with every message.
|
|
|
|
* advanced.cache_state in configuration.yaml allows to configure this.
|
|
|
|
* https://github.com/Koenkk/zigbee2mqtt/wiki/Configuration
|
|
|
|
*/
|
|
|
|
const cacheState = settings.get().advanced && settings.get().advanced.cache_state === false ? false : true;
|
|
|
|
if (settings.get().homeassistant && !cacheState) {
|
|
|
|
logger.warn('In order for Home Assistant integration to work properly set `cache_state: true');
|
|
|
|
}
|
|
|
|
|
2018-05-17 08:20:46 -07:00
|
|
|
class Controller {
|
2018-04-18 09:25:40 -07:00
|
|
|
constructor() {
|
|
|
|
this.zigbee = new Zigbee();
|
|
|
|
this.mqtt = new MQTT();
|
2018-05-21 02:51:53 -07:00
|
|
|
this.stateCache = {};
|
2018-06-08 11:20:35 -07:00
|
|
|
this.configured = [];
|
2018-04-18 09:25:40 -07:00
|
|
|
this.handleZigbeeMessage = this.handleZigbeeMessage.bind(this);
|
|
|
|
this.handleMQTTMessage = this.handleMQTTMessage.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
2018-06-15 08:48:10 -07:00
|
|
|
this.startupLogVersion(() => {
|
|
|
|
this.zigbee.start(this.handleZigbeeMessage, (error) => {
|
|
|
|
if (error) {
|
2018-06-21 11:11:08 -07:00
|
|
|
logger.error('Failed to start', error);
|
2018-06-15 08:48:10 -07:00
|
|
|
} else {
|
|
|
|
// Log zigbee clients on startup and configure.
|
|
|
|
const devices = this.zigbee.getAllClients();
|
|
|
|
logger.info(`Currently ${devices.length} devices are joined:`);
|
|
|
|
devices.forEach((device) => {
|
|
|
|
logger.info(this.getDeviceStartupLogMessage(device));
|
|
|
|
this.configureDevice(device);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Enable zigbee join.
|
|
|
|
if (settings.get().permit_join) {
|
|
|
|
logger.warn('`permit_join` set to `true` in configuration.yaml.');
|
|
|
|
logger.warn('Allowing new devices to join.');
|
|
|
|
logger.warn('Set `permit_join` to `false` once you joined all devices.');
|
|
|
|
this.zigbee.permitJoin(true);
|
|
|
|
}
|
2018-05-16 10:29:47 -07:00
|
|
|
|
2018-06-15 08:48:10 -07:00
|
|
|
// Start timers.
|
|
|
|
this.pollTimer(true);
|
|
|
|
this.softResetTimeout(true);
|
2018-06-11 11:20:18 -07:00
|
|
|
|
2018-06-15 08:48:10 -07:00
|
|
|
// Connect to MQTT broker
|
|
|
|
const subscriptions = [
|
|
|
|
`${settings.get().mqtt.base_topic}/+/set`,
|
|
|
|
`${settings.get().mqtt.base_topic}/+/+/set`,
|
|
|
|
`${settings.get().mqtt.base_topic}/bridge/config/+`,
|
|
|
|
];
|
2018-06-11 11:20:18 -07:00
|
|
|
|
2018-06-15 08:48:10 -07:00
|
|
|
if (settings.get().homeassistant) {
|
|
|
|
subscriptions.push('hass/status');
|
|
|
|
}
|
2018-06-11 11:20:18 -07:00
|
|
|
|
2018-06-15 08:48:10 -07:00
|
|
|
this.mqtt.connect(this.handleMQTTMessage, subscriptions, () => this.handleMQTTConnected());
|
2018-06-13 10:51:40 -07:00
|
|
|
}
|
2018-06-15 08:48:10 -07:00
|
|
|
});
|
2018-04-18 09:25:40 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-11 11:20:18 -07:00
|
|
|
handleMQTTConnected() {
|
|
|
|
// Home Assistant MQTT discovery on MQTT connected.
|
2018-04-24 10:30:56 -07:00
|
|
|
if (settings.get().homeassistant) {
|
|
|
|
// MQTT discovery of all paired devices on startup.
|
2018-04-25 11:54:41 -07:00
|
|
|
this.zigbee.getAllClients().forEach((device) => {
|
2018-06-04 11:03:53 -07:00
|
|
|
const mappedModel = zigbeeShepherdConverters.findByZigbeeModel(device.modelId);
|
|
|
|
if (mappedModel) {
|
2018-06-11 11:20:18 -07:00
|
|
|
homeassistant.discover(device.ieeeAddr, mappedModel.model, this.mqtt, true);
|
2018-04-25 12:34:26 -07:00
|
|
|
}
|
2018-04-24 10:30:56 -07:00
|
|
|
});
|
|
|
|
}
|
2018-06-11 11:31:05 -07:00
|
|
|
|
|
|
|
// Resend all cached states.
|
2018-06-13 10:51:40 -07:00
|
|
|
this.sendAllCachedStates();
|
|
|
|
}
|
|
|
|
|
|
|
|
sendAllCachedStates() {
|
2018-06-11 11:31:05 -07:00
|
|
|
this.zigbee.getAllClients().forEach((device) => {
|
|
|
|
if (this.stateCache.hasOwnProperty(device.ieeeAddr)) {
|
|
|
|
this.mqttPublishDeviceState(device.ieeeAddr, this.stateCache[device.ieeeAddr], false);
|
|
|
|
}
|
|
|
|
});
|
2018-05-21 02:49:02 -07:00
|
|
|
}
|
|
|
|
|
2018-05-21 02:59:01 -07:00
|
|
|
softResetTimeout(start) {
|
2018-05-21 02:49:02 -07:00
|
|
|
if (this._softResetTimer) {
|
|
|
|
clearTimeout(this._softResetTimer);
|
|
|
|
this._softResetTimer = null;
|
|
|
|
}
|
|
|
|
|
2018-05-21 02:59:01 -07:00
|
|
|
if (start) {
|
|
|
|
this._softResetTimer = setTimeout(() => {
|
|
|
|
this.zigbee.softReset((error) => {
|
|
|
|
if (error) {
|
|
|
|
logger.warn('Soft reset error', error);
|
|
|
|
this.zigbee.stop((error) => {
|
|
|
|
logger.warn('Zigbee stopped');
|
|
|
|
this.zigbee.start(this.handleZigbeeMessage, (error) => {
|
|
|
|
if (error) {
|
|
|
|
logger.error('Failed to restart!');
|
|
|
|
}
|
|
|
|
});
|
2018-05-21 02:49:02 -07:00
|
|
|
});
|
2018-05-21 02:59:01 -07:00
|
|
|
} else {
|
|
|
|
logger.warn('Soft resetted zigbee');
|
|
|
|
}
|
2018-05-21 02:49:02 -07:00
|
|
|
|
2018-05-21 02:59:01 -07:00
|
|
|
this.softResetTimeout(true);
|
|
|
|
});
|
|
|
|
}, softResetTimeout);
|
|
|
|
}
|
2018-05-21 02:49:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pollTimer(start) {
|
|
|
|
// Some routers need polling to prevent them from sleeping.
|
|
|
|
if (start && !this._pollTimer) {
|
|
|
|
this._pollTimer = setInterval(() => {
|
|
|
|
const devices = this.zigbee.getAllClients().filter((d) => {
|
|
|
|
const power = d.powerSource ? d.powerSource.toLowerCase().split(' ')[0] : 'unknown';
|
|
|
|
return power !== 'battery' && power !== 'unknown' && d.type === 'Router';
|
|
|
|
});
|
|
|
|
|
|
|
|
devices.forEach((d) => this.zigbee.ping(d.ieeeAddr));
|
|
|
|
}, pollInterval);
|
|
|
|
} else if (!start && this._pollTimer) {
|
|
|
|
clearTimeout(this._pollTimer);
|
|
|
|
this._pollTimer = null;
|
|
|
|
}
|
2018-04-24 10:30:56 -07:00
|
|
|
}
|
|
|
|
|
2018-04-18 09:25:40 -07:00
|
|
|
stop(callback) {
|
|
|
|
this.mqtt.disconnect();
|
2018-05-21 02:49:02 -07:00
|
|
|
this.pollTimer(false);
|
2018-05-21 02:59:01 -07:00
|
|
|
this.softResetTimeout(false);
|
2018-04-18 09:25:40 -07:00
|
|
|
this.zigbee.stop(callback);
|
|
|
|
}
|
|
|
|
|
2018-05-21 04:21:18 -07:00
|
|
|
configureDevice(device) {
|
|
|
|
const ieeeAddr = device.ieeeAddr;
|
2018-06-08 11:20:35 -07:00
|
|
|
if (ieeeAddr && device.modelId && !this.configured.includes(ieeeAddr)) {
|
2018-06-04 11:03:53 -07:00
|
|
|
const mappedModel = zigbeeShepherdConverters.findByZigbeeModel(device.modelId);
|
2018-05-21 04:21:18 -07:00
|
|
|
|
2018-06-08 11:20:35 -07:00
|
|
|
// Call configure function of device.
|
2018-06-04 12:36:51 -07:00
|
|
|
if (mappedModel && mappedModel.configure) {
|
|
|
|
mappedModel.configure(ieeeAddr, this.zigbee.shepherd, this.zigbee.getCoordinator(), (ok, msg) => {
|
|
|
|
if (ok) {
|
|
|
|
logger.info(`Succesfully configured ${ieeeAddr}`);
|
|
|
|
} else {
|
|
|
|
logger.error(`Failed to configure ${ieeeAddr}`);
|
|
|
|
}
|
|
|
|
});
|
2018-05-21 04:21:18 -07:00
|
|
|
}
|
|
|
|
|
2018-06-08 11:20:35 -07:00
|
|
|
// Setup an OnAfIncomingMsg handler if needed.
|
|
|
|
if (mappedModel && mappedModel.onAfIncomingMsg) {
|
|
|
|
mappedModel.onAfIncomingMsg.forEach((ep) => this.zigbee.registerOnAfIncomingMsg(ieeeAddr, ep));
|
|
|
|
}
|
|
|
|
|
|
|
|
this.configured.push(ieeeAddr);
|
2018-05-21 04:21:18 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-16 10:29:47 -07:00
|
|
|
getDeviceStartupLogMessage(device) {
|
|
|
|
let friendlyName = 'unknown';
|
2018-05-28 11:40:30 -07:00
|
|
|
let type = 'unknown';
|
2018-05-16 10:29:47 -07:00
|
|
|
let friendlyDevice = {model: 'unkown', description: 'unknown'};
|
2018-06-04 11:03:53 -07:00
|
|
|
const mappedModel = zigbeeShepherdConverters.findByZigbeeModel(device.modelId);
|
|
|
|
if (mappedModel) {
|
|
|
|
friendlyDevice = mappedModel;
|
2018-05-16 10:29:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (settings.getDevice(device.ieeeAddr)) {
|
2018-05-17 08:20:46 -07:00
|
|
|
friendlyName = settings.getDevice(device.ieeeAddr).friendly_name;
|
2018-05-16 10:29:47 -07:00
|
|
|
}
|
|
|
|
|
2018-05-28 11:40:30 -07:00
|
|
|
if (device.type) {
|
|
|
|
type = device.type;
|
|
|
|
}
|
|
|
|
|
2018-05-17 08:20:46 -07:00
|
|
|
return `${friendlyName} (${device.ieeeAddr}): ${friendlyDevice.model} - ` +
|
2018-05-28 11:40:30 -07:00
|
|
|
`${friendlyDevice.vendor} ${friendlyDevice.description} (${type})`;
|
2018-05-16 10:29:47 -07:00
|
|
|
}
|
|
|
|
|
2018-04-18 09:25:40 -07:00
|
|
|
handleZigbeeMessage(message) {
|
2018-05-21 02:49:02 -07:00
|
|
|
// Zigbee message receieved, reset soft reset timeout.
|
2018-05-21 02:59:01 -07:00
|
|
|
this.softResetTimeout(true);
|
2018-05-21 02:49:02 -07:00
|
|
|
|
2018-06-15 16:04:32 -07:00
|
|
|
logger.debug('Recieved zigbee message with data', JSON.stringify(message.data));
|
2018-06-25 11:18:39 -07:00
|
|
|
if (message.type == 'devInterview' && !settings.getDevice(message.data)) {
|
2018-06-02 15:50:30 -07:00
|
|
|
logger.info('Connecting with device...');
|
|
|
|
this.mqtt.log('pairing', 'connecting with device');
|
2018-06-25 11:18:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (message.type == 'devIncoming') {
|
2018-06-02 15:50:30 -07:00
|
|
|
logger.info('Device incoming...');
|
|
|
|
this.mqtt.log('pairing', 'device incoming');
|
2018-04-21 03:45:22 -07:00
|
|
|
}
|
|
|
|
|
2018-04-25 11:54:41 -07:00
|
|
|
// We dont handle messages without endpoints.
|
2018-04-18 09:25:40 -07:00
|
|
|
if (!message.endpoints) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const device = message.endpoints[0].device;
|
|
|
|
|
2018-04-23 12:44:06 -07:00
|
|
|
if (!device) {
|
|
|
|
logger.warn('Message without device!');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-18 09:25:40 -07:00
|
|
|
// Check if this is a new device.
|
2018-04-23 09:17:47 -07:00
|
|
|
if (!settings.getDevice(device.ieeeAddr)) {
|
2018-04-18 09:25:40 -07:00
|
|
|
logger.info(`New device with address ${device.ieeeAddr} connected!`);
|
2018-04-25 10:29:03 -07:00
|
|
|
settings.addDevice(device.ieeeAddr);
|
2018-05-30 09:09:24 -07:00
|
|
|
this.mqtt.log('device_connected', device.ieeeAddr);
|
2018-04-18 09:25:40 -07:00
|
|
|
}
|
|
|
|
|
2018-04-20 14:39:20 -07:00
|
|
|
// We can't handle devices without modelId.
|
|
|
|
if (!device.modelId) {
|
2018-04-18 09:25:40 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Map Zigbee modelID to vendor modelID.
|
2018-04-18 10:09:59 -07:00
|
|
|
const modelID = message.endpoints[0].device.modelId;
|
2018-06-04 11:03:53 -07:00
|
|
|
const mappedModel = zigbeeShepherdConverters.findByZigbeeModel(modelID);
|
2018-04-18 09:25:40 -07:00
|
|
|
|
|
|
|
if (!mappedModel) {
|
2018-04-18 11:53:22 -07:00
|
|
|
logger.warn(`Device with modelID '${modelID}' is not supported.`);
|
2018-05-24 03:09:36 -07:00
|
|
|
logger.warn(`Please see: https://github.com/Koenkk/zigbee2mqtt/wiki/How-to-support-new-devices`);
|
2018-04-18 09:25:40 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-21 04:21:18 -07:00
|
|
|
// Configure device.
|
|
|
|
this.configureDevice(device);
|
|
|
|
|
2018-04-25 10:41:20 -07:00
|
|
|
// Home Assistant MQTT discovery
|
2018-04-25 11:54:41 -07:00
|
|
|
if (settings.get().homeassistant) {
|
2018-06-11 11:20:18 -07:00
|
|
|
homeassistant.discover(device.ieeeAddr, mappedModel.model, this.mqtt, false);
|
2018-04-20 10:53:40 -07:00
|
|
|
}
|
|
|
|
|
2018-04-20 14:39:20 -07:00
|
|
|
// After this point we cant handle message withoud cid anymore.
|
2018-06-08 11:20:35 -07:00
|
|
|
if (!message.data || (!message.data.cid && !message.data.cmdId)) {
|
2018-04-20 14:39:20 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-18 09:25:40 -07:00
|
|
|
// Find a conveter for this message.
|
2018-04-18 10:09:59 -07:00
|
|
|
const cid = message.data.cid;
|
2018-06-08 11:20:35 -07:00
|
|
|
const cmdId = message.data.cmdId;
|
|
|
|
const converters = mappedModel.fromZigbee.filter((c) => {
|
|
|
|
if (cid) {
|
|
|
|
return c.cid === cid && c.type === message.type;
|
|
|
|
} else if (cmdId) {
|
|
|
|
return c.cmd === cmdId;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
2018-04-18 09:25:40 -07:00
|
|
|
|
|
|
|
if (!converters.length) {
|
2018-06-08 11:20:35 -07:00
|
|
|
if (cid) {
|
|
|
|
logger.warn(
|
2018-07-14 12:22:50 -07:00
|
|
|
`No converter available for '${mappedModel.model}' with cid '${cid}', ` +
|
2018-07-18 13:30:51 -07:00
|
|
|
`type '${message.type}' and data '${JSON.stringify(message.data)}'`
|
2018-06-08 11:20:35 -07:00
|
|
|
);
|
|
|
|
} else if (cmdId) {
|
2018-07-14 12:22:50 -07:00
|
|
|
logger.warn(
|
|
|
|
`No converter available for '${mappedModel.model}' with cmd '${cmdId}' ` +
|
2018-07-18 13:30:51 -07:00
|
|
|
`and data '${JSON.stringify(message.data)}'`
|
2018-07-14 12:22:50 -07:00
|
|
|
);
|
2018-06-08 11:20:35 -07:00
|
|
|
}
|
|
|
|
|
2018-05-24 03:09:36 -07:00
|
|
|
logger.warn(`Please see: https://github.com/Koenkk/zigbee2mqtt/wiki/How-to-support-new-devices.`);
|
2018-04-18 09:25:40 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert this Zigbee message to a MQTT message.
|
|
|
|
// Get payload for the message.
|
|
|
|
// - If a payload is returned publish it to the MQTT broker
|
|
|
|
// - If NO payload is returned do nothing. This is for non-standard behaviour
|
|
|
|
// for e.g. click switches where we need to count number of clicks and detect long presses.
|
|
|
|
converters.forEach((converter) => {
|
2018-05-22 10:10:16 -07:00
|
|
|
const publish = (payload) => {
|
2018-06-04 10:23:23 -07:00
|
|
|
// Don't cache messages with following properties:
|
|
|
|
const dontCacheProperties = ['click', 'action', 'button', 'button_left', 'button_right'];
|
|
|
|
let cache = true;
|
|
|
|
dontCacheProperties.forEach((property) => {
|
|
|
|
if (payload.hasOwnProperty(property)) {
|
|
|
|
cache = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-07-29 13:09:20 -07:00
|
|
|
// Add device linkquality.
|
|
|
|
if (message.linkquality) {
|
|
|
|
payload.linkquality = message.linkquality;
|
|
|
|
}
|
|
|
|
|
2018-05-22 10:10:16 -07:00
|
|
|
this.mqttPublishDeviceState(device.ieeeAddr, payload, cache);
|
|
|
|
};
|
2018-05-17 08:20:46 -07:00
|
|
|
|
2018-05-24 04:09:58 -07:00
|
|
|
const payload = converter.convert(mappedModel, message, publish, settings.getDevice(device.ieeeAddr));
|
2018-04-18 09:25:40 -07:00
|
|
|
|
|
|
|
if (payload) {
|
2018-05-11 10:14:18 -07:00
|
|
|
publish(payload);
|
2018-04-18 09:25:40 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMQTTMessage(topic, message) {
|
2018-06-14 01:22:26 -07:00
|
|
|
logger.debug(`Recieved mqtt message on topic '${topic}' with data '${message}'`);
|
2018-06-14 11:06:35 -07:00
|
|
|
|
2018-04-25 11:54:41 -07:00
|
|
|
if (topic.match(mqttConfigRegex)) {
|
|
|
|
this.handleMQTTMessageConfig(topic, message);
|
2018-04-29 05:09:49 -07:00
|
|
|
} else if (topic.match(mqttDeviceRegex) || topic.match(mqttDevicePrefixRegex)) {
|
|
|
|
this.handleMQTTMessageDevice(topic, message, topic.match(mqttDevicePrefixRegex));
|
2018-06-13 10:51:40 -07:00
|
|
|
} else if (topic === 'hass/status') {
|
|
|
|
if (message.toString().toLowerCase() === 'online') {
|
|
|
|
const timer = setTimeout(() => {
|
|
|
|
this.sendAllCachedStates();
|
|
|
|
clearTimeout(timer);
|
2018-06-20 13:02:29 -07:00
|
|
|
}, 20000);
|
2018-06-13 10:51:40 -07:00
|
|
|
}
|
2018-04-25 11:54:41 -07:00
|
|
|
} else {
|
|
|
|
logger.warn(`Cannot handle MQTT message with topic '${topic}' and message '${message}'`);
|
2018-04-24 10:03:09 -07:00
|
|
|
}
|
2018-04-25 11:54:41 -07:00
|
|
|
}
|
2018-04-24 10:03:09 -07:00
|
|
|
|
2018-04-25 11:54:41 -07:00
|
|
|
handleMQTTMessageConfig(topic, message) {
|
|
|
|
const option = topic.split('/')[3];
|
|
|
|
|
|
|
|
if (option === 'permit_join') {
|
|
|
|
this.zigbee.permitJoin(message.toString().toLowerCase() === 'true');
|
2018-06-11 11:31:46 -07:00
|
|
|
} else if (option === 'log_level') {
|
2018-06-11 13:15:45 -07:00
|
|
|
const level = message.toString().toLowerCase();
|
|
|
|
if (allowedLogLevels.includes(level)) {
|
2018-06-13 13:38:56 -07:00
|
|
|
logger.info(`Switching log level to '${level}'`);
|
2018-06-11 13:15:45 -07:00
|
|
|
logger.transports.console.level = level;
|
|
|
|
logger.transports.file.level = level;
|
2018-06-11 12:37:18 -07:00
|
|
|
} else {
|
2018-06-11 13:29:33 -07:00
|
|
|
logger.error(`Could not set log level to '${level}'. Allowed level: '${allowedLogLevels.join(',')}'`);
|
2018-06-11 11:31:46 -07:00
|
|
|
}
|
2018-05-30 08:52:46 -07:00
|
|
|
} else if (option === 'devices') {
|
|
|
|
const devices = this.zigbee.getAllClients().map((device) => {
|
2018-06-04 11:03:53 -07:00
|
|
|
const mappedModel = zigbeeShepherdConverters.findByZigbeeModel(device.modelId);
|
2018-05-30 08:52:46 -07:00
|
|
|
const friendlyDevice = settings.getDevice(device.ieeeAddr);
|
|
|
|
|
|
|
|
return {
|
|
|
|
ieeeAddr: device.ieeeAddr,
|
|
|
|
type: device.type,
|
|
|
|
model: mappedModel ? mappedModel.model : device.modelId,
|
|
|
|
friendly_name: friendlyDevice ? friendlyDevice.friendly_name : device.ieeeAddr,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-05-30 09:09:24 -07:00
|
|
|
this.mqtt.log('devices', devices);
|
2018-06-06 12:19:50 -07:00
|
|
|
} else if (option === 'remove') {
|
2018-06-09 03:27:04 -07:00
|
|
|
message = message.toString();
|
2018-06-10 08:35:14 -07:00
|
|
|
const IDByFriendlyName = settings.getIDByFriendlyName(message);
|
|
|
|
const deviceID = IDByFriendlyName ? IDByFriendlyName : message;
|
2018-06-09 03:27:04 -07:00
|
|
|
const device = this.zigbee.getDevice(deviceID);
|
|
|
|
|
2018-06-10 08:35:14 -07:00
|
|
|
const cleanup = () => {
|
|
|
|
// Clear Home Assistant MQTT discovery message
|
|
|
|
if (settings.get().homeassistant && device) {
|
2018-06-09 03:27:04 -07:00
|
|
|
const mappedModel = zigbeeShepherdConverters.findByZigbeeModel(device.modelId);
|
2018-06-10 08:35:14 -07:00
|
|
|
if (mappedModel) {
|
2018-06-09 03:27:04 -07:00
|
|
|
homeassistant.clear(deviceID, mappedModel.model, this.mqtt);
|
|
|
|
}
|
2018-06-10 08:35:14 -07:00
|
|
|
}
|
2018-06-09 03:27:04 -07:00
|
|
|
|
2018-06-10 08:35:14 -07:00
|
|
|
// Remove from configuration.yaml
|
|
|
|
settings.removeDevice(deviceID);
|
2018-06-09 03:27:04 -07:00
|
|
|
|
2018-06-10 08:35:14 -07:00
|
|
|
logger.info(`Successfully removed ${deviceID}`);
|
2018-06-10 08:37:16 -07:00
|
|
|
this.mqtt.log('device_removed', message);
|
2018-06-10 08:35:14 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// Remove from zigbee network.
|
|
|
|
if (device) {
|
|
|
|
this.zigbee.removeDevice(deviceID, (error) => {
|
|
|
|
if (!error) {
|
|
|
|
cleanup();
|
|
|
|
} else {
|
|
|
|
logger.error(`Failed to remove ${deviceID}`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
cleanup();
|
|
|
|
}
|
2018-07-24 09:25:16 -07:00
|
|
|
} else if (option === 'rename') {
|
|
|
|
const invalid = `Invalid rename message format expected {old: 'friendly_name', new: 'new_name} ` +
|
|
|
|
`got ${message.toString()}`;
|
|
|
|
|
|
|
|
let json = null;
|
|
|
|
try {
|
|
|
|
json = JSON.parse(message.toString());
|
|
|
|
} catch (e) {
|
|
|
|
logger.error(invalid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate message
|
|
|
|
if (!json.new || !json.old) {
|
|
|
|
logger.error(invalid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings.changeFriendlyName(json.old, json.new)) {
|
|
|
|
logger.info(`Successfully renamed - ${json.old} to ${json.new} `);
|
|
|
|
} else {
|
|
|
|
logger.error(`Failed to renamed - ${json.old} to ${json.new}`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Homeassistant rediscover
|
|
|
|
if (settings.get().homeassistant) {
|
|
|
|
const ID = settings.getIDByFriendlyName(json.new);
|
|
|
|
const device = this.zigbee.getDevice(ID);
|
|
|
|
const mappedModel = zigbeeShepherdConverters.findByZigbeeModel(device.modelId);
|
|
|
|
if (mappedModel) {
|
|
|
|
homeassistant.discover(device.ieeeAddr, mappedModel.model, this.mqtt, true);
|
|
|
|
}
|
|
|
|
}
|
2018-04-25 11:54:41 -07:00
|
|
|
} else {
|
|
|
|
logger.warn(`Cannot handle MQTT config option '${option}' with message '${message}'`);
|
2018-04-24 10:30:56 -07:00
|
|
|
}
|
2018-04-25 11:54:41 -07:00
|
|
|
}
|
|
|
|
|
2018-04-29 05:09:49 -07:00
|
|
|
handleMQTTMessageDevice(topic, message, withPrefix) {
|
2018-04-25 11:54:41 -07:00
|
|
|
const friendlyName = topic.split('/')[1];
|
2018-04-29 05:09:49 -07:00
|
|
|
const topicPrefix = withPrefix ? topic.split('/')[2] : '';
|
2018-04-24 10:30:56 -07:00
|
|
|
|
|
|
|
// Map friendlyName to deviceID.
|
2018-06-09 03:27:04 -07:00
|
|
|
const deviceID = settings.getIDByFriendlyName(friendlyName);
|
2018-05-17 08:20:46 -07:00
|
|
|
|
2018-04-24 10:30:56 -07:00
|
|
|
if (!deviceID) {
|
|
|
|
logger.error(`Cannot handle '${topic}' because deviceID of '${friendlyName}' cannot be found`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-25 11:54:41 -07:00
|
|
|
// Convert the MQTT message to a Zigbee message.
|
|
|
|
let json = null;
|
|
|
|
try {
|
|
|
|
json = JSON.parse(message);
|
|
|
|
} catch (e) {
|
|
|
|
// Cannot be parsed to JSON, assume state message.
|
|
|
|
json = {state: message.toString()};
|
|
|
|
}
|
|
|
|
|
2018-04-27 14:58:46 -07:00
|
|
|
// Find ep for this device
|
2018-06-14 11:00:57 -07:00
|
|
|
const device = this.zigbee.getDevice(deviceID);
|
|
|
|
if (!device) {
|
|
|
|
logger.error(`Failed to find device with deviceID ${deviceID}`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const mappedModel = zigbeeShepherdConverters.findByZigbeeModel(device.modelId);
|
|
|
|
if (!mappedModel) {
|
|
|
|
logger.warn(`Device with modelID '${device.modelId}' is not supported.`);
|
|
|
|
logger.warn(`Please see: https://github.com/Koenkk/zigbee2mqtt/wiki/How-to-support-new-devices`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-29 05:09:49 -07:00
|
|
|
const ep = mappedModel.ep && mappedModel.ep[topicPrefix] ? mappedModel.ep[topicPrefix] : null;
|
2018-05-30 13:28:08 -07:00
|
|
|
const published = [];
|
2018-04-27 14:58:46 -07:00
|
|
|
|
2018-04-18 09:25:40 -07:00
|
|
|
Object.keys(json).forEach((key) => {
|
|
|
|
// Find converter for this key.
|
2018-05-23 09:23:51 -07:00
|
|
|
const converter = mappedModel.toZigbee.find((c) => c.key === key);
|
|
|
|
|
2018-04-18 09:25:40 -07:00
|
|
|
if (!converter) {
|
|
|
|
logger.error(`No converter available for '${key}' (${json[key]})`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-30 13:28:08 -07:00
|
|
|
const message = converter.convert(json[key], json);
|
|
|
|
|
|
|
|
if (!message) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-18 10:09:59 -07:00
|
|
|
const callback = (error) => {
|
2018-04-18 09:25:40 -07:00
|
|
|
// Devices do not report when they go off, this ensures state (on/off) is always in sync.
|
2018-04-29 05:09:49 -07:00
|
|
|
if (!error && key.startsWith('state')) {
|
|
|
|
const msg = {};
|
2018-06-16 11:38:44 -07:00
|
|
|
const _key = topicPrefix ? `${key}_${topicPrefix}` : key;
|
|
|
|
msg[_key] = json[key];
|
2018-05-11 10:14:18 -07:00
|
|
|
this.mqttPublishDeviceState(deviceID, msg, true);
|
2018-04-18 09:25:40 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-16 10:22:47 -07:00
|
|
|
this.zigbee.publish(deviceID, message.cid, message.cmd, message.zclData, ep, callback);
|
2018-05-30 13:28:08 -07:00
|
|
|
|
|
|
|
published.push({message: message, converter: converter});
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* After publishing a command to a zigbee device we want to monitor the changed attribute(s) so that
|
|
|
|
* everything stays in sync.
|
|
|
|
*/
|
|
|
|
published.forEach((p) => {
|
|
|
|
let counter = 0;
|
|
|
|
let secondsToMonitor = 1;
|
|
|
|
|
|
|
|
// In case of a transition we need to monitor for the whole transition time.
|
|
|
|
if (p.message.zclData.hasOwnProperty('transtime')) {
|
|
|
|
// Note that: transtime 10 = 0.1 seconds, 100 = 1 seconds, etc.
|
|
|
|
secondsToMonitor = (p.message.zclData.transtime / 10) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const timer = setInterval(() => {
|
|
|
|
counter++;
|
|
|
|
|
|
|
|
// Doing a 'read' will result in the device sending a zigbee message with the current attribute value.
|
|
|
|
// which will be handled by this.handleZigbeeMessage.
|
|
|
|
p.converter.attr.forEach((attribute) => {
|
|
|
|
this.zigbee.read(deviceID, p.message.cid, attribute, ep, () => null);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (counter >= secondsToMonitor) {
|
|
|
|
clearTimeout(timer);
|
|
|
|
}
|
|
|
|
}, 1000);
|
2018-04-18 09:25:40 -07:00
|
|
|
});
|
|
|
|
}
|
2018-04-21 00:13:14 -07:00
|
|
|
|
2018-05-11 10:14:18 -07:00
|
|
|
mqttPublishDeviceState(deviceID, payload, cache) {
|
2018-05-28 12:10:58 -07:00
|
|
|
if (cacheState) {
|
|
|
|
// Add cached state to payload
|
|
|
|
if (this.stateCache[deviceID]) {
|
2018-06-02 10:11:49 -07:00
|
|
|
payload = objectAssignDeep.noMutate(this.stateCache[deviceID], payload);
|
2018-05-28 12:10:58 -07:00
|
|
|
}
|
2018-04-21 00:13:14 -07:00
|
|
|
|
2018-05-28 12:10:58 -07:00
|
|
|
// Update state cache with new state.
|
|
|
|
if (cache) {
|
|
|
|
this.stateCache[deviceID] = payload;
|
|
|
|
}
|
2018-05-11 10:14:18 -07:00
|
|
|
}
|
2018-04-21 00:13:14 -07:00
|
|
|
|
2018-04-25 11:54:41 -07:00
|
|
|
const deviceSettings = settings.getDevice(deviceID);
|
2018-05-15 09:42:26 -07:00
|
|
|
const options = {
|
|
|
|
retain: deviceSettings.retain,
|
|
|
|
qos: deviceSettings.qos ? deviceSettings.qos : 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
this.mqtt.publish(deviceSettings.friendly_name, JSON.stringify(payload), options);
|
2018-04-21 00:13:14 -07:00
|
|
|
}
|
2018-06-15 08:48:10 -07:00
|
|
|
|
|
|
|
startupLogVersion(callback) {
|
|
|
|
const git = require('git-last-commit');
|
|
|
|
const packageJSON = require('../package.json');
|
|
|
|
const version = packageJSON.version;
|
|
|
|
|
|
|
|
git.getLastCommit((err, commit) => {
|
2018-06-15 15:10:08 -07:00
|
|
|
let commitHash = null;
|
|
|
|
|
2018-06-15 08:48:10 -07:00
|
|
|
if (err) {
|
2018-06-15 15:10:08 -07:00
|
|
|
try {
|
|
|
|
commitHash = require('../.hash.json').hash;
|
|
|
|
} catch (error) {
|
|
|
|
commitHash = 'unknown';
|
|
|
|
}
|
2018-06-15 08:48:10 -07:00
|
|
|
} else {
|
2018-06-15 15:10:08 -07:00
|
|
|
commitHash = commit.shortHash;
|
2018-06-15 08:48:10 -07:00
|
|
|
}
|
|
|
|
|
2018-06-15 15:10:08 -07:00
|
|
|
logger.info(`Starting zigbee2mqtt version ${version} (commit #${commitHash})`);
|
|
|
|
|
2018-06-15 08:48:10 -07:00
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}
|
2018-04-18 09:25:40 -07:00
|
|
|
}
|
|
|
|
|
2018-05-17 08:20:46 -07:00
|
|
|
module.exports = Controller;
|