-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
panic-buttons.ts
124 lines (112 loc) · 3.76 KB
/
panic-buttons.ts
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
import type { RingDevice, RingDeviceData, AlarmState } from 'ring-client-api'
import { hap } from './hap.ts'
import type { RingPlatformConfig } from './config.ts'
import { BaseDataAccessory } from './base-data-accessory.ts'
import type { PlatformAccessory } from 'homebridge'
import { logInfo } from 'ring-client-api/util'
const burglarStates: AlarmState[] = [
'burglar-alarm',
'user-verified-burglar-alarm',
'burglar-accelerated-alarm',
],
fireStates: AlarmState[] = [
'fire-alarm',
'user-verified-co-or-fire-alarm',
'fire-accelerated-alarm',
]
function matchesAnyAlarmState(
{ alarmInfo }: RingDeviceData,
targetStates: AlarmState[],
) {
return Boolean(alarmInfo && targetStates.includes(alarmInfo.state))
}
const burglarAlarmName = 'Burglar Alarm',
fireAlarmName = 'Fire Alarm'
export class PanicButtons extends BaseDataAccessory<RingDevice> {
constructor(
public readonly device: RingDevice,
public readonly accessory: PlatformAccessory,
public readonly config: RingPlatformConfig,
) {
super()
const { Characteristic, Service } = hap,
locationName = device.location.name
this.registerCharacteristic({
characteristicType: Characteristic.On,
serviceType: Service.Switch,
serviceSubType: 'Burglar',
name: burglarAlarmName,
getValue: (data) => matchesAnyAlarmState(data, burglarStates),
setValue: (on) => {
if (on) {
logInfo(`Burglar Alarm activated for ${locationName}`)
return this.device.location.triggerBurglarAlarm()
}
logInfo(`Burglar Alarm turned off for ${locationName}`)
return this.device.location.setAlarmMode('none')
},
})
this.registerCharacteristic({
characteristicType: Characteristic.Name,
serviceType: Service.Switch,
serviceSubType: 'Burglar',
name: burglarAlarmName,
getValue: () => burglarAlarmName,
})
this.registerCharacteristic({
characteristicType: Characteristic.ConfiguredName,
serviceType: Service.Switch,
serviceSubType: 'Burglar',
name: burglarAlarmName,
getValue: () => burglarAlarmName,
})
this.registerCharacteristic({
characteristicType: Characteristic.On,
serviceType: Service.Switch,
serviceSubType: 'Fire',
name: fireAlarmName,
getValue: (data) => matchesAnyAlarmState(data, fireStates),
setValue: (on) => {
if (on) {
logInfo(`Fire Alarm activated for ${locationName}`)
return this.device.location.triggerFireAlarm()
}
logInfo(`Fire Alarm turned off for ${locationName}`)
return this.device.location.setAlarmMode('none')
},
})
this.registerCharacteristic({
characteristicType: Characteristic.Name,
serviceType: Service.Switch,
serviceSubType: 'Fire',
name: fireAlarmName,
getValue: () => fireAlarmName,
})
this.registerCharacteristic({
characteristicType: Characteristic.ConfiguredName,
serviceType: Service.Switch,
serviceSubType: 'Fire',
name: fireAlarmName,
getValue: () => fireAlarmName,
})
}
initBase() {
const { Characteristic, Service } = hap
this.registerCharacteristic({
characteristicType: Characteristic.Manufacturer,
serviceType: Service.AccessoryInformation,
getValue: (data) => data.manufacturerName || 'Ring',
})
this.registerCharacteristic({
characteristicType: Characteristic.Model,
serviceType: Service.AccessoryInformation,
getValue: () => 'Panic Buttons for ' + this.device.location.name,
})
this.registerCharacteristic({
characteristicType: Characteristic.SerialNumber,
serviceType: Service.AccessoryInformation,
getValue: () => 'None',
})
super.initBase()
}
}