diff --git a/Startup.js b/Startup.js index e2f0613..9e73685 100644 --- a/Startup.js +++ b/Startup.js @@ -1,4 +1,3 @@ -var RedditRadio = require("./RedditRadio"); var toml = require("toml"); var fs = require("fs"); var Radio = require("./Radio"); @@ -7,11 +6,6 @@ class Startup { constructor() { - this.RADIO = 'radio'; - this.RADIOS = 'radios'; - this.NO_RADIO = 'no-radio'; - this.REGULAR_BOT = 'regular-bot'; - this.radios = []; let configFile = process.env.CONFIG_FILE || "config.toml"; @@ -20,41 +14,18 @@ class Startup run() { - let args = this.parseArgs(); - switch (args.type) { - case this.RADIO: this.setupRadio(args.name); break; - case this.RADIOS: this.setupRadios(); break; - case this.NO_RADIO: this.setupNoRadio(); break; - default: this.startBot(this.config); break; - } + this.setupRadio(); break; } - setupNoRadio() - { - let config = this.config; - delete config.radios; - this.startBot(config); - } - - setupRadio(name) + setupRadio() { if (this.config.radios === undefined) { console.error('No radios are defined in the config file, exiting...'); process.exit(1); } for (let i = 0; i < this.config.radios.length; i++) { - if (this.config.radios[i].name === name) { - this.startRadio(this.config.radios[i]); - break; - } - } - this.setupSignals(); - } - - setupRadios() - { - for (var i = 0; i < this.config.radios.length; i++) { this.startRadio(this.config.radios[i]); + } } this.setupSignals(); } @@ -64,14 +35,6 @@ class Startup this.radios.push(new Radio(this.config, radioConfig)); } - startBot(config) - { - this.bot = new RedditRadio(config); - this.bot.start(); - - this.setupSignals(); - } - setupSignals() { var stopHandler = () => { @@ -85,17 +48,6 @@ class Startup process.on("SIGINT", stopHandler); // Ctrl+C process.on("SIGTERM", stopHandler); // Terminate } - - parseArgs() - { - let args = process.argv.splice(2); - switch (args[0]) { - case '--radio': return { type: this.RADIO, name: args[1]}; - case '--radios': return { type: this.RADIOS }; - case '--no-radios': return { type: this.NO_RADIO }; - default: return { type: this.REGULAR_BOT }; - } - } } module.exports = Startup;