-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomeKit.class.js
157 lines (127 loc) · 4.45 KB
/
HomeKit.class.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
const EventEmitter = require('events');
const HomeKit = require('./homekit');
const storage = require('node-persist');
storage.initSync({
// dir: path.join(__dirname, '../persist/storage'),
});
const START_PORT = 51900;
module.exports = class HomeKitClass extends EventEmitter {
/**
* SmartNodeHomeKit contructor
*
* @author Julian Kern <[email protected]>
*
* @param {object} data holds the data needed to init the plugin
*/
constructor({
id,
deviceName,
model,
service,
serial = 'A1000001',
manufacturer = 'juliankern.com',
}) {
super();
this.options = {
id,
model,
serial
};
console.log('homekit device inited', deviceName, this.options);
const uuid = HomeKit.uuid.generate(`homekit:${model}:${deviceName}:${serial}`);
this.accessory = new HomeKit.Accessory(deviceName, uuid);
this.accessory.getService(HomeKit.Service.AccessoryInformation)
.setCharacteristic(HomeKit.Characteristic.Manufacturer, manufacturer)
.setCharacteristic(HomeKit.Characteristic.Model, model)
.setCharacteristic(HomeKit.Characteristic.SerialNumber, serial);
this.service = service;
this.accessory.addService(HomeKit.Service[service], deviceName);
this.deviceName = deviceName;
this.Characteristic = HomeKit.Characteristic;
this.timer = {};
}
onIdentify(callback) {
this.accessory.on('identify', callback);
}
_on(method, onCharacteristic, classCallback) {
console.log('add listener for', method, onCharacteristic)
this.accessory.getService(HomeKit.Service[this.service])
.getCharacteristic(HomeKit.Characteristic[onCharacteristic])
// .on(method, callback);
.on(method, function (value, callback) {
if (!callback) {
callback = value;
}
classCallback(value, callback);
});
}
onBoth(characteristic, getCallback, setCallback) {
this._on('get', characteristic, getCallback);
this._on('set', characteristic, setCallback);
}
set(characteristic, value) {
this.accessory.getService(HomeKit.Service[this.service])
.setCharacteristic(HomeKit.Characteristic[characteristic], value);
}
publish(properties) {
if (!properties) {
if (!storage.getItemSync(`${this.options.id}.${this.options.model}.${this.options.serial}`)) {
properties = generateHomekitProperties(this.options.port);
} else {
properties = storage.getItemSync(`${this.options.id}.${this.options.model}.${this.options.serial}`);
}
}
this.properties = properties;
findPort(START_PORT, (port) => {
this.properties.port = port;
console.log('Publishing HomeKit device with properties', this.deviceName, this.properties);
this.accessory.on('identify', (paired, callback) => {
console.log('identify!', paired);
if (paired) storage.setItemSync(`${this.options.id}.${this.options.model}.${this.options.serial}`, this.properties);
callback(null, true);
});
this.accessory.publish(this.properties);
});
}
destroy() {
this.accessory.destroy();
}
static get Characteristic() {
return HomeKit.Characteristic;
}
static get EVENTS() {
return {
UPDATE_PIXEL: 'updatePixel',
};
}
};
function _randomLetterAtoF() {
return ['A', 'B', 'C', 'D', 'E', 'F'][randomInt(0, 5)];
}
function findPort (start, cb) {
var port = start
start += 1
var server = require('http').createServer()
server.listen(port, function (err) {
server.once('close', function () {
cb(port)
})
server.close()
})
server.on('error', function (err) {
findPort(start, cb)
})
}
function generateHomekitProperties() {
let pincode = '131-45-154';
let username = '{l}{l}:{i}{i}:{i}{l}:{l}{i}:{l}{l}:{l}{i}'
.replace(/{i}/g, () => { return randomInt(1,6); })
.replace(/{l}/g, () => { return _randomLetterAtoF(); });
return {
username,
pincode
}
}
function randomInt(min, max) {
return Math.floor(Math.random() * ((max - min) + 1)) + min;
}