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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 77 - (show 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 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 import Cooldown from '../automod/Cooldown';
17 import StartupManager from '../services/StartupManager';
18 import AutoClear from '../automod/AutoClear';
19 import RandomStatus from '../services/RandomStatus';
20 import DebugLogger from '../services/DebugLogger';
21 import BaseCLICommand from '../utils/structures/BaseCLICommand';
22
23 export default class DiscordClient extends Client {
24 private _commands = new Collection<string, BaseCommand>();
25 private _cliCommands = new Collection<string, BaseCLICommand>();
26 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 cooldown: Cooldown;
43 startupManager: StartupManager;
44 autoClear: AutoClear;
45 randomStatus: RandomStatus;
46 debugLogger: DebugLogger;
47
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 this.cooldown = new Cooldown(this);
74 this.startupManager = new StartupManager(this);
75 this.autoClear = new AutoClear(this);
76 this.randomStatus = new RandomStatus(this);
77 this.debugLogger = new DebugLogger(this);
78
79 DiscordClient.client = this;
80 }
81
82 get commands(): Collection<string, BaseCommand> {
83 return this._commands;
84 }
85
86 get cliCommands(): Collection<string, BaseCLICommand> {
87 return this._cliCommands;
88 }
89
90 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