/[sudobot]/trunk/src/client/Client.ts
ViewVC logotype

Annotation of /trunk/src/client/Client.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 77 - (hide annotations)
Mon Jul 29 17:28:30 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 3255 byte(s)
Added command line system
1 rakin 51 import { Client, ClientOptions, Collection, Interaction, Message } from 'discord.js';
2     import BaseEvent from '../utils/structures/BaseEvent';
3     import BaseCommand from '../utils/structures/BaseCommand';
4     import { Config } from './Config';
5     import Database from './Database';
6     import path from 'path';
7     import Logger from '../automod/Logger';
8     import SpamFilter from '../automod/SpamFilter';
9     import SnippetManager from '../services/SnippetManager';
10     import AFKEngine from '../services/AFKEngine';
11     import Auth from '../services/Auth';
12     import MessageFilter from '../automod/MessageFilter';
13     import AntiRaid from '../automod/AntiRaid';
14     import Starboard from '../services/Starboard';
15     import Server from '../api/Server';
16 rakin 54 import Cooldown from '../automod/Cooldown';
17 rakin 58 import StartupManager from '../services/StartupManager';
18 rakin 65 import AutoClear from '../automod/AutoClear';
19 rakin 71 import RandomStatus from '../services/RandomStatus';
20 rakin 77 import DebugLogger from '../services/DebugLogger';
21     import BaseCLICommand from '../utils/structures/BaseCLICommand';
22 rakin 51
23     export default class DiscordClient extends Client {
24     private _commands = new Collection<string, BaseCommand>();
25 rakin 77 private _cliCommands = new Collection<string, BaseCLICommand>();
26 rakin 51 private _events = new Collection<string, BaseEvent>();
27    
28     rootdir: string;
29     msg: Message | Interaction | null = null;
30    
31     config: Config;
32     db: Database;
33     logger: Logger;
34     snippetManager: SnippetManager;
35     afkEngine: AFKEngine;
36     auth: Auth;
37     spamFilter: SpamFilter;
38     messageFilter: MessageFilter;
39     antiraid: AntiRaid;
40     starboard: Starboard;
41     server: Server;
42 rakin 54 cooldown: Cooldown;
43 rakin 58 startupManager: StartupManager;
44 rakin 65 autoClear: AutoClear;
45 rakin 71 randomStatus: RandomStatus;
46 rakin 77 debugLogger: DebugLogger;
47 rakin 51
48     static client: DiscordClient;
49    
50     constructor(options: ClientOptions, rootdir: string = __dirname) {
51     super({
52     ws: {
53     properties: {
54     $browser: "Discord iOS"
55     }
56     },
57     ...options
58     });
59    
60     this.rootdir = rootdir;
61    
62     this.config = new Config(this);
63     this.db = new Database(path.resolve(rootdir, 'database.db'), this);
64     this.logger = new Logger(this);
65     this.snippetManager = new SnippetManager(this);
66     this.afkEngine = new AFKEngine(this);
67     this.auth = new Auth(this);
68     this.spamFilter = new SpamFilter(this);
69     this.messageFilter = new MessageFilter(this);
70     this.antiraid = new AntiRaid(this);
71     this.starboard = new Starboard(this);
72     this.server = new Server(this);
73 rakin 54 this.cooldown = new Cooldown(this);
74 rakin 58 this.startupManager = new StartupManager(this);
75 rakin 65 this.autoClear = new AutoClear(this);
76 rakin 71 this.randomStatus = new RandomStatus(this);
77 rakin 77 this.debugLogger = new DebugLogger(this);
78 rakin 51
79     DiscordClient.client = this;
80     }
81    
82     get commands(): Collection<string, BaseCommand> {
83     return this._commands;
84     }
85    
86 rakin 77 get cliCommands(): Collection<string, BaseCLICommand> {
87     return this._cliCommands;
88     }
89    
90 rakin 51 get events(): Collection<string, BaseEvent> {
91     return this._events;
92     }
93    
94     setMessage(msg: Message | Interaction) {
95     this.msg = msg;
96     }
97     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26