You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
var Express = require('express');
|
|
var Http = require('http');
|
|
var Https = require('https');
|
|
var Fs = require('fs');
|
|
var WebSocketServer = require('ws').Server;
|
|
var ChainPadSrv = require('./ChainPadSrv');
|
|
var Storage = require('./Storage');
|
|
|
|
var config = require('./config');
|
|
config.websocketPort = config.websocketPort || config.httpPort;
|
|
|
|
var app = Express();
|
|
app.use(Express.static(__dirname + '/www'));
|
|
|
|
// Bower is broken and does not allow components nested within components...
|
|
// And jquery.sheet expects it!
|
|
// *Workaround*
|
|
app.use("/bower_components/jquery.sheet/bower_components",
|
|
Express.static(__dirname + '/www/bower_components'));
|
|
|
|
var httpsOpts;
|
|
if (config.privKeyAndCertFiles) {
|
|
var privKeyAndCerts = '';
|
|
config.privKeyAndCertFiles.forEach(function (file) {
|
|
privKeyAndCerts = privKeyAndCerts + Fs.readFileSync(file);
|
|
});
|
|
var array = privKeyAndCerts.split('\n-----BEGIN ');
|
|
for (var i = 1; i < array.length; i++) { array[i] = '-----BEGIN ' + array[i] }
|
|
var privKey;
|
|
for (var i = 0; i < array.length; i++) {
|
|
if (array[i].indexOf('PRIVATE KEY-----\n') !== -1) {
|
|
privKey = array[i];
|
|
array.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
if (!privKey) { throw new Error("cannot find private key"); }
|
|
httpsOpts = {
|
|
cert: array.shift(),
|
|
key: privKey,
|
|
ca: array
|
|
}
|
|
}
|
|
|
|
app.get('/api/config', function(req, res){
|
|
var host = req.headers.host.replace(/\:[0-9]+/, '');
|
|
res.setHeader('Content-Type', 'text/javascript');
|
|
res.send('define(' + JSON.stringify({
|
|
websocketURL:'ws' + ((httpsOpts) ? 's' : '') + '://' + host + ':' +
|
|
config.websocketPort + '/cryptpad_websocket'
|
|
}) + ');');
|
|
});
|
|
|
|
var httpServer = httpsOpts ? Https.createServer(httpsOpts, app) : Http.createServer(app);
|
|
|
|
httpServer.listen(config.httpPort);
|
|
console.log('listening on port ' + config.httpPort);
|
|
|
|
var wsConfig = { server: httpServer };
|
|
if (config.websocketPort !== config.httpPort) {
|
|
wsConfig = { port: config.websocketPort };
|
|
}
|
|
|
|
var wsSrv = new WebSocketServer(wsConfig);
|
|
Storage.create(config, function (store) {
|
|
console.log('DB connected');
|
|
ChainPadSrv.create(wsSrv, store);
|
|
});
|