2014-05-07 21:47:25 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-05-07 21:47:25 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
var ws = require("ws");
|
2015-11-12 10:03:03 +01:00
|
|
|
var log;
|
2014-05-07 21:47:25 +02:00
|
|
|
|
|
|
|
var server;
|
|
|
|
var settings;
|
|
|
|
|
|
|
|
var wsServer;
|
2014-11-12 14:21:59 +01:00
|
|
|
var pendingConnections = [];
|
2014-05-07 21:47:25 +02:00
|
|
|
var activeConnections = [];
|
|
|
|
|
2014-05-08 15:15:54 +02:00
|
|
|
var retained = {};
|
|
|
|
|
2014-05-07 21:47:25 +02:00
|
|
|
var heartbeatTimer;
|
|
|
|
var lastSentTime;
|
|
|
|
|
2015-11-12 10:03:03 +01:00
|
|
|
function handleStatus(event) {
|
|
|
|
publish("status/"+event.id,event.status,true);
|
|
|
|
}
|
2016-12-05 14:24:24 +01:00
|
|
|
function handleRuntimeEvent(event) {
|
2017-07-08 18:27:45 +02:00
|
|
|
publish("notification/"+event.id,event.payload||{},event.retain);
|
2016-12-05 14:24:24 +01:00
|
|
|
}
|
2015-11-12 10:03:03 +01:00
|
|
|
function init(_server,runtime) {
|
2014-05-07 21:47:25 +02:00
|
|
|
server = _server;
|
2015-11-12 10:03:03 +01:00
|
|
|
settings = runtime.settings;
|
|
|
|
log = runtime.log;
|
|
|
|
|
|
|
|
runtime.events.removeListener("node-status",handleStatus);
|
|
|
|
runtime.events.on("node-status",handleStatus);
|
2016-12-05 14:24:24 +01:00
|
|
|
|
|
|
|
runtime.events.removeListener("runtime-event",handleRuntimeEvent);
|
|
|
|
runtime.events.on("runtime-event",handleRuntimeEvent);
|
2014-05-07 21:47:25 +02:00
|
|
|
}
|
|
|
|
|
2014-12-10 15:16:07 +01:00
|
|
|
function start() {
|
2015-11-12 10:03:03 +01:00
|
|
|
var Tokens = require("./auth/tokens");
|
|
|
|
var Users = require("./auth/users");
|
|
|
|
var Permissions = require("./auth/permissions");
|
2014-09-22 15:33:26 +02:00
|
|
|
if (!settings.disableEditor) {
|
2015-01-28 23:41:13 +01:00
|
|
|
Users.default().then(function(anonymousUser) {
|
2014-12-10 15:16:07 +01:00
|
|
|
var webSocketKeepAliveTime = settings.webSocketKeepAliveTime || 15000;
|
|
|
|
var path = settings.httpAdminRoot || "/";
|
2015-03-21 18:42:06 +01:00
|
|
|
path = (path.slice(0,1) != "/" ? "/":"") + path + (path.slice(-1) == "/" ? "":"/") + "comms";
|
2016-02-10 22:43:37 +01:00
|
|
|
wsServer = new ws.Server({
|
|
|
|
server:server,
|
|
|
|
path:path,
|
|
|
|
// Disable the deflate option due to this issue
|
|
|
|
// https://github.com/websockets/ws/pull/632
|
|
|
|
// that is fixed in the 1.x release of the ws module
|
|
|
|
// that we cannot currently pickup as it drops node 0.10 support
|
|
|
|
perMessageDeflate: false
|
|
|
|
});
|
2015-07-30 23:09:01 +02:00
|
|
|
|
2014-12-10 15:16:07 +01:00
|
|
|
wsServer.on('connection',function(ws) {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "comms.open"});
|
2014-12-10 15:16:07 +01:00
|
|
|
var pendingAuth = (settings.adminAuth != null);
|
2014-11-12 14:21:59 +01:00
|
|
|
if (!pendingAuth) {
|
2014-12-10 15:16:07 +01:00
|
|
|
activeConnections.push(ws);
|
2014-11-12 14:21:59 +01:00
|
|
|
} else {
|
2015-01-28 23:41:13 +01:00
|
|
|
pendingConnections.push(ws);
|
2014-09-22 15:33:26 +02:00
|
|
|
}
|
2014-12-10 15:16:07 +01:00
|
|
|
ws.on('close',function() {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "comms.close",user:ws.user});
|
2014-12-10 15:16:07 +01:00
|
|
|
removeActiveConnection(ws);
|
|
|
|
removePendingConnection(ws);
|
|
|
|
});
|
|
|
|
ws.on('message', function(data,flags) {
|
|
|
|
var msg = null;
|
|
|
|
try {
|
|
|
|
msg = JSON.parse(data);
|
|
|
|
} catch(err) {
|
2015-05-08 15:21:01 +02:00
|
|
|
log.trace("comms received malformed message : "+err.toString());
|
2014-12-10 15:16:07 +01:00
|
|
|
return;
|
2014-11-12 14:21:59 +01:00
|
|
|
}
|
2014-12-10 15:16:07 +01:00
|
|
|
if (!pendingAuth) {
|
|
|
|
if (msg.subscribe) {
|
|
|
|
handleRemoteSubscription(ws,msg.subscribe);
|
|
|
|
}
|
|
|
|
} else {
|
2015-03-29 22:59:48 +02:00
|
|
|
var completeConnection = function(userScope,sendAck) {
|
2016-06-30 01:44:06 +02:00
|
|
|
try {
|
|
|
|
if (!userScope || !Permissions.hasPermission(userScope,"status.read")) {
|
|
|
|
ws.send(JSON.stringify({auth:"fail"}));
|
|
|
|
ws.close();
|
|
|
|
} else {
|
|
|
|
pendingAuth = false;
|
|
|
|
removePendingConnection(ws);
|
|
|
|
activeConnections.push(ws);
|
|
|
|
if (sendAck) {
|
|
|
|
ws.send(JSON.stringify({auth:"ok"}));
|
|
|
|
}
|
2015-01-28 23:41:13 +01:00
|
|
|
}
|
2016-06-30 01:44:06 +02:00
|
|
|
} catch(err) {
|
|
|
|
// Just in case the socket closes before we attempt
|
|
|
|
// to send anything.
|
2014-11-12 14:21:59 +01:00
|
|
|
}
|
2014-12-10 15:16:07 +01:00
|
|
|
}
|
|
|
|
if (msg.auth) {
|
|
|
|
Tokens.get(msg.auth).then(function(client) {
|
|
|
|
if (client) {
|
2015-01-28 23:41:13 +01:00
|
|
|
Users.get(client.user).then(function(user) {
|
2015-03-29 23:27:07 +02:00
|
|
|
if (user) {
|
2015-05-14 15:22:28 +02:00
|
|
|
ws.user = user;
|
|
|
|
log.audit({event: "comms.auth",user:ws.user});
|
2015-03-29 23:27:07 +02:00
|
|
|
completeConnection(client.scope,true);
|
|
|
|
} else {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "comms.auth.fail"});
|
2015-03-29 23:27:07 +02:00
|
|
|
completeConnection(null,false);
|
|
|
|
}
|
2015-01-28 23:41:13 +01:00
|
|
|
});
|
2014-12-10 15:16:07 +01:00
|
|
|
} else {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "comms.auth.fail"});
|
2015-01-28 23:41:13 +01:00
|
|
|
completeConnection(null,false);
|
2014-12-10 15:16:07 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2015-03-29 23:27:07 +02:00
|
|
|
if (anonymousUser) {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "comms.auth",user:anonymousUser});
|
2015-03-29 23:27:07 +02:00
|
|
|
completeConnection(anonymousUser.permissions,false);
|
2017-04-11 15:48:19 +02:00
|
|
|
//TODO: duplicated code - pull non-auth message handling out
|
|
|
|
if (msg.subscribe) {
|
|
|
|
handleRemoteSubscription(ws,msg.subscribe);
|
|
|
|
}
|
2015-03-29 23:27:07 +02:00
|
|
|
} else {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "comms.auth.fail"});
|
2015-03-29 23:27:07 +02:00
|
|
|
completeConnection(null,false);
|
|
|
|
}
|
2014-12-10 15:16:07 +01:00
|
|
|
}
|
2014-11-12 14:21:59 +01:00
|
|
|
}
|
2014-12-10 15:16:07 +01:00
|
|
|
});
|
|
|
|
ws.on('error', function(err) {
|
2015-05-08 15:21:01 +02:00
|
|
|
log.warn(log._("comms.error",{message:err.toString()}));
|
2014-12-10 15:16:07 +01:00
|
|
|
});
|
2014-09-22 15:33:26 +02:00
|
|
|
});
|
2015-07-30 23:09:01 +02:00
|
|
|
|
2015-01-28 23:41:13 +01:00
|
|
|
wsServer.on('error', function(err) {
|
2015-05-08 15:21:01 +02:00
|
|
|
log.warn(log._("comms.error-server",{message:err.toString()}));
|
2014-09-22 15:33:26 +02:00
|
|
|
});
|
2015-07-30 23:09:01 +02:00
|
|
|
|
2014-12-10 15:16:07 +01:00
|
|
|
lastSentTime = Date.now();
|
2015-07-30 23:09:01 +02:00
|
|
|
|
2014-12-10 15:16:07 +01:00
|
|
|
heartbeatTimer = setInterval(function() {
|
2015-01-28 23:41:13 +01:00
|
|
|
var now = Date.now();
|
|
|
|
if (now-lastSentTime > webSocketKeepAliveTime) {
|
|
|
|
publish("hb",lastSentTime);
|
|
|
|
}
|
2014-12-10 15:16:07 +01:00
|
|
|
}, webSocketKeepAliveTime);
|
2014-05-08 15:15:54 +02:00
|
|
|
});
|
2014-09-22 15:33:26 +02:00
|
|
|
}
|
2014-05-07 21:47:25 +02:00
|
|
|
}
|
|
|
|
|
2014-08-01 22:55:05 +02:00
|
|
|
function stop() {
|
2014-09-22 15:33:26 +02:00
|
|
|
if (heartbeatTimer) {
|
|
|
|
clearInterval(heartbeatTimer);
|
2015-03-21 18:42:06 +01:00
|
|
|
heartbeatTimer = null;
|
2014-09-22 15:33:26 +02:00
|
|
|
}
|
|
|
|
if (wsServer) {
|
|
|
|
wsServer.close();
|
2015-03-21 18:42:06 +01:00
|
|
|
wsServer = null;
|
2014-09-22 15:33:26 +02:00
|
|
|
}
|
2014-08-01 22:55:05 +02:00
|
|
|
}
|
|
|
|
|
2014-05-08 15:15:54 +02:00
|
|
|
function publish(topic,data,retain) {
|
2015-11-12 10:03:03 +01:00
|
|
|
if (server) {
|
|
|
|
if (retain) {
|
|
|
|
retained[topic] = data;
|
|
|
|
} else {
|
|
|
|
delete retained[topic];
|
|
|
|
}
|
|
|
|
lastSentTime = Date.now();
|
|
|
|
activeConnections.forEach(function(conn) {
|
|
|
|
publishTo(conn,topic,data);
|
|
|
|
});
|
2014-05-08 15:15:54 +02:00
|
|
|
}
|
2014-05-07 21:47:25 +02:00
|
|
|
}
|
|
|
|
|
2014-05-08 15:15:54 +02:00
|
|
|
function publishTo(ws,topic,data) {
|
|
|
|
var msg = JSON.stringify({topic:topic,data:data});
|
|
|
|
try {
|
|
|
|
ws.send(msg);
|
|
|
|
} catch(err) {
|
2015-07-30 23:09:01 +02:00
|
|
|
removeActiveConnection(ws);
|
|
|
|
removePendingConnection(ws);
|
2015-05-08 15:21:01 +02:00
|
|
|
log.warn(log._("comms.error-send",{message:err.toString()}));
|
2014-05-08 15:15:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleRemoteSubscription(ws,topic) {
|
|
|
|
var re = new RegExp("^"+topic.replace(/([\[\]\?\(\)\\\\$\^\*\.|])/g,"\\$1").replace(/\+/g,"[^/]+").replace(/\/#$/,"(\/.*)?")+"$");
|
|
|
|
for (var t in retained) {
|
|
|
|
if (re.test(t)) {
|
|
|
|
publishTo(ws,t,retained[t]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-12 14:21:59 +01:00
|
|
|
function removeActiveConnection(ws) {
|
|
|
|
for (var i=0;i<activeConnections.length;i++) {
|
|
|
|
if (activeConnections[i] === ws) {
|
|
|
|
activeConnections.splice(i,1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function removePendingConnection(ws) {
|
|
|
|
for (var i=0;i<pendingConnections.length;i++) {
|
|
|
|
if (pendingConnections[i] === ws) {
|
|
|
|
pendingConnections.splice(i,1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-07 21:47:25 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init:init,
|
|
|
|
start:start,
|
2014-08-01 22:55:05 +02:00
|
|
|
stop:stop,
|
2015-12-09 14:37:20 +01:00
|
|
|
publish:publish
|
2014-05-07 21:47:25 +02:00
|
|
|
}
|