mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-17 02:48:31 -07:00
d83085ea7f
* Update zigbee-herdsman and zigbee-shepherd-converters. * Force Aqara S2 Lock endvices (#1764) * Start on zigbee-herdsman controller refactor. * More updates. * Cleanup zapp. * updates. * Propagate adapter disconnected event. * Updates. * Initial refactor to zigbee-herdsman. * Refactor deviceReceive to zigbee-herdsman. * Rename * Refactor deviceConfigure. * Finish bridge config. * Refactor availability. * Active homeassistant extension and more refactors. * Refactor groups. * Enable soft reset. * Activate group membership * Start on tests. * Enable reporting. * Add more controller tests. * Add more tests * Fix linting error. * Data en deviceReceive tests. * Move to zigbee-herdsman-converters. * More device publish tests. * Cleanup dependencies. * Bring device publish coverage to 100. * Bring home assistant test coverage to 100. * Device configure tests. * Attempt to fix tests. * Another attempt. * Another one. * Another one. * Another. * Add wait. * Longer wait. * Debug. * Update dependencies. * Another. * Begin on availability tests. * Improve availability tests. * Complete deviceAvailability tests. * Device bind tests. * More tests. * Begin networkmap refactors. * start on networkmap tests. * Network map tests. * Add utils tests. * Logger tests. * Settings and logger tests. * Ignore some stuff for coverage and add todos. * Add remaining missing tests. * Enforce 100% test coverage. * Start on groups test and refactor entityPublish to resolveEntity * Remove joinPathStorage, not used anymore as group information is stored into zigbee-herdsman database. * Fix linting issues. * Improve tests. * Add groups. * fix group membership. * Group: log names. * Convert MQTT message to string by default. * Fix group name. * Updates. * Revert configuration.yaml. * Add new line. * Fixes. * Updates. * Fix tests. * Ignore soft reset extension.
83 lines
2.7 KiB
JavaScript
83 lines
2.7 KiB
JavaScript
const settings = require('../util/settings');
|
|
const logger = require('../util/logger');
|
|
const zigbeeHerdsmanConverters = require('zigbee-herdsman-converters');
|
|
|
|
class DeviceConfigure {
|
|
constructor(zigbee, mqtt, state, publishEntityState) {
|
|
this.zigbee = zigbee;
|
|
this.configuring = new Set();
|
|
this.attempts = {};
|
|
}
|
|
|
|
shouldConfigure(device, mappedDevice) {
|
|
if (!device) {
|
|
return false;
|
|
}
|
|
|
|
if (device.meta.hasOwnProperty('configured') && device.meta.configured === mappedDevice.meta.configureKey) {
|
|
return false;
|
|
}
|
|
|
|
if (!mappedDevice || !mappedDevice.configure) {
|
|
return false;
|
|
}
|
|
|
|
if (device.interviewing || !device.interviewCompleted) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
async onZigbeeStarted() {
|
|
this.coordinatorEndpoint = (await this.zigbee.getDevice({type: 'Coordinator'})).endpoints[0];
|
|
|
|
const devices = await this.zigbee.getClients();
|
|
for (const device of devices) {
|
|
const mappedDevice = zigbeeHerdsmanConverters.findByZigbeeModel(device.modelID);
|
|
const settingsDevice = settings.getDevice(device.ieeeAddr);
|
|
if (this.shouldConfigure(device, mappedDevice)) {
|
|
await this.configure(device, mappedDevice, settingsDevice);
|
|
}
|
|
}
|
|
}
|
|
|
|
onZigbeeEvent(type, data, mappedDevice, settingsDevice) {
|
|
const device = data.device;
|
|
if (this.shouldConfigure(device, mappedDevice)) {
|
|
this.configure(device, mappedDevice, settingsDevice);
|
|
}
|
|
}
|
|
|
|
async configure(device, mappedDevice, settingsDevice) {
|
|
if (this.configuring.has(device.ieeeAddr) || this.attempts[device.ieeeAddr] >= 3) {
|
|
return false;
|
|
}
|
|
|
|
this.configuring.add(device.ieeeAddr);
|
|
|
|
if (!this.attempts.hasOwnProperty(device.ieeeAddr)) {
|
|
this.attempts[device.ieeeAddr] = 0;
|
|
}
|
|
|
|
logger.info(`Configuring '${settingsDevice.friendlyName}'`);
|
|
try {
|
|
await mappedDevice.configure(device, this.coordinatorEndpoint);
|
|
logger.info(`Succesfully configured '${settingsDevice.friendlyName}'`);
|
|
// eslint-disable-next-line
|
|
device.meta.configured = mappedDevice.meta.configureKey;
|
|
await device.save();
|
|
} catch (error) {
|
|
logger.error(
|
|
`Failed to configure '${settingsDevice.friendlyName}', ` +
|
|
`attempt ${this.attempts[device.ieeeAddr] + 1} (${error})`
|
|
);
|
|
this.attempts[device.ieeeAddr]++;
|
|
}
|
|
|
|
this.configuring.delete(device.ieeeAddr);
|
|
}
|
|
}
|
|
|
|
module.exports = DeviceConfigure;
|