MeshCentral/public/scripts/meshcentral.js

52 lines
2.0 KiB
JavaScript
Raw Normal View History

2017-08-28 12:27:45 -04:00
/**
* @fileoverview Meshcentral.js
* @author Ylian Saint-Hilaire
* @version v0.0.1
*/
var MeshServerCreateControl = function (domain) {
var obj = {};
obj.State = 0;
obj.connectstate = 0;
2018-07-13 22:18:43 -04:00
obj.pingTimer = null;
2017-08-28 12:27:45 -04:00
obj.xxStateChange = function (newstate, errCode) {
2017-08-28 12:27:45 -04:00
if (obj.State == newstate) return;
var previousState = obj.State;
2017-08-28 12:27:45 -04:00
obj.State = newstate;
if (obj.onStateChanged) obj.onStateChanged(obj, obj.State, previousState, errCode);
2017-08-28 12:27:45 -04:00
}
obj.Start = function () {
if (obj.connectstate != 0) return;
2017-08-28 12:27:45 -04:00
obj.connectstate = 0;
obj.socket = new WebSocket(window.location.protocol.replace("http", "ws") + "//" + window.location.host + domain + "control.ashx");
obj.socket.onopen = function (e) { obj.connectstate = 1; }
2017-08-28 12:27:45 -04:00
obj.socket.onmessage = obj.xxOnMessage;
obj.socket.onclose = function(e) { obj.Stop(e.code); }
obj.xxStateChange(1, 0);
2018-07-13 22:18:43 -04:00
if (obj.pingTimer != null) { clearInterval(obj.pingTimer); }
obj.pingTimer = setInterval(function () { obj.send({ action: 'ping' }); }, 29000); // Ping the server every 29 seconds, stops corporate proxies from disconnecting.
2017-08-28 12:27:45 -04:00
}
obj.Stop = function (errCode) {
2017-08-28 12:27:45 -04:00
obj.connectstate = 0;
if (obj.socket) { obj.socket.close(); delete obj.socket; }
2018-07-13 22:18:43 -04:00
if (obj.pingTimer != null) { clearInterval(obj.pingTimer); obj.pingTimer = null; }
obj.xxStateChange(0, errCode);
2017-08-28 12:27:45 -04:00
}
obj.xxOnMessage = function (e) {
if (obj.State == 1) { obj.xxStateChange(2); }
//console.log('xxOnMessage', e.data);
2017-08-28 12:27:45 -04:00
var message;
try { message = JSON.parse(e.data); } catch (e) { return; }
if ((typeof message != 'object') || (message.action == 'pong')) { return; }
2017-08-28 12:27:45 -04:00
if (obj.onMessage) obj.onMessage(obj, message);
};
obj.send = function (x) { if (obj.socket != null && obj.connectstate == 1) { obj.socket.send(JSON.stringify(x)); } }
2017-08-28 12:27:45 -04:00
return obj;
}