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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26