sync/src/server.js

409 lines
13 KiB
JavaScript
Raw Normal View History

2015-07-06 11:16:02 -07:00
const VERSION = require("../package.json").version;
2013-10-11 16:31:40 -05:00
var singleton = null;
2014-01-22 17:11:26 -06:00
var Config = require("./config");
2015-09-20 23:17:06 -07:00
var Promise = require("bluebird");
2015-10-01 22:02:59 -07:00
import * as ChannelStore from './channel-storage/channelstore';
2016-07-03 21:28:43 -07:00
import { EventEmitter } from 'events';
2017-04-04 23:02:31 -07:00
2017-07-08 20:11:54 -07:00
const LOGGER = require('@calzoneman/jsli')('server');
2013-10-11 16:31:40 -05:00
module.exports = {
2014-01-22 17:11:26 -06:00
init: function () {
2017-04-04 23:02:31 -07:00
LOGGER.info("Starting CyTube v%s", VERSION);
2013-10-11 16:31:40 -05:00
var chanlogpath = path.join(__dirname, "../chanlogs");
fs.exists(chanlogpath, function (exists) {
2016-11-17 23:01:20 -08:00
exists || fs.mkdirSync(chanlogpath);
2013-10-11 16:31:40 -05:00
});
var chandumppath = path.join(__dirname, "../chandump");
fs.exists(chandumppath, function (exists) {
2016-11-17 23:01:20 -08:00
exists || fs.mkdirSync(chandumppath);
2013-10-11 16:31:40 -05:00
});
var gdvttpath = path.join(__dirname, "../google-drive-subtitles");
fs.exists(gdvttpath, function (exists) {
2016-11-17 23:01:20 -08:00
exists || fs.mkdirSync(gdvttpath);
});
2014-01-22 17:11:26 -06:00
singleton = new Server();
2013-10-11 16:31:40 -05:00
return singleton;
},
getServer: function () {
return singleton;
}
};
2013-07-20 00:27:21 +04:00
var path = require("path");
2013-07-28 19:47:55 -04:00
var fs = require("fs");
2013-09-09 17:16:41 -05:00
var http = require("http");
var https = require("https");
2013-04-17 13:42:29 -05:00
var express = require("express");
2014-05-20 19:30:14 -07:00
var Channel = require("./channel/channel");
2014-02-01 12:41:06 -06:00
var db = require("./database");
2014-05-20 19:30:14 -07:00
var Flags = require("./flags");
var sio = require("socket.io");
2015-10-26 22:56:53 -07:00
import LocalChannelIndex from './web/localchannelindex';
2016-06-09 23:42:30 -07:00
import { PartitionChannelIndex } from './partition/partitionchannelindex';
2015-10-26 22:56:53 -07:00
import IOConfiguration from './configuration/ioconfig';
import WebConfiguration from './configuration/webconfig';
2015-10-26 22:56:53 -07:00
import NullClusterClient from './io/cluster/nullclusterclient';
2015-11-01 17:42:20 -08:00
import session from './session';
2016-02-04 21:43:20 -08:00
import { LegacyModule } from './legacymodule';
2016-06-06 21:54:49 -07:00
import { PartitionModule } from './partition/partitionmodule';
import * as Switches from './switches';
2014-01-22 17:11:26 -06:00
var Server = function () {
2013-10-09 18:10:26 -05:00
var self = this;
self.channels = [],
self.express = null;
self.db = null;
self.api = null;
self.announcement = null;
self.infogetter = null;
self.servers = {};
self.chanPath = Config.get('channel-path');
2013-10-09 18:10:26 -05:00
2016-02-04 21:43:20 -08:00
var initModule;
if (Config.get('enable-partition')) {
2016-06-08 22:54:16 -07:00
initModule = this.initModule = new PartitionModule();
self.partitionDecider = initModule.getPartitionDecider();
2016-02-04 21:43:20 -08:00
} else {
2016-06-08 22:54:16 -07:00
initModule = this.initModule = new LegacyModule();
2016-02-04 21:43:20 -08:00
}
2013-10-09 18:10:26 -05:00
// database init ------------------------------------------------------
var Database = require("./database");
2013-12-12 16:28:30 -06:00
self.db = Database;
2014-01-22 17:11:26 -06:00
self.db.init();
2015-10-01 22:02:59 -07:00
ChannelStore.init();
2013-10-11 18:15:44 -05:00
// webserver init -----------------------------------------------------
2015-10-26 22:56:53 -07:00
const ioConfig = IOConfiguration.fromOldConfig(Config);
const webConfig = WebConfiguration.fromOldConfig(Config);
2016-02-04 21:43:20 -08:00
const clusterClient = initModule.getClusterClient();
2016-06-09 23:42:30 -07:00
var channelIndex;
if (Config.get("enable-partition")) {
channelIndex = new PartitionChannelIndex(
initModule.getRedisClientProvider().get()
);
} else {
channelIndex = new LocalChannelIndex();
}
2013-10-09 18:10:26 -05:00
self.express = express();
2015-10-26 22:56:53 -07:00
require("./web/webserver").init(self.express,
webConfig,
2015-10-26 22:56:53 -07:00
ioConfig,
clusterClient,
2015-11-01 17:42:20 -08:00
channelIndex,
session);
2013-10-09 18:10:26 -05:00
// http/https/sio server init -----------------------------------------
var key = "", cert = "", ca = undefined;
if (Config.get("https.enabled")) {
const certData = self.loadCertificateData();
key = certData.key;
cert = certData.cert;
ca = certData.ca;
2013-10-09 18:10:26 -05:00
}
var opts = {
key: key,
cert: cert,
passphrase: Config.get("https.passphrase"),
ca: ca,
2015-03-06 22:29:21 +00:00
ciphers: Config.get("https.ciphers"),
2015-03-06 21:59:34 +00:00
honorCipherOrder: true
};
Config.get("listen").forEach(function (bind) {
var id = bind.ip + ":" + bind.port;
if (id in self.servers) {
2017-04-04 23:02:31 -07:00
LOGGER.warn("Ignoring duplicate listen address %s", id);
return;
}
if (bind.https && Config.get("https.enabled")) {
self.servers[id] = https.createServer(opts, self.express)
.listen(bind.port, bind.ip);
2015-01-06 10:54:14 -05:00
self.servers[id].on("clientError", function (err, socket) {
try {
socket.destroy();
} catch (e) {
}
});
} else if (bind.http) {
self.servers[id] = self.express.listen(bind.port, bind.ip);
2015-01-06 10:54:14 -05:00
self.servers[id].on("clientError", function (err, socket) {
try {
socket.destroy();
} catch (e) {
}
});
}
});
2014-01-22 21:12:43 -06:00
require("./io/ioserver").init(self, webConfig);
2013-10-09 18:10:26 -05:00
// background tasks init ----------------------------------------------
require("./bgtask")(self);
// prometheus server
const prometheusConfig = Config.getPrometheusConfig();
if (prometheusConfig.isEnabled()) {
require("./prometheus-server").init(prometheusConfig);
}
// setuid
require("./setuid");
2016-02-04 21:43:20 -08:00
initModule.onReady();
2013-10-09 18:10:26 -05:00
};
2016-07-03 21:28:43 -07:00
Server.prototype = Object.create(EventEmitter.prototype);
Server.prototype.loadCertificateData = function loadCertificateData() {
const data = {
key: fs.readFileSync(path.resolve(__dirname, "..",
Config.get("https.keyfile"))),
cert: fs.readFileSync(path.resolve(__dirname, "..",
Config.get("https.certfile")))
};
if (Config.get("https.cafile")) {
data.ca = fs.readFileSync(path.resolve(__dirname, "..",
Config.get("https.cafile")));
}
return data;
};
Server.prototype.reloadCertificateData = function reloadCertificateData() {
const certData = this.loadCertificateData();
Object.keys(this.servers).forEach(key => {
const server = this.servers[key];
// TODO: Replace with actual node API
// once https://github.com/nodejs/node/issues/4464 is implemented.
if (server._sharedCreds) {
try {
server._sharedCreds.context.setCert(certData.cert);
server._sharedCreds.context.setKey(certData.key, Config.get("https.passphrase"));
LOGGER.info('Reloaded certificate data for %s', key);
} catch (error) {
LOGGER.error('Failed to reload certificate data for %s: %s', key, error.stack);
}
}
});
};
2013-10-09 18:10:26 -05:00
Server.prototype.getHTTPIP = function (req) {
2013-11-24 18:13:58 -06:00
var ip = req.ip;
if (ip === "127.0.0.1" || ip === "::1") {
var fwd = req.header("x-forwarded-for");
if (fwd && typeof fwd === "string") {
return fwd;
}
}
2013-11-24 18:13:58 -06:00
return ip;
2013-10-09 18:10:26 -05:00
};
2013-10-09 18:10:26 -05:00
Server.prototype.getSocketIP = function (socket) {
2013-07-06 13:00:02 -04:00
var raw = socket.handshake.address.address;
2013-11-24 18:13:58 -06:00
if (raw === "127.0.0.1" || raw === "::1") {
var fwd = socket.handshake.headers["x-forwarded-for"];
if (fwd && typeof fwd === "string") {
return fwd;
2013-07-06 13:00:02 -04:00
}
}
2013-07-15 18:57:33 -04:00
return raw;
2013-10-09 18:10:26 -05:00
};
2013-07-15 18:57:33 -04:00
2013-10-09 18:10:26 -05:00
Server.prototype.isChannelLoaded = function (name) {
name = name.toLowerCase();
for (var i = 0; i < this.channels.length; i++) {
if (this.channels[i].uniqueName == name)
2013-10-09 18:10:26 -05:00
return true;
}
return false;
};
2013-09-09 17:16:41 -05:00
2013-10-09 18:10:26 -05:00
Server.prototype.getChannel = function (name) {
var cname = name.toLowerCase();
if (this.partitionDecider &&
!this.partitionDecider.isChannelOnThisPartition(cname)) {
const error = new Error(`Channel '${cname}' is mapped to a different partition`);
error.code = 'EWRONGPART';
throw error;
}
var self = this;
2014-01-23 15:53:53 -06:00
for (var i = 0; i < self.channels.length; i++) {
if (self.channels[i].uniqueName === cname)
return self.channels[i];
2013-10-09 18:10:26 -05:00
}
2013-09-09 17:16:41 -05:00
2013-10-11 16:31:40 -05:00
var c = new Channel(name);
2014-01-23 15:53:53 -06:00
c.on("empty", function () {
self.unloadChannel(c);
});
2017-03-01 20:46:01 -08:00
c.waitFlag(Flags.C_ERROR, () => {
self.unloadChannel(c, { skipSave: true });
});
2014-01-23 15:53:53 -06:00
self.channels.push(c);
2013-10-09 18:10:26 -05:00
return c;
};
2013-09-09 17:16:41 -05:00
Server.prototype.unloadChannel = function (chan, options) {
if (chan.dead) {
return;
}
if (!options) {
options = {};
}
if (!options.skipSave) {
chan.saveState().catch(error => {
LOGGER.error(`Failed to save /${this.chanPath}/${chan.name} for unload: ${error.stack}`);
});
}
2013-09-09 17:16:41 -05:00
2014-03-04 11:57:05 -06:00
chan.logger.log("[init] Channel shutting down");
2013-10-09 18:10:26 -05:00
chan.logger.close();
2014-05-20 19:30:14 -07:00
chan.notifyModules("unload", []);
Object.keys(chan.modules).forEach(function (k) {
chan.modules[k].dead = true;
/*
* Automatically clean up any timeouts/intervals assigned
* to properties of channel modules. Prevents a memory leak
* in case of forgetting to clear the timer on the "unload"
* module event.
*/
Object.keys(chan.modules[k]).forEach(function (prop) {
if (chan.modules[k][prop] && chan.modules[k][prop]._onTimeout) {
2017-04-04 23:02:31 -07:00
LOGGER.warn("Detected non-null timer when unloading " +
"module " + k + ": " + prop);
try {
clearTimeout(chan.modules[k][prop]);
clearInterval(chan.modules[k][prop]);
} catch (error) {
2017-04-04 23:02:31 -07:00
LOGGER.error(error.stack);
}
}
});
2014-05-20 19:30:14 -07:00
});
2013-10-09 18:10:26 -05:00
for (var i = 0; i < this.channels.length; i++) {
2014-01-23 15:53:53 -06:00
if (this.channels[i].uniqueName === chan.uniqueName) {
2013-10-09 18:10:26 -05:00
this.channels.splice(i, 1);
i--;
}
}
2017-04-04 23:02:31 -07:00
LOGGER.info("Unloaded channel " + chan.name);
2016-06-18 00:32:50 -07:00
chan.broadcastUsercount.cancel();
2013-10-09 18:10:26 -05:00
// Empty all outward references from the channel
var keys = Object.keys(chan);
for (var i in keys) {
if (keys[i] !== "refCounter") {
delete chan[keys[i]];
}
2013-10-09 18:10:26 -05:00
}
chan.dead = true;
};
2014-05-23 23:09:36 -07:00
Server.prototype.packChannelList = function (publicOnly, isAdmin) {
2014-01-20 17:52:36 -06:00
var channels = this.channels.filter(function (c) {
if (!publicOnly) {
return true;
}
2014-05-20 19:30:14 -07:00
return c.modules.options && c.modules.options.get("show_public");
2014-01-20 17:52:36 -06:00
});
2014-05-23 22:40:35 -07:00
var self = this;
return channels.map(function (c) {
2014-05-23 23:09:36 -07:00
return c.packInfo(isAdmin);
2014-05-23 22:40:35 -07:00
});
2014-01-20 17:52:36 -06:00
};
2014-02-01 12:41:06 -06:00
Server.prototype.announce = function (data) {
2016-07-03 21:28:43 -07:00
this.setAnnouncement(data);
2014-02-01 12:41:06 -06:00
if (data == null) {
db.clearAnnouncement();
} else {
db.setAnnouncement(data);
2016-07-03 21:28:43 -07:00
}
this.emit("announcement", data);
};
Server.prototype.setAnnouncement = function (data) {
if (data == null) {
this.announcement = null;
} else {
this.announcement = data;
sio.instance.emit("announcement", data);
2014-02-01 12:41:06 -06:00
}
2013-10-09 18:10:26 -05:00
};
2013-10-09 18:10:26 -05:00
Server.prototype.shutdown = function () {
2017-04-04 23:02:31 -07:00
LOGGER.info("Unloading channels");
Promise.map(this.channels, channel => {
try {
return channel.saveState().tap(() => {
LOGGER.info(`Saved /${this.chanPath}/${channel.name}`);
}).catch(err => {
LOGGER.error(`Failed to save /${this.chanPath}/${channel.name}: ${err.stack}`);
});
} catch (error) {
2017-04-04 23:02:31 -07:00
LOGGER.error(`Failed to save channel: ${error.stack}`);
}
}, { concurrency: 5 }).then(() => {
2017-04-04 23:02:31 -07:00
LOGGER.info("Goodbye");
2015-09-20 23:17:06 -07:00
process.exit(0);
}).catch(err => {
2017-04-04 23:02:31 -07:00
LOGGER.error(`Caught error while saving channels: ${err.stack}`);
process.exit(1);
2015-09-20 23:17:06 -07:00
});
2013-10-09 18:10:26 -05:00
};
2016-06-08 22:54:16 -07:00
Server.prototype.handlePartitionMapChange = function () {
2016-06-08 22:54:16 -07:00
const channels = Array.prototype.slice.call(this.channels);
Promise.map(channels, channel => {
2016-06-08 22:54:16 -07:00
if (channel.dead) {
return;
}
if (!this.partitionDecider.isChannelOnThisPartition(channel.uniqueName)) {
2017-04-04 23:02:31 -07:00
LOGGER.info("Partition changed for " + channel.uniqueName);
2016-06-08 22:54:16 -07:00
return channel.saveState().then(() => {
channel.broadcastAll("partitionChange",
this.partitionDecider.getPartitionForChannel(channel.uniqueName));
const users = Array.prototype.slice.call(channel.users);
users.forEach(u => {
try {
u.socket.disconnect();
} catch (error) {
}
});
this.unloadChannel(channel, { skipSave: true });
}).catch(error => {
LOGGER.error(`Failed to unload /${this.chanPath}/${channel.name} for ` +
`partition map flip: ${error.stack}`);
2016-06-08 22:54:16 -07:00
});
}
}, { concurrency: 5 }).then(() => {
2017-04-04 23:02:31 -07:00
LOGGER.info("Partition reload complete");
2016-06-08 22:54:16 -07:00
});
};
Server.prototype.reloadPartitionMap = function () {
2016-10-15 16:09:27 -07:00
if (!Config.get("enable-partition")) {
return;
}
this.initModule.getPartitionMapReloader().reload();
};