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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26