-
Notifications
You must be signed in to change notification settings - Fork 0
/
homekit-characteristic-set.js
45 lines (42 loc) · 1.6 KB
/
homekit-characteristic-set.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const { HttpClient, IPDiscovery } = require('hap-controller');
const { getNameByUUID } = require('./homekit-data.js');
module.exports = function (RED) {
function AccessoriesGetNode(config) {
RED.nodes.createNode(this, config);
var node = this;
node.on('input', async function (msg) {
let service = msg.payload.HomeKitAccessory;
let pairingData = msg.payload.pairingData.pairingData;
const client = new HttpClient(service.id, service.address, service.port, pairingData, {
usePersistentConnections: true,
});
try {
let acc = await client.getAccessories();
acc = subsatuteData(acc);
console.log(JSON.stringify(acc,null,2));
msg.payload.data = acc
await node.send(msg);
} catch (e) {
console.error(`${service.name}:`, e);
}
client.close();
});
}
RED.nodes.registerType("homekit-accessories-get", AccessoriesGetNode);
}
function subsatuteData(data) {
// console.log(JSON.stringify(data, null, 2))
data.accessories.forEach(accessories => {
accessories.services.forEach(service => {
if (getNameByUUID(service.type)) {
service.type = getNameByUUID(service.type)
}
service.characteristics.forEach(characteristic => {
if (getNameByUUID(characteristic.type)) {
characteristic.type = getNameByUUID(characteristic.type)
}
});
});
});
return data;
}