-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinitialize.js
97 lines (89 loc) · 2.19 KB
/
initialize.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
//import createDeepstream from 'deepstream.io-client-js'
const ds = require( 'deepstream.io-client-js' );
const dsCredentials = require('./dsCredentials');
const client = ds(dsCredentials.url);
client.on('connectionStateChanged', state => {
console.info(state)
})
client.login(dsCredentials.authParams, (success, data) => {
if (success) {
console.log('login success');
let sysRecord = client.record.getRecord('test/system');
sysRecord.whenReady(record => {
const recordData = {
display: [
'UPDATED',
''
],
status: {
state: 'Offline',
ready: false
},
alerts: {
openZones: 1,
troubleZones: 1,
bypassZones: 1
}
};
console.info(`writing record: ${JSON.stringify(recordData)}`);
record.set(recordData);
})
let zonesRecord = client.record.getRecord('test/zones');
zonesRecord.whenReady(record => {
const recordData = {
Z01: {
name: 'Kitchen Entry Door',
status: 'Ready',
bypass: false
},
Z02: {
name: 'Kitchen Windows',
status: 'Ready',
bypass: false
},
Z03: {
name: 'Family Entry Door',
status: 'Trouble',
bypass: false
},
Z04: {
name: 'Family Windows',
status: 'Trouble',
bypass: false
},
Z05: {
name: 'Family Motion',
status: 'Ready',
bypass: false
},
Z06: {
name: 'Dining windows',
status: 'Ready',
bypass: false
},
Z07: {
name: 'Garage Door 1',
status: 'Ready',
bypass: false
},
Z08: {
name: 'Garage Door 2',
status: 'Ready',
bypass: false
},
Z21: {
name: 'Family Smoke',
status: 'Ready',
bypass: false
},
Z22: {
name: '2nd Floor Smoke',
status: 'Ready',
bypass: false
},
};
console.info(`writing record: ${JSON.stringify(recordData)}`);
record.set(recordData);
});
}
});