walnut.js/boot/master.js

148 lines
4.8 KiB
JavaScript
Raw Normal View History

'use strict';
// TODO if RAM is very low we should not fork at all,
// but use a different process altogether
console.info('pid:', process.pid);
console.info('title:', process.title);
console.info('arch:', process.arch);
console.info('platform:', process.platform);
console.info('\n\n\n[MASTER] Welcome to WALNUT!');
2016-03-29 01:12:35 +00:00
var path = require('path');
var cluster = require('cluster');
//var minWorkers = 2;
2015-11-19 07:42:20 +00:00
var numCores = 2; // Math.max(minWorkers, require('os').cpus().length);
var workers = [];
2016-03-31 06:39:15 +00:00
var state = { firstRun: true };
function fork() {
if (workers.length < numCores) {
workers.push(cluster.fork());
}
}
cluster.on('online', function (worker) {
console.info('[MASTER] Worker ' + worker.process.pid + ' is online');
fork();
2016-03-31 06:39:15 +00:00
var config = {
externalPort: 443 // world accessible
, externalPortInsecure: 80 // world accessible
// TODO externalInsecurePort?
, locked: false // TODO XXX
// XXX
// TODO needs mappings from db
// TODO autoconfig Caddy caddy
// XXX
, caddy: {
conf: __dirname + '/Caddyfile'
, bin: '/usr/local/bin/caddy'
, sitespath: path.join(__dirname, 'sites-enabled')
}
};
var useCaddy = require('fs').existsSync(config.caddy.bin);
var caddy;
config.localPort = process.argv[2] || (useCaddy ? 4080 : 443); // system / local network
config.insecurePort = process.argv[3] || (useCaddy ? 80 : 80); // meh
if (state.firstRun) {
state.firstRun = false;
if (useCaddy) {
caddy = require('../lib/spawn-caddy').create(config);
// relies on { localPort, locked }
caddy.spawn(config);
}
}
// TODO XXX Should these be configurable? If so, where?
2016-03-29 01:12:35 +00:00
var certPaths = [
2016-03-31 06:39:15 +00:00
path.join(__dirname, '..', '..', 'certs', 'live')
, path.join(__dirname, '..', '..', 'letsencrypt', 'live')
2016-03-29 01:12:35 +00:00
];
// TODO communicate config with environment vars?
var info = {
2015-11-28 06:05:27 +00:00
type: 'walnut.init'
, conf: {
protocol: useCaddy ? 'http' : 'https'
, externalPort: config.externalPort
, localPort: config.localPort
, insecurePort: config.insecurePort
, certPaths: useCaddy ? null : certPaths
2016-03-31 06:39:15 +00:00
, trustProxy: useCaddy ? true : false
}
};
function touchMaster(msg) {
2015-11-28 06:05:27 +00:00
if ('walnut.webserver.listening' !== msg.type) {
console.warn('[MASTER] received unexpected message from worker');
console.warn(msg);
return;
}
// calls init if init has not been called
state.caddy = caddy;
state.workers = workers;
2016-03-31 06:39:15 +00:00
require('../lib/master').touch(config, state).then(function (results) {
//var memstore = results.memstore;
var sqlstore = results.sqlstore;
2015-11-28 06:05:27 +00:00
info.type = 'walnut.webserver.onrequest';
2016-03-31 06:39:15 +00:00
// TODO let this load after server is listening
info.conf['org.oauth3.consumer'] = config['org.oauth3.consumer'];
info.conf['org.oauth3.provider'] = config['org.oauth3.provider'];
info.conf.keys = config.keys;
info.conf.memstoreSock = config.memstoreSock;
info.conf.sqlite3Sock = config.sqlite3Sock;
2015-11-19 12:34:59 +00:00
// TODO get this from db config instead
info.conf.privkey = config.privkey;
info.conf.pubkey = config.pubkey;
2016-03-31 06:39:15 +00:00
info.conf.redirects = [
{ "ip": false, "id": "*", "value": false } // default no-www
, { "ip": false, "id": "daplie.domains", "value": null }
, { "ip": false, "id": "*.daplie.domains", "value": false }
, { "ip": false, "id": "no.daplie.domains", "value": false }
, { "ip": false, "id": "*.no.daplie.domains", "value": false }
, { "ip": false, "id": "ns2.daplie.domains", "value": false }
, { "ip": true, "id": "maybe.daplie.domains", "value": null }
, { "ip": true, "id": "*.maybe.daplie.domains", "value": null }
, { "ip": true, "id": "www.daplie.domains", "value": null }
, { "ip": true, "id": "yes.daplie.domains", "value": true }
, { "ip": true, "id": "*.yes.daplie.domains", "value": true }
, { "ip": true, "id": "ns1.daplie.domains", "value": false }
];
// TODO use sqlite3 or autogenerate ?
info.conf.privkey = require('fs').readFileSync(__dirname + '/../../' + '/nsx.redirect-www.org.key.pem', 'ascii');
info.conf.pubkey = require('fs').readFileSync(__dirname + '/../../' + '/nsx.redirect-www.org.key.pem.pub', 'ascii');
// keys
// letsencrypt
// com.example.provider
// com.example.consumer
worker.send(info);
});
}
2016-03-31 06:39:15 +00:00
worker.send(info);
worker.on('message', touchMaster);
});
cluster.on('exit', function (worker, code, signal) {
console.info('[MASTER] Worker ' + worker.process.pid + ' died with code: ' + code + ', and signal: ' + signal);
workers = workers.map(function (w) {
if (worker !== w) {
return w;
}
return null;
}).filter(function (w) {
return w;
});
2015-11-19 07:42:20 +00:00
//console.log('WARNING: worker spawning turned off for debugging ');
fork();
});
fork();