2017-03-29 17:50:05 +00:00
|
|
|
let finalhandler = require('finalhandler');
|
2018-08-31 16:06:46 +00:00
|
|
|
const fs = require('../../core/fs.js');
|
2017-03-29 17:50:05 +00:00
|
|
|
let http = require('http');
|
|
|
|
let serveStatic = require('serve-static');
|
2018-07-26 17:13:18 +00:00
|
|
|
const {canonicalHost, defaultHost, dockerHostSwap} = require('../../utils/host');
|
2018-08-31 16:07:31 +00:00
|
|
|
const opn = require('opn');
|
2018-08-31 16:06:46 +00:00
|
|
|
const utils = require('../../utils/utils.js');
|
2017-12-17 23:34:41 +00:00
|
|
|
require('http-shutdown').extend();
|
2016-08-21 15:02:50 +00:00
|
|
|
|
2018-08-31 16:06:46 +00:00
|
|
|
require('ejs');
|
|
|
|
const embark_building_placeholder = require('../code_generator/code_templates/embark-building-placeholder.html.ejs');
|
|
|
|
|
|
|
|
let isFirstStart = true;
|
2018-08-31 16:07:31 +00:00
|
|
|
let opened = false;
|
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
class Server {
|
|
|
|
constructor(options) {
|
|
|
|
this.dist = options.dist || 'dist/';
|
|
|
|
this.port = options.port || 8000;
|
2018-07-26 17:13:18 +00:00
|
|
|
this.hostname = dockerHostSwap(options.host) || defaultHost;
|
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) {
|
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") + " " +
|
|
|
|
("http://" + canonicalHost(this.hostname) +
|
|
|
|
":" + this.port).bold.underline.green;
|
|
|
|
return callback(null, message);
|
2017-12-18 00:18:35 +00:00
|
|
|
}
|
2017-03-30 11:12:39 +00:00
|
|
|
let serve = serveStatic(this.dist, {'index': ['index.html', 'index.htm']});
|
2016-08-21 15:02:50 +00:00
|
|
|
|
2017-12-17 23:34:41 +00:00
|
|
|
this.server = http.createServer(function onRequest(req, res) {
|
2017-03-30 11:12:39 +00:00
|
|
|
serve(req, res, finalhandler(req, res));
|
2017-12-17 23:34:41 +00:00
|
|
|
}).withShutdown();
|
2016-08-21 15:02:50 +00:00
|
|
|
|
2018-08-31 16:06:46 +00:00
|
|
|
if (isFirstStart) {
|
|
|
|
const html = embark_building_placeholder({buildingMsg: __('Embark is building, please wait...')});
|
|
|
|
fs.mkdirpSync(this.dist); // create dist/ folder if not already exists
|
|
|
|
fs.writeFileSync(utils.joinPath(this.dist, 'index.html'), html);
|
|
|
|
isFirstStart = false;
|
|
|
|
}
|
2018-08-23 19:11:43 +00:00
|
|
|
|
|
|
|
this.server.listen(this.port, this.hostname, () => {
|
|
|
|
this.port = this.server.address().port;
|
|
|
|
callback(null, __("webserver available at") +
|
|
|
|
" " +
|
|
|
|
("http://" + canonicalHost(this.hostname) +
|
|
|
|
":" + this.port).bold.underline.green, this.port);
|
2018-08-31 16:07:31 +00:00
|
|
|
if (!opened) {
|
2018-08-31 16:16:57 +00:00
|
|
|
// fail silently, e.g. in a docker container, by cacthing promise
|
|
|
|
// rejection w/ a noop
|
|
|
|
opn(`http://${canonicalHost(this.hostname)}:${this.port}`)
|
|
|
|
.catch(function () {});
|
2018-08-31 16:07:31 +00:00
|
|
|
opened = true;
|
|
|
|
}
|
2018-08-23 19:11:43 +00:00
|
|
|
});
|
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
|
|
|
}
|
2017-12-17 23:34:41 +00:00
|
|
|
this.server.shutdown(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;
|