blob: 2ae6af9a0d327528851ec9ebc10a62b7e79ad32e [file] [log] [blame]
pineafan63fc5e22022-08-04 22:04:10 +01001import type Discord from "discord.js";
2import { Collection, MongoClient } from "mongodb";
Skyler Grey75ea9172022-08-06 10:22:23 +01003import config from "../config/main.json" assert { type: "json" };
pineafan4edb7762022-06-26 19:21:04 +01004
5const mongoClient = new MongoClient(config.mongoUrl);
pineafan63fc5e22022-08-04 22:04:10 +01006await mongoClient.connect();
pineafan4edb7762022-06-26 19:21:04 +01007const database = mongoClient.db("Nucleus");
pineafan6fb3e072022-05-20 19:27:23 +01008
pineafan4edb7762022-06-26 19:21:04 +01009export class Guilds {
pineafan6fb3e072022-05-20 19:27:23 +010010 guilds: Collection<GuildConfig>;
pineafan63fc5e22022-08-04 22:04:10 +010011 defaultData: GuildConfig | null;
12
13 constructor() {
pineafan4edb7762022-06-26 19:21:04 +010014 this.guilds = database.collection<GuildConfig>("guilds");
pineafan63fc5e22022-08-04 22:04:10 +010015 this.defaultData = null;
pineafan6fb3e072022-05-20 19:27:23 +010016 }
17
Skyler Greyad002172022-08-16 18:48:26 +010018 async setup(): Promise<Guilds> {
Skyler Grey11236ba2022-08-08 21:13:33 +010019 this.defaultData = (await import("../config/default.json", { assert: { type: "json" } }))
20 .default as unknown as GuildConfig;
21 return this;
pineafan63fc5e22022-08-04 22:04:10 +010022 }
23
Skyler Greyad002172022-08-16 18:48:26 +010024 async read(guild: string): Promise<GuildConfig> {
pineafan63fc5e22022-08-04 22:04:10 +010025 const entry = await this.guilds.findOne({ id: guild });
PineaFandf4996f2023-01-01 14:20:06 +000026 return Object.assign({}, this.defaultData, entry);
pineafan6fb3e072022-05-20 19:27:23 +010027 }
28
Skyler Grey11236ba2022-08-08 21:13:33 +010029 async write(guild: string, set: object | null, unset: string[] | string = []) {
pineafan63fc5e22022-08-04 22:04:10 +010030 // eslint-disable-next-line @typescript-eslint/no-explicit-any
31 const uo: Record<string, any> = {};
32 if (!Array.isArray(unset)) unset = [unset];
33 for (const key of unset) {
pineafan0bc04162022-07-25 17:22:26 +010034 uo[key] = null;
pineafan6702cef2022-06-13 17:52:37 +010035 }
Skyler Grey75ea9172022-08-06 10:22:23 +010036 const out = { $set: {}, $unset: {} };
37 if (set) out.$set = set;
38 if (unset.length) out.$unset = uo;
pineafan0bc04162022-07-25 17:22:26 +010039 await this.guilds.updateOne({ id: guild }, out, { upsert: true });
pineafan6702cef2022-06-13 17:52:37 +010040 }
41
pineafan63fc5e22022-08-04 22:04:10 +010042 // eslint-disable-next-line @typescript-eslint/no-explicit-any
pineafan6702cef2022-06-13 17:52:37 +010043 async append(guild: string, key: string, value: any) {
44 if (Array.isArray(value)) {
Skyler Grey75ea9172022-08-06 10:22:23 +010045 await this.guilds.updateOne(
46 { id: guild },
47 {
48 $addToSet: { [key]: { $each: value } }
49 },
50 { upsert: true }
51 );
pineafan6702cef2022-06-13 17:52:37 +010052 } else {
Skyler Grey75ea9172022-08-06 10:22:23 +010053 await this.guilds.updateOne(
54 { id: guild },
55 {
56 $addToSet: { [key]: value }
57 },
58 { upsert: true }
59 );
pineafan6702cef2022-06-13 17:52:37 +010060 }
61 }
62
Skyler Grey75ea9172022-08-06 10:22:23 +010063 async remove(
64 guild: string,
65 key: string,
Skyler Greyc634e2b2022-08-06 17:50:48 +010066 // eslint-disable-next-line @typescript-eslint/no-explicit-any
Skyler Grey75ea9172022-08-06 10:22:23 +010067 value: any,
68 innerKey?: string | null
69 ) {
pineafan63fc5e22022-08-04 22:04:10 +010070 console.log(Array.isArray(value));
pineafan02ba0232022-07-24 22:16:15 +010071 if (innerKey) {
Skyler Grey75ea9172022-08-06 10:22:23 +010072 await this.guilds.updateOne(
73 { id: guild },
74 {
75 $pull: { [key]: { [innerKey]: { $eq: value } } }
76 },
77 { upsert: true }
78 );
pineafan0bc04162022-07-25 17:22:26 +010079 } else if (Array.isArray(value)) {
Skyler Grey75ea9172022-08-06 10:22:23 +010080 await this.guilds.updateOne(
81 { id: guild },
82 {
83 $pullAll: { [key]: value }
84 },
85 { upsert: true }
86 );
pineafan6702cef2022-06-13 17:52:37 +010087 } else {
Skyler Grey75ea9172022-08-06 10:22:23 +010088 await this.guilds.updateOne(
89 { id: guild },
90 {
91 $pullAll: { [key]: [value] }
92 },
93 { upsert: true }
94 );
pineafan6702cef2022-06-13 17:52:37 +010095 }
pineafan6fb3e072022-05-20 19:27:23 +010096 }
pineafane23c4ec2022-07-27 21:56:27 +010097
98 async delete(guild: string) {
99 await this.guilds.deleteOne({ id: guild });
100 }
pineafan6fb3e072022-05-20 19:27:23 +0100101}
102
pineafan4edb7762022-06-26 19:21:04 +0100103export class History {
104 histories: Collection<HistorySchema>;
pineafan4edb7762022-06-26 19:21:04 +0100105
pineafan3a02ea32022-08-11 21:35:04 +0100106 constructor() {
pineafan4edb7762022-06-26 19:21:04 +0100107 this.histories = database.collection<HistorySchema>("history");
pineafan4edb7762022-06-26 19:21:04 +0100108 }
109
Skyler Grey75ea9172022-08-06 10:22:23 +0100110 async create(
111 type: string,
112 guild: string,
113 user: Discord.User,
114 moderator: Discord.User | null,
115 reason: string | null,
pineafan3a02ea32022-08-11 21:35:04 +0100116 before?: string | null,
117 after?: string | null,
118 amount?: string | null
Skyler Grey75ea9172022-08-06 10:22:23 +0100119 ) {
pineafan4edb7762022-06-26 19:21:04 +0100120 await this.histories.insertOne({
121 type: type,
122 guild: guild,
123 user: user.id,
pineafan3a02ea32022-08-11 21:35:04 +0100124 moderator: moderator ? moderator.id : null,
pineafan4edb7762022-06-26 19:21:04 +0100125 reason: reason,
126 occurredAt: new Date(),
pineafan3a02ea32022-08-11 21:35:04 +0100127 before: before ?? null,
128 after: after ?? null,
129 amount: amount ?? null
pineafan4edb7762022-06-26 19:21:04 +0100130 });
131 }
132
133 async read(guild: string, user: string, year: number) {
Skyler Grey75ea9172022-08-06 10:22:23 +0100134 const entry = (await this.histories
135 .find({
136 guild: guild,
137 user: user,
138 occurredAt: {
139 $gte: new Date(year - 1, 11, 31, 23, 59, 59),
140 $lt: new Date(year + 1, 0, 1, 0, 0, 0)
141 }
142 })
143 .toArray()) as HistorySchema[];
pineafan4edb7762022-06-26 19:21:04 +0100144 return entry;
145 }
pineafane23c4ec2022-07-27 21:56:27 +0100146
147 async delete(guild: string) {
148 await this.histories.deleteMany({ guild: guild });
149 }
pineafan4edb7762022-06-26 19:21:04 +0100150}
151
152export class ModNotes {
153 modNotes: Collection<ModNoteSchema>;
pineafan4edb7762022-06-26 19:21:04 +0100154
pineafan3a02ea32022-08-11 21:35:04 +0100155 constructor() {
pineafan4edb7762022-06-26 19:21:04 +0100156 this.modNotes = database.collection<ModNoteSchema>("modNotes");
pineafan4edb7762022-06-26 19:21:04 +0100157 }
158
159 async create(guild: string, user: string, note: string | null) {
Skyler Grey11236ba2022-08-08 21:13:33 +0100160 await this.modNotes.updateOne({ guild: guild, user: user }, { $set: { note: note } }, { upsert: true });
pineafan4edb7762022-06-26 19:21:04 +0100161 }
162
163 async read(guild: string, user: string) {
pineafan63fc5e22022-08-04 22:04:10 +0100164 const entry = await this.modNotes.findOne({ guild: guild, user: user });
pineafan4edb7762022-06-26 19:21:04 +0100165 return entry?.note ?? null;
166 }
167}
168
pineafan73a7c4a2022-07-24 10:38:04 +0100169export class Premium {
170 premium: Collection<PremiumSchema>;
pineafan4edb7762022-06-26 19:21:04 +0100171
pineafan3a02ea32022-08-11 21:35:04 +0100172 constructor() {
pineafan73a7c4a2022-07-24 10:38:04 +0100173 this.premium = database.collection<PremiumSchema>("premium");
pineafan4edb7762022-06-26 19:21:04 +0100174 }
175
pineafan73a7c4a2022-07-24 10:38:04 +0100176 async hasPremium(guild: string) {
Skyler Grey75ea9172022-08-06 10:22:23 +0100177 const entry = await this.premium.findOne({
178 appliesTo: { $in: [guild] }
179 });
pineafane23c4ec2022-07-27 21:56:27 +0100180 return entry !== null;
pineafan4edb7762022-06-26 19:21:04 +0100181 }
182}
183
pineafan6fb3e072022-05-20 19:27:23 +0100184export interface GuildConfig {
Skyler Grey75ea9172022-08-06 10:22:23 +0100185 id: string;
186 version: number;
pineafan6fb3e072022-05-20 19:27:23 +0100187 singleEventNotifications: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100188 statsChannelDeleted: boolean;
189 };
pineafan6fb3e072022-05-20 19:27:23 +0100190 filters: {
191 images: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100192 NSFW: boolean;
193 size: boolean;
194 };
195 malware: boolean;
pineafan6fb3e072022-05-20 19:27:23 +0100196 wordFilter: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100197 enabled: boolean;
pineafan6fb3e072022-05-20 19:27:23 +0100198 words: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100199 strict: string[];
200 loose: string[];
201 };
pineafan6fb3e072022-05-20 19:27:23 +0100202 allowed: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100203 users: string[];
204 roles: string[];
205 channels: string[];
206 };
207 };
pineafan6fb3e072022-05-20 19:27:23 +0100208 invite: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100209 enabled: boolean;
210 channels: string[];
211 };
pineafan6fb3e072022-05-20 19:27:23 +0100212 pings: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100213 mass: number;
214 everyone: boolean;
215 roles: boolean;
pineafan6fb3e072022-05-20 19:27:23 +0100216 allowed: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100217 roles: string[];
218 rolesToMention: string[];
219 users: string[];
220 channels: string[];
221 };
222 };
223 };
pineafan6fb3e072022-05-20 19:27:23 +0100224 welcome: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100225 enabled: boolean;
Skyler Grey75ea9172022-08-06 10:22:23 +0100226 role: string | null;
227 ping: string | null;
228 channel: string | null;
229 message: string | null;
230 };
231 stats: Record<string, { name: string; enabled: boolean }>;
pineafan6fb3e072022-05-20 19:27:23 +0100232 logging: {
233 logs: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100234 enabled: boolean;
235 channel: string | null;
Skyler Greyad002172022-08-16 18:48:26 +0100236 toLog: string;
Skyler Grey75ea9172022-08-06 10:22:23 +0100237 };
pineafan6fb3e072022-05-20 19:27:23 +0100238 staff: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100239 channel: string | null;
240 };
pineafan73a7c4a2022-07-24 10:38:04 +0100241 attachments: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100242 channel: string | null;
243 saved: Record<string, string>;
244 };
245 };
pineafan6fb3e072022-05-20 19:27:23 +0100246 verify: {
PineaFandf4996f2023-01-01 14:20:06 +0000247 enabled: boolean;
Skyler Grey75ea9172022-08-06 10:22:23 +0100248 role: string | null;
249 };
pineafan6fb3e072022-05-20 19:27:23 +0100250 tickets: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100251 enabled: boolean;
252 category: string | null;
Skyler Greyad002172022-08-16 18:48:26 +0100253 types: string;
254 customTypes: string[] | null;
Skyler Grey75ea9172022-08-06 10:22:23 +0100255 useCustom: boolean;
256 supportRole: string | null;
257 maxTickets: number;
258 };
pineafan6fb3e072022-05-20 19:27:23 +0100259 moderation: {
260 mute: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100261 timeout: boolean;
262 role: string | null;
263 text: string | null;
264 link: string | null;
265 };
pineafan6fb3e072022-05-20 19:27:23 +0100266 kick: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100267 text: string | null;
268 link: string | null;
269 };
pineafan6fb3e072022-05-20 19:27:23 +0100270 ban: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100271 text: string | null;
272 link: string | null;
273 };
pineafan6fb3e072022-05-20 19:27:23 +0100274 softban: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100275 text: string | null;
276 link: string | null;
277 };
pineafan6fb3e072022-05-20 19:27:23 +0100278 warn: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100279 text: string | null;
280 link: string | null;
281 };
pineafan6fb3e072022-05-20 19:27:23 +0100282 role: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100283 role: string | null;
284 };
285 };
pineafan6fb3e072022-05-20 19:27:23 +0100286 tracks: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100287 name: string;
288 retainPrevious: boolean;
289 nullable: boolean;
290 track: string[];
291 manageableBy: string[];
292 }[];
pineafan6fb3e072022-05-20 19:27:23 +0100293 roleMenu: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100294 enabled: boolean;
295 allowWebUI: boolean;
pineafan6fb3e072022-05-20 19:27:23 +0100296 options: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100297 name: string;
298 description: string;
299 min: number;
300 max: number;
pineafan6fb3e072022-05-20 19:27:23 +0100301 options: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100302 name: string;
303 description: string | null;
304 role: string;
305 }[];
306 }[];
307 };
308 tags: Record<string, string>;
pineafan63fc5e22022-08-04 22:04:10 +0100309}
pineafan4edb7762022-06-26 19:21:04 +0100310
311export interface HistorySchema {
Skyler Grey75ea9172022-08-06 10:22:23 +0100312 type: string;
313 guild: string;
314 user: string;
315 moderator: string | null;
pineafan3a02ea32022-08-11 21:35:04 +0100316 reason: string | null;
Skyler Grey75ea9172022-08-06 10:22:23 +0100317 occurredAt: Date;
318 before: string | null;
319 after: string | null;
320 amount: string | null;
pineafan4edb7762022-06-26 19:21:04 +0100321}
322
323export interface ModNoteSchema {
Skyler Grey75ea9172022-08-06 10:22:23 +0100324 guild: string;
325 user: string;
pineafan3a02ea32022-08-11 21:35:04 +0100326 note: string | null;
pineafan4edb7762022-06-26 19:21:04 +0100327}
328
pineafan73a7c4a2022-07-24 10:38:04 +0100329export interface PremiumSchema {
Skyler Grey75ea9172022-08-06 10:22:23 +0100330 user: string;
331 level: number;
332 expires: Date;
333 appliesTo: string[];
334}