-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ws.js
94 lines (78 loc) · 2.24 KB
/
_ws.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
var W3CWebSocket = require('websocket').w3cwebsocket;
var client = null;
var pongArrived = true;
var fs = require('fs');
var ini = require('ini');
var config = ini.parse(fs.readFileSync('./conf.ini', 'utf-8'))
var THIS = {"log": function log (str, localOnly) {
console.log(str);
if (!localOnly && client != null && client.readyState === client.OPEN) {
client.send("log "+str);
}
}};
function reconnect() {
try {
console.log('try reconnecting...');
client = new W3CWebSocket(config.remote.url, "watering", {"keepAlive":{"enable":true, "initialDelay":10000}} );
client.onerror = function() {
console.log('Connection Error');
};
client.onopen = function() {
console.log('WebSocket Client Connected');
function register() {
if (client != null && client.readyState === client.OPEN) {
client.send('register ' + config.uname);
setTimeout(sendPing, config.remote.pingRate);
} else {
setTimeout(register, 5000);
}
}
register();
};
client.onclose = function() {
console.log('watering Client Closed');
client = null;
setTimeout(reconnect, config.remote.reconnectRate);
};
client.onmessage = function(e) {
if (typeof e.data === 'string') {
var msg = e.data;
if (msg == 'ping') {
THIS.log('pong');
} else if (msg == 'pong') {
pongArrived = true;
console.log("pong arived" + (client == null?"client null" :"" )+ (client != null && client.readyState == client.OPEN?"clientOpened":client.readyState));
} else if (msg.startsWith('update ')) {
THIS.log ('update command recieved');
var newDb = msg.substring(7);
THIS.main.emit('saveDB', newDb);
}
}
};
} catch (e) {
client = null;
THIS.log("Disconnected:"+e.message);
setTimeout(reconnect, config.remote.reconnectRate);
client = null;
}
}
function sendPing() {
return;
if (client != null) {
if (!pongArrived) {
//connection is lost
pongArrived = true;
client.close();
//client = null;
reconnect();
}
else {
pongArrived = false;
client.send("ping");
setTimeout(sendPing, config.remote.pingRate);
console.log("ping");
}
}
}
reconnect();
module.exports = THIS;