51 lines
1.7 KiB
JavaScript
51 lines
1.7 KiB
JavaScript
module.exports = (RED) => {
|
|
function getOnlyModelsValue(input) {
|
|
var cleanOnlyModels = [];
|
|
input.forEach((value) => {
|
|
cleanOnlyModels = cleanOnlyModels.concat(value.split(','));
|
|
});
|
|
return cleanOnlyModels;
|
|
}
|
|
|
|
function XiaomiAllNode(config) {
|
|
RED.nodes.createNode(this, config);
|
|
this.gateway = RED.nodes.getNode(config.gateway);
|
|
this.onlyModels = getOnlyModelsValue(config.onlyModels || []);
|
|
this.excludedSids = config.excludedSids;
|
|
|
|
|
|
this.isDeviceValid = (device) => {
|
|
if((!this.onlyModels || this.onlyModels.length == 0) && (!this.excludedSids || this.excludedSids.length == 0)) {
|
|
return true;
|
|
}
|
|
// Is excluded
|
|
if((this.excludedSids && this.excludedSids.length != 0) && this.excludedSids.indexOf(device.sid) >= 0) {
|
|
return false;
|
|
}
|
|
if((this.onlyModels && this.onlyModels.length != 0) && this.onlyModels.indexOf(device.model) >= 0) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
if (this.gateway) {
|
|
this.on('input', (msg) => {
|
|
// Filter input
|
|
if(msg.payload && msg.payload.model && msg.payload.sid) {
|
|
if(!this.isDeviceValid(msg.payload)) {
|
|
msg = null;
|
|
}
|
|
}
|
|
// Prepare for request
|
|
else {
|
|
msg.payload = this.gateway.deviceList.filter((device) => this.isDeviceValid(device));
|
|
}
|
|
this.send(msg);
|
|
});
|
|
}
|
|
}
|
|
|
|
RED.nodes.registerType("xiaomi-all", XiaomiAllNode);
|
|
}
|