embark-area-51/lib/modules/webserver/server.js

61 lines
2.0 KiB
JavaScript
Raw Normal View History

2017-03-29 17:50:05 +00:00
let finalhandler = require('finalhandler');
const fs = require('../../core/fs.js');
2017-03-29 17:50:05 +00:00
let http = require('http');
let serveStatic = require('serve-static');
const {canonicalHost, defaultHost, dockerHostSwap} = require('../../utils/host');
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
require('ejs');
const embark_building_placeholder = require('../code_generator/code_templates/embark-building-placeholder.html.ejs');
let isFirstStart = true;
2017-03-30 11:12:39 +00:00
class Server {
constructor(options) {
this.dist = options.dist || 'dist/';
this.port = options.port || 8000;
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) {
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-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
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);
});
2017-12-17 23:34:41 +00:00
}
stop(callback) {
if (!this.server || !this.server.listening) {
2018-08-10 14:09:56 +00:00
return callback(null, __("no webserver is currently running"));
}
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;