mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-03 10:54:16 +00:00
95 lines
2.8 KiB
JavaScript
95 lines
2.8 KiB
JavaScript
let finalhandler = require('finalhandler');
|
|
let http = require('http');
|
|
let serveStatic = require('serve-static');
|
|
const {canonicalHost, defaultHost, dockerHostSwap} = require('../../utils/host');
|
|
require('http-shutdown').extend();
|
|
var express = require('express');
|
|
let path = require('path');
|
|
var expressWebSocket = require('express-ws');
|
|
var bodyParser = require('body-parser');
|
|
|
|
class Server {
|
|
constructor(options) {
|
|
this.events = options.events;
|
|
this.dist = options.dist || 'dist/';
|
|
this.port = options.port || 8000;
|
|
this.hostname = dockerHostSwap(options.host) || defaultHost;
|
|
this.logger = options.logger;
|
|
this.plugins = options.plugins;
|
|
}
|
|
|
|
start(callback) {
|
|
const self = this;
|
|
if (this.server && this.server.listening) {
|
|
this.logger.warn(__("a webserver is already running at") +
|
|
" " +
|
|
("http://" + canonicalHost(this.hostname) +
|
|
":" + this.port).bold.underline.green);
|
|
if (callback) {
|
|
callback();
|
|
}
|
|
return;
|
|
}
|
|
let serve = serveStatic(this.dist, {'index': ['index.html', 'index.htm']});
|
|
|
|
var app = express();
|
|
|
|
app.use(serve);
|
|
app.use('/embark', serveStatic(path.join(__dirname, 'backend'), {'backend': ['index.html', 'index.htm']}));
|
|
|
|
app.use(bodyParser.json()); // support json encoded bodies
|
|
app.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies
|
|
|
|
expressWebSocket(app);
|
|
|
|
let apiCalls = self.plugins.getPluginsProperty("apiCalls", "apiCalls");
|
|
for (let apiCall of apiCalls) {
|
|
app[apiCall.method].apply(app, [apiCall.endpoint, apiCall.cb]);
|
|
}
|
|
|
|
app.get('/embark', function (req, res) {
|
|
res.send('Welcome to Embark')
|
|
});
|
|
|
|
app.get('/embark/console', function (req, res) {
|
|
self.events.request('console:command', req.query.cmd, res.send.bind(res));
|
|
});
|
|
|
|
app.listen(this.port);
|
|
|
|
this.logger.info(__("webserver available at") +
|
|
" " +
|
|
("http://" + canonicalHost(this.hostname) +
|
|
":" + this.port).bold.underline.green);
|
|
this.server.listen(this.port, this.hostname);
|
|
|
|
//this.server = http.createServer(function onRequest(req, res) {
|
|
// serve(req, res, finalhandler(req, res));
|
|
//}).withShutdown();
|
|
|
|
//this.logger.info("webserver available at " + ("http://" + this.hostname + ":" + this.port).bold.underline.green);
|
|
//this.server.listen(this.port, this.hostname);
|
|
if (callback) {
|
|
callback();
|
|
}
|
|
}
|
|
|
|
stop(callback) {
|
|
if (!this.server || !this.server.listening) {
|
|
this.logger.warn(__("no webserver is currently running"));
|
|
if (callback) {
|
|
callback();
|
|
}
|
|
return;
|
|
}
|
|
this.server.shutdown(function() {
|
|
if (callback) {
|
|
callback();
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Server;
|