2018-08-31 20:01:18 +00:00
|
|
|
const async = require('async');
|
2017-03-29 17:50:05 +00:00
|
|
|
let serveStatic = require('serve-static');
|
2018-07-26 17:13:18 +00:00
|
|
|
const {canonicalHost, defaultHost, dockerHostSwap} = require('../../utils/host');
|
2018-09-19 23:19:37 +00:00
|
|
|
const expressWebSocket = require('express-ws');
|
2018-09-18 13:28:17 +00:00
|
|
|
const express = require('express');
|
|
|
|
const fs = require('../../core/fs');
|
2017-12-17 23:34:41 +00:00
|
|
|
require('http-shutdown').extend();
|
2018-02-26 00:01:50 +00:00
|
|
|
var express = require('express');
|
|
|
|
let path = require('path');
|
2018-02-26 14:45:46 +00:00
|
|
|
var expressWebSocket = require('express-ws');
|
2016-08-21 15:02:50 +00:00
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
class Server {
|
|
|
|
constructor(options) {
|
2018-10-09 16:44:32 +00:00
|
|
|
this.logger = options.logger;
|
2018-08-31 19:51:18 +00:00
|
|
|
this.buildDir = options.buildDir;
|
2018-08-31 20:01:18 +00:00
|
|
|
this.events = options.events;
|
2017-03-30 11:12:39 +00:00
|
|
|
this.port = options.port || 8000;
|
2018-07-26 17:13:18 +00:00
|
|
|
this.hostname = dockerHostSwap(options.host) || defaultHost;
|
2018-08-31 16:46:41 +00:00
|
|
|
this.isFirstStart = true;
|
|
|
|
this.opened = false;
|
2018-09-17 23:47:19 +00:00
|
|
|
this.openBrowser = options.openBrowser;
|
2018-09-28 19:11:26 +00:00
|
|
|
this.logging = false;
|
2018-10-09 16:44:32 +00:00
|
|
|
|
|
|
|
this.events.once('outputDone', () => {
|
|
|
|
this.logger.info(this._getMessage());
|
|
|
|
});
|
2018-09-28 19:11:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enableLogging(callback) {
|
|
|
|
this.logging = true;
|
|
|
|
return callback(null, __("Enabled Webserver Logs"));
|
|
|
|
}
|
|
|
|
|
|
|
|
disableLogging(callback) {
|
|
|
|
this.logging = false;
|
|
|
|
return callback(null, __("Disabled Webserver Logs"));
|
2017-03-30 11:12:39 +00:00
|
|
|
}
|
2016-08-21 15:02:50 +00:00
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
start(callback) {
|
2018-09-19 23:19:37 +00:00
|
|
|
const self = this;
|
2017-12-18 00:18:35 +00:00
|
|
|
if (this.server && this.server.listening) {
|
2018-08-10 14:09:56 +00:00
|
|
|
let message = __("a webserver is already running at") + " " +
|
2018-08-31 20:02:05 +00:00
|
|
|
("http://" + canonicalHost(this.hostname) +
|
|
|
|
":" + this.port).bold.underline.green;
|
2018-08-10 14:09:56 +00:00
|
|
|
return callback(null, message);
|
2017-12-18 00:18:35 +00:00
|
|
|
}
|
2016-08-21 15:02:50 +00:00
|
|
|
|
2018-09-18 13:28:17 +00:00
|
|
|
const coverage = serveStatic(fs.dappPath('coverage/__root__/'), {'index': ['index.html', 'index.htm']});
|
|
|
|
const coverageStyle = serveStatic(fs.dappPath('coverage/'));
|
|
|
|
const main = serveStatic(this.buildDir, {'index': ['index.html', 'index.htm']});
|
|
|
|
|
|
|
|
this.app = express();
|
2018-09-27 10:16:55 +00:00
|
|
|
const expressWs = expressWebSocket(this.app);
|
2018-10-09 16:44:32 +00:00
|
|
|
|
2018-09-28 19:11:26 +00:00
|
|
|
// Assign Logging Function
|
|
|
|
this.app.use(function(req, res, next) {
|
|
|
|
if (self.logging) {
|
|
|
|
if (!req.headers.upgrade) {
|
|
|
|
console.log('Webserver> ' + req.method + " " + req.originalUrl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
});
|
2018-09-18 13:28:17 +00:00
|
|
|
this.app.use(main);
|
|
|
|
this.app.use('/coverage', coverage);
|
|
|
|
this.app.use(coverageStyle);
|
2016-08-21 15:02:50 +00:00
|
|
|
|
2018-02-26 14:45:46 +00:00
|
|
|
expressWebSocket(this.app);
|
2018-09-27 10:16:55 +00:00
|
|
|
|
2018-02-26 14:45:46 +00:00
|
|
|
this.app.ws('/logs', function(ws, req) {
|
|
|
|
self.events.on("log", function(logLevel, logMsg) {
|
2018-02-27 11:34:50 +00:00
|
|
|
ws.send(JSON.stringify({msg: logMsg, msg_clear: logMsg.stripColors, logLevel: logLevel}), () => {});
|
2018-02-26 14:45:46 +00:00
|
|
|
});
|
2018-03-10 18:12:22 +00:00
|
|
|
});
|
|
|
|
|
2018-03-12 20:46:56 +00:00
|
|
|
app.ws('/embark/dashboard', function(ws, req) {
|
2018-03-10 18:12:22 +00:00
|
|
|
let dashboardState = { contractsState: [], environment: "", status: "", availableServices: [] };
|
|
|
|
|
2018-03-12 20:46:56 +00:00
|
|
|
// TODO: doesn't feel quite right, should be refactored into a shared
|
|
|
|
// dashboard state
|
|
|
|
self.events.request('setDashboardState');
|
|
|
|
|
2018-03-10 18:12:22 +00:00
|
|
|
self.events.on('contractsState', (contracts) => {
|
|
|
|
dashboardState.contractsState = [];
|
|
|
|
|
|
|
|
contracts.forEach(function (row) {
|
|
|
|
dashboardState.contractsState.push({contractName: row[0], address: row[1], status: row[2]});
|
|
|
|
});
|
2018-03-12 20:46:56 +00:00
|
|
|
ws.send(JSON.stringify(dashboardState));
|
2018-03-10 18:12:22 +00:00
|
|
|
});
|
|
|
|
self.events.on('status', (status) => {
|
|
|
|
dashboardState.status = status;
|
2018-03-12 20:46:56 +00:00
|
|
|
ws.send(JSON.stringify(dashboardState));
|
2018-03-10 18:12:22 +00:00
|
|
|
});
|
|
|
|
self.events.on('servicesState', (servicesState) => {
|
|
|
|
dashboardState.availableServices = servicesState;
|
2018-03-12 20:46:56 +00:00
|
|
|
ws.send(JSON.stringify(dashboardState));
|
2018-09-19 23:19:37 +00:00
|
|
|
});
|
2018-10-03 14:28:00 +00:00
|
|
|
});
|
|
|
|
|
2018-02-26 14:45:46 +00:00
|
|
|
this.app.ws('/', function(ws, _req) {
|
|
|
|
self.events.on('outputDone', () => {
|
|
|
|
if (ws.readyState === WEB_SOCKET_STATE_OPEN) {
|
|
|
|
return ws.send('outputDone');
|
|
|
|
}
|
|
|
|
// if the socket wasn't yet opened, listen for the 'open' event,
|
|
|
|
// then send the 'outputDone' data
|
|
|
|
ws.addEventListener('open', _event => {
|
|
|
|
ws.send('outputDone');
|
|
|
|
});
|
2018-10-01 20:58:42 +00:00
|
|
|
});
|
2018-09-19 23:19:37 +00:00
|
|
|
});
|
2018-08-23 19:11:43 +00:00
|
|
|
|
2018-08-31 20:01:18 +00:00
|
|
|
async.waterfall([
|
|
|
|
function createPlaceholderPage(next) {
|
2018-09-04 13:20:27 +00:00
|
|
|
if (!self.isFirstStart) {
|
|
|
|
return next();
|
2018-08-31 20:01:18 +00:00
|
|
|
}
|
2018-09-04 13:20:27 +00:00
|
|
|
self.isFirstStart = false;
|
|
|
|
self.events.request('build-placeholder', next);
|
2018-08-31 20:01:18 +00:00
|
|
|
},
|
|
|
|
function listen(next) {
|
2018-09-18 13:28:17 +00:00
|
|
|
self.server = self.app.listen(self.port, self.hostname, () => {
|
2018-08-31 20:01:18 +00:00
|
|
|
self.port = self.server.address().port;
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function openBrowser(next) {
|
2018-09-17 23:47:19 +00:00
|
|
|
if (!self.openBrowser || self.opened) {
|
2018-09-04 13:20:27 +00:00
|
|
|
return next();
|
2018-08-31 20:01:18 +00:00
|
|
|
}
|
2018-09-04 13:20:58 +00:00
|
|
|
self.opened = true;
|
|
|
|
self.events.request('open-browser', next);
|
2018-08-31 16:07:31 +00:00
|
|
|
}
|
2018-09-04 13:20:58 +00:00
|
|
|
], function (err) {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
2018-10-09 16:44:32 +00:00
|
|
|
|
|
|
|
callback(null, self._getMessage(), self.port);
|
2018-09-04 13:20:58 +00:00
|
|
|
});
|
2017-12-17 23:34:41 +00:00
|
|
|
}
|
|
|
|
|
2018-10-09 16:44:32 +00:00
|
|
|
_getMessage() {
|
|
|
|
return __('webserver available at') + ' ' +
|
|
|
|
('http://' + canonicalHost(this.hostname) + ':' + this.port).bold.underline.green;
|
|
|
|
}
|
|
|
|
|
2017-12-17 23:34:41 +00:00
|
|
|
stop(callback) {
|
2017-12-18 00:18:35 +00:00
|
|
|
if (!this.server || !this.server.listening) {
|
2018-08-10 14:09:56 +00:00
|
|
|
return callback(null, __("no webserver is currently running"));
|
2017-12-18 00:18:35 +00:00
|
|
|
}
|
2018-09-18 13:28:17 +00:00
|
|
|
this.server.close(function() {
|
2018-08-10 14:09:56 +00:00
|
|
|
callback(null, __("Webserver stopped"));
|
2017-12-17 23:34:41 +00:00
|
|
|
});
|
2017-03-30 11:12:39 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-21 15:02:50 +00:00
|
|
|
|
|
|
|
module.exports = Server;
|