-
Notifications
You must be signed in to change notification settings - Fork 1
/
motionsensor.js
332 lines (280 loc) · 13.1 KB
/
motionsensor.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
/**
* NodeRED HomeKit MQTT
* Copyright (C) 2017 Michael Jacobsen / Marius Schmeding.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
module.exports = function (RED) {
'use strict'
var API = require('./lib/api.js')(RED)
var HapNodeJS = require('hap-nodejs')
var HK = require('./lib/common_functions.js')
var Accessory = HapNodeJS.Accessory
var Service = HapNodeJS.Service
var Characteristic = HapNodeJS.Characteristic
var uuid = HapNodeJS.uuid
function HAPMotionSensorNode(config) {
RED.nodes.createNode(this, config)
// MQTT properties
this.qos = 0
this.retain = false
this.nodename = config.nodename
this.dataId = config.dataid
this.wdt = -1
this.wdtStatus = -1
this.alive = null
this.lastVal = {}
this.rpccnt = 1
if (config.wdt > 0) {
this.wdt = config.wdt * 1000
}
this.client = config.client
this.clientConn = RED.nodes.getNode(this.client)
if (!this.clientConn) {
this.error(RED._("msgbus-v2.errors.missing-config"))
return
}
// HomeKit properties
this.name = config.name
this.serviceName = config.serviceName
this.outletinuse = config.outletinuse
this.configNode = RED.nodes.getNode(config.accessory)
// generate UUID from node id
var subtypeUUID = uuid.generate(this.id)
// add service
var accessory = this.configNode.accessory
var service = null
try {
// this might fail if node is being restarted (!)
service = accessory.addService(Service[this.serviceName], this.name, subtypeUUID)
} catch(err) {
RED.log.debug("HAPMotionSensorNode(): service already exists")
service = accessory.getService(subtypeUUID)
}
var node = this
// the pinCode should be shown to the user until interaction with iOS client starts
node.status({fill: 'yellow', shape: 'ring', text: node.configNode.pinCode})
if (this.clientConn) {
node.clientConn.register(this)
node.clientConn.startAliveTimer(node)
} else {
RED.log.error("HAPMotionSensorNode(): no clientConn")
}
// which characteristics are supported?
var supported = { read: [], write: []}
var allCharacteristics = service.characteristics.concat(service.optionalCharacteristics)
allCharacteristics.map(function (characteristic, index) {
var cKey = characteristic.displayName.replace(/ /g, '')
if (characteristic.props.perms.indexOf('pw') > -1) {
supported.read.push(cKey)
}
if ((characteristic.props.perms.indexOf('pr') + characteristic.props.perms.indexOf('ev')) > -2) {
supported.write.push(cKey)
}
})
//
// set defaults
//
service.setCharacteristic(Characteristic["StatusActive"], node.statusactive)
if (node.statusfault > -1) {
service.setCharacteristic(Characteristic["StatusFault"], node.statusfault)
}
if (node.statustampered > -1) {
service.setCharacteristic(Characteristic["StatusTampered"], node.statustampered)
}
if (node.statuslowbattery > -1) {
service.setCharacteristic(Characteristic["StatusLowBattery"], node.statuslowbattery)
}
//
// incoming regular updates from device
//
this.clientConn.updateSubscribe(this.nodename, this.dataId, this.qos, function(topic, payload, packet) {
RED.log.debug("HAPMotionSensorNode(updateSubscribe): payload = " + payload.toString())
node.clientConn.startAliveTimer(node)
try {
var obj = JSON.parse(payload)
if (obj.hasOwnProperty('motiondetected')) {
service.setCharacteristic(Characteristic["MotionDetected"], obj.motiondetected)
RED.log.debug("HAPMotionSensorNode(updateSubscribe): motiondetected = " + obj.motiondetected)
}
if (obj.hasOwnProperty('statusactive')) {
service.setCharacteristic(Characteristic["StatusActive"], obj.statusactive)
RED.log.debug("HAPMotionSensorNode(updateSubscribe): statusactive = " + obj.statusactive)
}
if (obj.hasOwnProperty('statusfault')) {
service.setCharacteristic(Characteristic["StatusFault"], obj.statusfault)
RED.log.debug("HAPMotionSensorNode(updateSubscribe): statusfault = " + obj.statusfault)
}
if (obj.hasOwnProperty('statustampered')) {
service.setCharacteristic(Characteristic["StatusTampered"], obj.statustampered)
RED.log.debug("HAPMotionSensorNode(updateSubscribe): statustampered = " + obj.statustampered)
}
if (obj.hasOwnProperty('statuslowbattery')) {
service.setCharacteristic(Characteristic["StatusLowBattery"], obj.statuslowbattery)
RED.log.debug("HAPMotionSensorNode(updateSubscribe): statuslowbattery = " + obj.statuslowbattery)
}
} catch(err) {
RED.log.error("malformed object: " + payload.toString())
}
}, this.id)
//
// emit message when value changes (sent from HomeKit)
//
service.on('characteristic-change', function (info) {
var key = info.characteristic.displayName.replace(/ /g, '')
RED.log.debug("HAPMotionSensorNode(characteristic-change): key = " + key + ", value = " + info.newValue)
node.status({fill: 'yellow', shape: 'dot', text: key + ': ' + info.newValue})
setTimeout(function () { node.status({}) }, 3000)
var msg = { payload: {}}
msg.manufacturer = node.configNode.manufacturer
msg.serialno = node.configNode.serialNo
msg.model = node.configNode.model
msg.name = node.configNode.name
msg.format = info.characteristic.props.format
msg.payload = HK.FormatValue(info.characteristic.props.format, info.newValue)
msg.topic = HK.CreateOutTopic(node.nodename, node.dataId, key)
if (msg.payload == null) {
RED.log.warn("Unable to format value")
return
}
if (msg.format == Characteristic.Formats.INT) {
msg.format = "uint8"
}
var l = node.clientConn.timeNowString()
var msgLog = {
topic: "log",
payload: l + " > " + node.nodename + ", " + node.dataId + ": " + key + " = " + msg.payload
}
//
// send message on the right output
//
switch (key) {
case "MotionDetected":
RED.log.debug("HAPMotionSensorNode(characteristic-change): MotionDetected")
break
case "StatusActive":
RED.log.debug("HAPMotionSensorNode(characteristic-change): StatusActive")
break
case "StatusFault":
RED.log.debug("HAPMotionSensorNode(characteristic-change): StatusFault")
break
case "StatusTampered":
RED.log.debug("HAPMotionSensorNode(characteristic-change): StatusTampered")
break
case "StatusLowBattery":
RED.log.debug("HAPMotionSensorNode(characteristic-change): StatusLowBattery")
break
default:
RED.log.warn("Unknown characteristics '" + key + "'")
return
}
node.send([msg, msgLog, null])
})
//
// RPC replies coming from MQTT
//
this.rpcReply = function(reply) {
RED.log.debug("HAPMotionSensorNode(rpcReply)" + JSON.stringify(reply))
node.clientConn.startAliveTimer(node)
}
//
// device online/offline transitions
//
this.online = function(status) {
RED.log.debug("HAPMotionSensorNode(online): " + status)
if (status == false) {
service.setCharacteristic(Characteristic["StatusFault"], 1)
}
}
//
// respond to inputs from NodeRED
//
this.on('input', function (msg) {
var characteristic
var val
if (!msg.hasOwnProperty('topic')) {
RED.log.warn('Invalid message (topic missing)')
return
} else if (!msg.hasOwnProperty('payload')) {
RED.log.warn('Invalid message (payload missing)')
return
} else {
//
// deal with the msg.topic
//
if (msg.topic.toUpperCase() == "MOTIONDETECTED") {
characteristic = "MotionDetected"
} else if (msg.topic.toUpperCase() == "STATUSACTIVE") {
characteristic = "StatusActive"
} else if (msg.topic.toUpperCase() == "STATUSFAULT") {
characteristic = "StatusFault"
} else if (msg.topic.toUpperCase() == "STATUSTAMPERED") {
characteristic = "StatusTampered"
} else if (msg.topic.toUpperCase() == "STATUSLOWBATTERY") {
characteristic = "StatusLowBattery"
} else {
if (msg.payload.hasOwnProperty('motiondetected')) {
RED.log.debug("HAPMotionSensorNode(input): motiondetected")
service.setCharacteristic(Characteristic["MotionDetected"], msg.payload.motiondetected)
}
if (msg.payload.hasOwnProperty('statusactive')) {
RED.log.debug("HAPMotionSensorNode(input): statusactive")
service.setCharacteristic(Characteristic["StatusActive"], msg.payload.statusactive)
}
if (msg.payload.hasOwnProperty('statusfault')) {
RED.log.debug("HAPMotionSensorNode(input): statusfault")
service.setCharacteristic(Characteristic["StatusFault"], msg.payload.statusfault)
}
if (msg.payload.hasOwnProperty('statustampered')) {
RED.log.debug("HAPMotionSensorNode(input): statustampered")
service.setCharacteristic(Characteristic["StatusTampered"], msg.payload.statustampered)
}
if (msg.payload.hasOwnProperty('statuslowbattery')) {
RED.log.debug("HAPMotionSensorNode(input): statuslowbattery")
service.setCharacteristic(Characteristic["StatusLowBattery"], msg.payload.statuslowbattery)
}
return
}
//
// deal with the msg.payload
//
val = HK.FormatValue(service.getCharacteristic(Characteristic[characteristic]).props.format, msg.payload)
if (val == null) {
RED.log.warn("Unable to format value")
return
}
}
if (supported.write.indexOf(characteristic) < 0) {
RED.log.warn("Characteristic " + characteristic + " cannot be written to")
} else {
// send to HomeKit
if (service.getCharacteristic(Characteristic[characteristic]).value != val) {
service.setCharacteristic(Characteristic[characteristic], val)
}
}
})
this.on('close', function(removed, done) {
accessory.removeService(service)
if (node.clientConn) {
node.clientConn.deregister(node, done)
}
if (removed) {
// This node has been deleted
} else {
// This node is being restarted
}
})
}
RED.nodes.registerType('homekit-motionsensor-v2', HAPMotionSensorNode)
}