2 |
const path = require("path"); |
const path = require("path"); |
3 |
const MessageEmbed = require("./MessageEmbed"); |
const MessageEmbed = require("./MessageEmbed"); |
4 |
const SnippetManager = require("./SnippetManager"); |
const SnippetManager = require("./SnippetManager"); |
5 |
|
const Shield = require("./Shield"); |
6 |
const { escapeRegex } = require("./util"); |
const { escapeRegex } = require("./util"); |
7 |
|
|
8 |
class CommandManager { |
class CommandManager { |
17 |
this.normalArgs = []; |
this.normalArgs = []; |
18 |
this.loadCommands(); |
this.loadCommands(); |
19 |
this.snippetManager = new SnippetManager(); |
this.snippetManager = new SnippetManager(); |
20 |
|
this.shield = new Shield(); |
21 |
} |
} |
22 |
|
|
23 |
setMessage(msg) { |
setMessage(msg) { |
69 |
} |
} |
70 |
} |
} |
71 |
|
|
72 |
|
async notAllowed() { |
73 |
|
if (app.config.get('warn_notallowed')) { |
74 |
|
await app.msg.reply({ |
75 |
|
embeds: [ |
76 |
|
new MessageEmbed() |
77 |
|
.setColor('#f14a60') |
78 |
|
.setDescription(`:x: You don't have permission to run this command.`) |
79 |
|
] |
80 |
|
}); |
81 |
|
} |
82 |
|
} |
83 |
|
|
84 |
async exec() { |
async exec() { |
85 |
let cmd = this.commands[this.commandName]; |
let cmd = this.commands[this.commandName]; |
86 |
|
|
91 |
|
|
92 |
return await cmd.handle(this.msg, this); |
return await cmd.handle(this.msg, this); |
93 |
} |
} |
94 |
|
|
95 |
|
verify() { |
96 |
|
return this.shield.verify(this.msg, this); |
97 |
|
} |
98 |
} |
} |
99 |
|
|
100 |
module.exports = CommandManager; |
module.exports = CommandManager; |