-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathBridgeConfiguration.js
272 lines (227 loc) · 6.24 KB
/
BridgeConfiguration.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
'use strict';
const BridgeObject = require('./BridgeObject')
, types = require('../types')
;
const ATTRIBUTES = [
// Modifiable Attributes
types.uint16({name: 'proxyport'}),
types.string({name: 'proxyaddress', minLength: 0, maxLength: 40}),
types.string({name: 'name', minLength: 4, maxLength: 16}),
types.boolean({name: 'linkbutton'}), // Only works on the portal not in local network
types.string({name: 'ipaddress'}),
types.string({name: 'netmask'}),
types.string({name: 'gateway'}),
types.boolean({name: 'dhcp'}),
types.string({name: 'timezone'}),
types.boolean({name: 'touchlink'}),
types.choice({name: 'zigbeechannel', validValues: [11, 15, 20, 25]}),
types.string({name: 'UTC'}),
// R/O attributes
types.string({name: 'localtime'}),
types.object({
name: 'swupdate2',
types: [
types.boolean({name: 'checkforupdate'}),
types.string({name: 'lastchange'}), // This is an iso time format
types.choice({
name: 'state',
validValues: [
'unknown',
'noupdates',
'transferring',
'anyreadytoinstall',
'allreadtoinstall',
'installing',
]
}),
types.object({
name: 'autoinstall',
types: [
types.string({name: 'updatetime'}),
types.boolean({name: 'on'}),
]
}),
types.object({
name: 'bridge',
types: [
types.string({name: 'state'}),
types.string({name: 'lastinstall'}),
]
}),
]
}),
types.object({name: 'whitelist'}),
types.boolean({name: 'portalservices'}),
types.string({name: 'portalconnection'}),
types.object({
name: 'portalstate',
types: [
types.boolean({name: 'signedon'}),
types.boolean({name: 'incoming'}),
types.boolean({name: 'outgoing'}),
types.string({name: 'communication'}),
]
}),
types.object({
name: 'internetservices',
types: [
types.choice({name: 'internet', validValues: ['connected', 'disconnected']}),
types.choice({name: 'remoteaccess', validValues: ['connected', 'disconnected']}),
types.choice({name: 'time', validValues: ['connected', 'disconnected']}),
types.choice({name: 'swupdate', validValues: ['connected', 'disconnected']}),
]
}),
types.object({
name: 'backup',
types: [
types.choice({
name: 'status',
validValues: ['idle', 'startmigration', 'fileready_disabled', 'prepare_restore', 'restoring']
}),
types.uint8({name: 'errorcode'}),
]
}),
types.string({name: 'apiversion'}),
types.string({name: 'swversion'}),
types.string({name: 'mac'}),
types.string({name: 'modelid'}),
types.string({name: 'bridgeid'}),
types.boolean({name: 'factorynew'}),
types.string({name: 'replacesbridgeid'}),
types.string({name: 'datastoreversion'}),
types.string({name: 'starterkitid'}),
];
/**
* @typedef { import('../types/Type') } Type
* @type {BridgeObjectWithId}
*/
module.exports = class BridgeConfiguration extends BridgeObject {
constructor() {
super(ATTRIBUTES);
}
set proxyport(value) {
return this.setAttributeValue('proxyport', value);
}
set proxyaddress(value) {
return this.setAttributeValue('proxyaddress', value);
}
set name(value) {
return this.setAttributeValue('name', value);
}
set linkbutton(value) {
return this.setAttributeValue('linkbutton', value);
}
set ipaddress(value) {
return this.setAttributeValue('ipaddress', value);
}
set netmask(value) {
return this.setAttributeValue('netmask', value);
}
set gateway(value) {
return this.setAttributeValue('gateway', value);
}
set dhcp(value) {
return this.setAttributeValue('dhcp', value);
}
set timezone(value) {
return this.setAttributeValue('timezone', value);
}
set touchlink(value) {
return this.setAttributeValue('touchlink', value);
}
set zigbeechannel(value) {
return this.setAttributeValue('zigbeechannel', value);
}
/**
* Sets the time in UTC on the bridge, but only if there is internet connection (as it will use the internet for the time)
* @param value An iso time format
* @returns {BridgeObject}
*/
set UTC(value) {
return this.setAttributeValue('UTC', value);
}
get portalservices() {
return this.getAttributeValue('portalservices');
}
get portalconnection() {
return this.getAttributeValue('portalconnection');
}
get portalstate() {
return this.getAttributeValue('portalstate');
}
get localtime() {
return this.getAttributeValue('localtime');
}
get proxyport() {
return this.getAttributeValue('proxyport');
}
get proxyaddress() {
return this.getAttributeValue('proxyaddress');
}
get name() {
return this.getAttributeValue('name');
}
get linkbutton() {
return this.getAttributeValue('linkbutton');
}
get ipaddress() {
return this.getAttributeValue('ipaddress');
}
get netmask() {
return this.getAttributeValue('netmask');
}
get gateway() {
return this.getAttributeValue('gateway');
}
get dhcp() {
return this.getAttributeValue('dhcp');
}
get timezone() {
return this.getAttributeValue('timezone');
}
get zigbeechannel() {
return this.getAttributeValue('zigbeechannel');
}
get UTC() {
return this.getAttributeValue('UTC');
}
get swupdate2() {
return this.getAttributeValue('swupdate2');
}
get whitelist() {
return this.getAttributeValue('whitelist');
}
get internetservices() {
return this.getAttributeValue('internetservices');
}
get backup() {
return this.getAttributeValue('backup');
}
get apiversion() {
return this.getAttributeValue('apiversion');
}
get swversion() {
return this.getAttributeValue('swversion');
}
get mac() {
return this.getAttributeValue('mac');
}
get modelid() {
return this.getAttributeValue('modelid');
}
get bridgeid() {
return this.getAttributeValue('bridgeid');
}
get factorynew() {
return this.getAttributeValue('factorynew');
}
get replacesbridgeid() {
return this.getAttributeValue('replacesbridgeid');
}
get datastoreversion() {
return this.getAttributeValue('datastoreversion');
}
get starterkitid() {
return this.getAttributeValue('starterkitid');
}
};