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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 65 - (hide annotations)
Mon Jul 29 17:28:27 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 2751 byte(s)
Added autoclear channels on member leave support
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 51
20     export default class DiscordClient extends Client {
21     private _commands = new Collection<string, BaseCommand>();
22     private _events = new Collection<string, BaseEvent>();
23    
24     rootdir: string;
25     msg: Message | Interaction | null = null;
26    
27     config: Config;
28     db: Database;
29     logger: Logger;
30     snippetManager: SnippetManager;
31     afkEngine: AFKEngine;
32     auth: Auth;
33     spamFilter: SpamFilter;
34     messageFilter: MessageFilter;
35     antiraid: AntiRaid;
36     starboard: Starboard;
37     server: Server;
38 rakin 54 cooldown: Cooldown;
39 rakin 58 startupManager: StartupManager;
40 rakin 65 autoClear: AutoClear;
41 rakin 51
42     static client: DiscordClient;
43    
44     constructor(options: ClientOptions, rootdir: string = __dirname) {
45     super({
46     ws: {
47     properties: {
48     $browser: "Discord iOS"
49     }
50     },
51     ...options
52     });
53    
54     this.rootdir = rootdir;
55    
56     this.config = new Config(this);
57     this.db = new Database(path.resolve(rootdir, 'database.db'), this);
58     this.logger = new Logger(this);
59     this.snippetManager = new SnippetManager(this);
60     this.afkEngine = new AFKEngine(this);
61     this.auth = new Auth(this);
62     this.spamFilter = new SpamFilter(this);
63     this.messageFilter = new MessageFilter(this);
64     this.antiraid = new AntiRaid(this);
65     this.starboard = new Starboard(this);
66     this.server = new Server(this);
67 rakin 54 this.cooldown = new Cooldown(this);
68 rakin 58 this.startupManager = new StartupManager(this);
69 rakin 65 this.autoClear = new AutoClear(this);
70 rakin 51
71     DiscordClient.client = this;
72     }
73    
74     get commands(): Collection<string, BaseCommand> {
75     return this._commands;
76     }
77    
78     get events(): Collection<string, BaseEvent> {
79     return this._events;
80     }
81    
82     setMessage(msg: Message | Interaction) {
83     this.msg = msg;
84     }
85     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26