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.
133 lines
3.4 KiB
JavaScript
133 lines
3.4 KiB
JavaScript
4 years ago
|
var Decrees = module.exports;
|
||
|
|
||
|
/* Admin decrees which modify global server state
|
||
|
|
||
|
IMPLEMENTED:
|
||
|
|
||
|
RESTRICT_REGISTRATION
|
||
|
|
||
|
NOT IMPLEMENTED:
|
||
|
|
||
|
ADD_QUOTA
|
||
|
RM_QUOTA
|
||
|
UPDATE_QUOTA
|
||
|
ADD_INVITE
|
||
|
REVOKE_INVITE
|
||
|
REDEEM_INVITE
|
||
|
|
||
|
|
||
|
*/
|
||
|
|
||
|
var commands = {};
|
||
|
/* commands have a simple API:
|
||
|
|
||
|
* they receive the global Env and the arguments to be applied
|
||
|
* if the arguments are invalid the operation will not be applied
|
||
|
* the command throws
|
||
|
* if the arguments are valid but do not result in a change, the operation is redundant.
|
||
|
* return false
|
||
|
* if the arguments are valid and will result in a change, the operation should be applied
|
||
|
* apply it
|
||
|
* return true to indicate that it was applied
|
||
|
|
||
|
*/
|
||
|
|
||
|
// Toggles a simple boolean
|
||
|
commands.RESTRICT_REGISTRATION = function (Env, args) {
|
||
|
if (!Array.isArray(args) || typeof(args[0]) !== 'boolean') {
|
||
|
throw new Error('INVALID_ARGS');
|
||
|
}
|
||
|
var bool = args[0];
|
||
|
if (bool === Env.restrictRegistration) { return false; }
|
||
|
Env.restrictRegistration = bool;
|
||
|
return true;
|
||
|
};
|
||
|
|
||
|
// [<command>, <args>, <author>, <time>]
|
||
|
var handleCommand = Decrees.handleCommand = function (Env, line) {
|
||
|
var command = line[0];
|
||
|
var args = line[1];
|
||
|
|
||
|
if (typeof(commands[command]) !== 'function') {
|
||
|
console.error(line);
|
||
|
throw new Error("DECREE_UNSUPPORTED_COMMAND");
|
||
|
}
|
||
|
|
||
|
return commands[command](Env, args);
|
||
|
};
|
||
|
|
||
|
Decrees.createLineHandler = function (Env) {
|
||
|
var Log = Env.Log;
|
||
|
|
||
|
var index = -1;
|
||
|
|
||
|
return function (err, line) {
|
||
|
index++;
|
||
|
if (err) {
|
||
|
// Log the error and bail out
|
||
|
return void Log.error("DECREE_LINE_ERR", {
|
||
|
error: err.message,
|
||
|
index: index,
|
||
|
line: line,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if (Array.isArray(line)) {
|
||
|
try {
|
||
|
return void handleCommand(Env, line);
|
||
|
} catch (err2) {
|
||
|
return void Log.error("DECREE_COMMAND_ERR", {
|
||
|
error: err2.message,
|
||
|
index: index,
|
||
|
line: line,
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Log.error("DECREE_HANDLER_WEIRD_LINE", {
|
||
|
line: line,
|
||
|
index: index,
|
||
|
});
|
||
|
};
|
||
|
};
|
||
|
|
||
|
var Fs = require("fs");
|
||
|
var Path = require("path");
|
||
|
var readFileBin = require("./stream-file").readFileBin;
|
||
|
var Util = require("./common-util");
|
||
|
var Schedule = require("./schedule");
|
||
|
|
||
|
Decrees.load = function (Env, cb) {
|
||
|
Env.scheduleDecree = Env.scheduleDecree || Schedule();
|
||
|
|
||
|
var decreePath = Env.paths.decree;
|
||
|
var decreeName = Path.join(Env.paths.decree, 'decree.ndjson'); // XXX
|
||
|
|
||
|
var stream = Fs.createReadStream(decreeName, {start: 0});
|
||
|
|
||
|
var handler = Decrees.createLineHandler(Env);
|
||
|
|
||
|
Env.scheduleDecree.blocking('', function (unblock) {
|
||
|
var done = Util.once(Util.both(cb, unblock));
|
||
|
readFileBin(stream, function (msgObj, next) {
|
||
|
var text = msgObj.buff.toString('utf8');
|
||
|
try {
|
||
|
handler(void 0, JSON.parse(text));
|
||
|
} catch (err) {
|
||
|
handler(err);
|
||
|
}
|
||
|
next();
|
||
|
}, function (err) {
|
||
|
done(err);
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
Decrees.write = function (Env, decree, _cb) {
|
||
|
var path = Path.join(Env.paths.decree, 'decree.ndjson');
|
||
|
Env.scheduleDecree.ordered('', function (next) {
|
||
|
var cb = Util.both(_cb, next);
|
||
|
Fs.appendFile(path, JSON.stringify(decree) + '\n', cb);
|
||
|
});
|
||
|
};
|