mirror of
https://github.com/reality/dbot.git
synced 2024-11-23 20:39:25 +01:00
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
/**
|
|
* Module Name: Admin
|
|
* Description: Set of commands which only one who is a DepressionBot
|
|
* administrator can run - as such, it has its own command execution listener.
|
|
*/
|
|
var fs = require('fs'),
|
|
_ = require('underscore')._;
|
|
|
|
var admin = function(dbot) {
|
|
this.internalAPI = {
|
|
'getCurrentConfig': function(configKey, callback) {
|
|
var configPath = dbot.config;
|
|
configKey = configKey.split('.');
|
|
|
|
for(var i=0;i<configKey.length;i++) {
|
|
if(_.has(configPath, configKey[i])) {
|
|
configPath = configPath[configKey[i]];
|
|
} else {
|
|
configPath = null;
|
|
break;
|
|
}
|
|
}
|
|
|
|
callback(configPath);
|
|
},
|
|
|
|
'setConfig': function(configKey, newOption, callback) {
|
|
var configPath = dbot.customConfig;
|
|
configKey = configKey.split('.');
|
|
|
|
for(var i=0;i<configKey.length-1;i++) {
|
|
if(_.has(configPath, configKey[i])) {
|
|
configPath = configPath[configKey[i]];
|
|
} else {
|
|
return;
|
|
}
|
|
}
|
|
|
|
this.internalAPI.saveConfig();
|
|
dbot.reloadConfig();
|
|
callback(true);
|
|
},
|
|
|
|
'saveConfig': function() {
|
|
var config = dbot.customConfig;
|
|
fs.writeFileSync('config.json', JSON.stringify(config, null, ' '));
|
|
}
|
|
};
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return new admin(dbot);
|
|
};
|