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();
|
2016-08-21 15:02:50 +00:00
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
class Server {
|
|
|
|
constructor(options) {
|
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;
|
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-09-21 09:44:46 +00:00
|
|
|
|
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-09-27 10:16:55 +00:00
|
|
|
this.app.ws('/', (_ws, _req) => {});
|
|
|
|
const wss = expressWs.getWss('/');
|
|
|
|
|
|
|
|
self.events.on('outputDone', () => {
|
|
|
|
wss.clients.forEach(function (client) {
|
|
|
|
client.send('outputDone');
|
2018-09-19 23:19:37 +00:00
|
|
|
});
|
2018-10-03 14:28:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
self.events.on('outputError', () => {
|
|
|
|
wss.clients.forEach(function (client) {
|
|
|
|
client.send('outputError');
|
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);
|
|
|
|
}
|
|
|
|
const msg = (
|
|
|
|
__('webserver available at') + ' ' +
|
|
|
|
('http://' + canonicalHost(self.hostname) + ':' + self.port).bold.underline.green
|
|
|
|
);
|
|
|
|
callback(null, msg, self.port);
|
|
|
|
});
|
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;
|