/[sudobot]/trunk/src/CommandManager.js
ViewVC logotype

Diff of /trunk/src/CommandManager.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 7 by rakin, Mon Jul 29 17:28:12 2024 UTC revision 11 by rakin, Mon Jul 29 17:28:13 2024 UTC
# Line 2  const fs = require("fs"); Line 2  const fs = require("fs");
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 {
# Line 16  class CommandManager { Line 17  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) {
# Line 67  class CommandManager { Line 69  class CommandManager {
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    
# Line 77  class CommandManager { Line 91  class CommandManager {
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;

Legend:
Removed from v.7  
changed lines
  Added in v.11

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26