mqtt_server/server.js

180 lines
4.3 KiB
JavaScript
Raw Permalink Normal View History

2016-11-23 19:19:03 +00:00
/**
* Created by Martin on 08/02/2016.
*/
const express = require('express');
const path = require('path');
const server = require('http').createServer();
let ejs = require('ejs');
const morgan = require('morgan');
const cookieparser = require('cookie-parser');
let session = require('express-session');
const sessionLW = require('express-session-lw');
const methodoverride = require('method-override');
const bodyparser = require('body-parser');
const errorhandler = require('errorhandler');
const log4js = require('log4js');
const logger = log4js.getLogger();
let authentication = require('basic-authentication');
2017-01-07 18:21:24 +00:00
const Wemo = require('wemo-client');
2016-11-23 19:19:03 +00:00
const Events = require('events');
const busEmitter = new Events.EventEmitter();
const WebSocketServer = require('ws').Server;
const wss = new WebSocketServer({server: server});
const SocketHandler = require('./lib/wshandlerv2');
let webSocket = new SocketHandler(busEmitter, wss);
let mqttClient = require('./lib/mqtt/mqttClient');
2017-01-07 18:21:24 +00:00
//Var mqttConnect = require('./lib/mqtt/mqttConnect');
2016-11-23 19:19:03 +00:00
2017-01-07 18:21:24 +00:00
let wemoClient = null;
let wemo = new Wemo();
2017-01-07 22:36:39 +00:00
wemo.discover(function(deviceInfo) {
2017-01-07 18:21:24 +00:00
logger.info('Wemo Device Found: %j', deviceInfo);
// Get the client for the found device
wemoClient = wemo.client(deviceInfo);
2016-11-23 19:19:03 +00:00
2017-01-07 18:21:24 +00:00
// Handle BinaryState events
wemoClient.on('binaryState', function(value) {
logger.debug('Binary State changed to: %s', value);
2017-02-28 23:04:00 +00:00
// mqttClient.updateGlobal(value);
2017-01-07 18:21:24 +00:00
});
2016-11-23 19:19:03 +00:00
2017-01-07 18:21:24 +00:00
// Turn the switch on
wemoClient.setBinaryState(0);
2017-01-07 22:36:39 +00:00
});
2017-01-07 18:21:24 +00:00
busEmitter.on('changeState', function(mode) {
logger.info('Changing state..');
2017-01-07 22:33:43 +00:00
if (wemoClient !== null) {
2017-01-07 22:55:29 +00:00
wemoClient.setBinaryState(mode);
2017-02-28 23:39:57 +00:00
// let newState = wemoClient.getBinaryState();
// busEmitter.emit('updateState', newState);
2017-01-07 22:55:29 +00:00
} else {
console.error('No wemoClient');
2017-01-07 22:33:43 +00:00
}
2017-01-07 18:21:24 +00:00
});
2017-02-28 22:52:41 +00:00
/* setInterval(function() {
2017-02-28 22:31:04 +00:00
let newState = wemoClient.getBinaryState();
busEmitter.emit('updateState', newState);
2017-02-28 22:52:41 +00:00
}, 30000);*/
2017-02-28 22:31:04 +00:00
2017-01-07 18:21:24 +00:00
let mqtt = new mqttClient.mqttClient(busEmitter);
2016-11-23 19:19:03 +00:00
require('sugar-date');
let isProduction = false;
process.env.NODE_ENV = process.env.NODE_ENV || 'development';
if (process.env.NODE_ENV === 'production') {
isProduction = true;
}
logger.warn('isProduction:', isProduction);
2017-01-07 18:21:24 +00:00
const heartBeat = function() {
2016-11-23 19:19:03 +00:00
this.pingTimer = 0;
this.count = 0;
this.rate = 90000;
2017-01-07 18:21:24 +00:00
this.setupPing = function() {
2016-11-23 19:19:03 +00:00
logger.warn('Starting heartbeat...');
2017-01-07 18:21:24 +00:00
this.pingTimer = setTimeout(function() {
2016-11-23 19:19:03 +00:00
this.ping();
}.bind(this), 10000);
};
2017-01-07 18:21:24 +00:00
this.ping = function() {
2016-11-23 19:19:03 +00:00
const now = new Date;
const mod = this.rate - (now.getTime() % this.rate);
this.count++;
if (this.count > 5) {
this.count = 1;
}
const _newDots = ['.', '.', '.', '.', '.'];
_newDots[this.count - 1] = 'O';
logger.info(_newDots.join(''));
busEmitter.emit('sendSocket', {tick: new Date().getTime()});
2017-01-07 18:21:24 +00:00
this.pingTimer = setTimeout(function() {
2016-11-23 19:19:03 +00:00
this.ping();
}.bind(this), mod);
};
this.setupPing();
};
const app = express();
const port = (process.env.VCAP_APP_PORT || 3010);
let host = (process.env.VCAP_APP_HOST || 'localhost');
app.set('port', port);
app.set('views', __dirname + '/views');
app.set('view engine', 'ejs');
app.use(morgan('combined'));
app.use(cookieparser('your secret here'));
2017-01-07 18:21:24 +00:00
/*App.use(session({
2016-11-23 19:19:03 +00:00
secret: '1234567890QWERTY', resave: false, saveUninitialized: false
}));*/
app.use(sessionLW());
app.use(methodoverride());
app.use(bodyparser.urlencoded({extended: false}));
// Parse application/json
app.use(bodyparser.json());
app.use(function(req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Headers', 'X-Requested-With');
next();
});
// Run 'npm run production' to use dist
const staticDir = isProduction ? 'dist' : 'app';
app.use(express.static(path.join(__dirname, staticDir)));
app.use(errorhandler({dumpExceptions: true, showStack: true}));
// Events and sockets
function originIsAllowed(origin) {
// Put logic here to detect whether the specified origin is allowed.
return true;
}
// Glue routes
//if (isProduction) {
2017-01-07 18:21:24 +00:00
heartBeat();
2016-11-23 19:19:03 +00:00
//}
app.get('*', function(req, res) {
res.status(404).render('404',{delimiter: '^'});
});
server.on('request', app);
server.listen(port, function() { logger.info('New server listening on ' + server.address().port) });