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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26