iotronic/s4t-server-node/lib/s4t_wamp_server.js

238 lines
7.7 KiB
JavaScript

/*
The MIT License (MIT)
Copyright (c) 2014 Andrea Rocco Lotronto
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
var autobahn = require('autobahn');
var express = require('express');
s4t_wamp_server = function(){
}
s4t_wamp_server.prototype.start = function(restPort, wamp_router_url){
var boards = {};
var getIP = require('./getIP.js');
var IPLocal = getIP('eth0', 'IPv4');
//var url_wamp_router = "ws://172.17.3.139:8181/ws"; //example of url wamp router
var connection = new autobahn.Connection({
//url: url_wamp_router,
url:wamp_router_url,
realm: "s4t"
});
var topic_command = 'board.command'
var topic_connection = 'board.connection'
connection.onopen = function (session, details) {
var rest = express();
rest.get('/', function (req, res){
res.send('API: <br> http://'+IPLocal+':'+restPort+'/list for board list');
});
rest.get('/command/', function (req, res){
//DEBUG Message
//console.log('POST::::'+req.originalUrl);
var board = req.query.board;
var command = req.query.command;
var pin = req.query.pin;
var mode = req.query.mode;
var value = req.query.val;
if(boards[board] != undefined){
//DEBUG Message
//console.log("ID exsist");
//console.log(command);
switch(command){
case 'ssh':
//random port for reverse service
var port = randomIntInc(6000,7000);
session.publish(topic_command, [board, command, port]);
//res.send("ssh -p "+port+" root@"+IPLocal);
res.json(IPLocal+':'+port);
break;
case 'ideino':
var port = randomIntInc(6000,7000);
session.publish(topic_command, [board, command, port]);
//res.send("http://"+IPLocal+":"+port);
res.json(IPLocal+':'+port);
break;
case 'osjs':
var port = randomIntInc(6000,7000);
session.publish(topic_command, [board, command, port]);
//res.send("http://"+IPLocal+":"+port);
res.json(IPLocal+':'+port);
break;
case 'mode':
if(mode === 'input' || mode ==='output'){
session.publish(topic_command, [board, command, pin, mode]);
res.json(pin+':'+mode);
break;
}
else{
res.json('null');
break;
}
//Analog
case 'analog':
console.log('VALORE='+value);
if(value!=undefined){//WRITE
console.log('ANALOG WRITE');
if(value<=0 && value <=1024){
session.publish(topic_command, [board, command, pin, value]);
res.json(pin+':'+value);
break;
}
else{
res.json('null');
break;
}
}
else{//READ
console.log('ANALOG READ');
session.call(board+'.command.rpc.read.analog', [board, command, pin]).then(
function(result){
res.json(result);
},session.log);
break;
}
//Digital
case 'digital':
console.log('VALORE='+value);
if(value!=undefined){//WRITE
console.log('DIGITAL WRITE');
if(value==0 || value==1){//WRITE
session.publish(topic_command, [board, command, pin, value]);
res.json(pin+':'+value);
break;
}
else{
res.json('null');
break;
}
}
else{//READ
console.log('DIGITAL READ');
session.call(board+'.command.rpc.read.digital', [board, command, pin]).then(
function(result){
res.json(result);
},session.log);
break;
}
default:
res.json('null')
break;
}
}
else
//res.send("Error: malformed REST ");
res.json('null');
});
rest.get('/list/', function (req, res){
var response='{ list: ['
//var board_list='';
//for (var i in boards){
// board_list += boards[i];
// command_list = "ssh"
// }
for (var i in boards){
response += boards[i]+","
}
var len = response.length;
response = response.slice(0,len-1);
response += '] }'
//res.send('List of the board: '+board_list+'<br>'+'use URL: '+IPLocal+":"+restPort+"/commad/?board=board_name&command=ssh|ideino");
res.json(response);
});
rest.listen(restPort);
console.log("Server REST started on: http://"+IPLocal+":"+restPort);
console.log("Connected to router WAMP");
// Publish, Subscribe, Call and Register
var onBoardConnected = function (args){
//registrare le schede che si connettono
console.log(args);
if(args[1]=='connection'){
boards[args[0]] = args[0];
//DEBUGGG Message
console.log("Board connected:"+args[0]+" board state:"+args[1]);
//DEBUGGG Message
console.log("List of board::"+boards.length);
for (var i in boards){
console.log('Key: '+i+' value: '+boards[i]);
}
}
if(args[1]=='disconnect'){
delete boards[args[0]];
//DEBUGGG
console.log("Board disconnected:"+args[0]+" board state:"+args[1]);
//DEBUGGG
console.log("List of the board::"+boards.length);
for (var i in boards){
console.log('Key: '+i+' value: '+boards[i]);
}
}
}
session.subscribe(topic_connection, onBoardConnected);
console.log("Subsscribe to topic: "+topic_connection);
};
connection.onclose = function (reason, details) {
// handle connection lost
}
connection.open();
}
//function for pseudo random number
function randomIntInc (low, high) {
return Math.floor(Math.random() * (high - low + 1) + low);
}
module.exports = s4t_wamp_server;