blob: b14c5c4f1f8b0e50c5e5da89f2a34f2fe980d5a8 [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;
PineaFan100df682023-01-02 13:26:08 +0000187 singleEventNotifications: Record<string, boolean>;
pineafan6fb3e072022-05-20 19:27:23 +0100188 filters: {
189 images: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100190 NSFW: boolean;
191 size: boolean;
192 };
193 malware: boolean;
pineafan6fb3e072022-05-20 19:27:23 +0100194 wordFilter: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100195 enabled: boolean;
pineafan6fb3e072022-05-20 19:27:23 +0100196 words: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100197 strict: string[];
198 loose: string[];
199 };
pineafan6fb3e072022-05-20 19:27:23 +0100200 allowed: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100201 users: string[];
202 roles: string[];
203 channels: string[];
204 };
205 };
pineafan6fb3e072022-05-20 19:27:23 +0100206 invite: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100207 enabled: boolean;
208 channels: string[];
209 };
pineafan6fb3e072022-05-20 19:27:23 +0100210 pings: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100211 mass: number;
212 everyone: boolean;
213 roles: boolean;
pineafan6fb3e072022-05-20 19:27:23 +0100214 allowed: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100215 roles: string[];
216 rolesToMention: string[];
217 users: string[];
218 channels: string[];
219 };
220 };
221 };
pineafan6fb3e072022-05-20 19:27:23 +0100222 welcome: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100223 enabled: boolean;
Skyler Grey75ea9172022-08-06 10:22:23 +0100224 role: string | null;
225 ping: string | null;
226 channel: string | null;
227 message: string | null;
228 };
229 stats: Record<string, { name: string; enabled: boolean }>;
pineafan6fb3e072022-05-20 19:27:23 +0100230 logging: {
231 logs: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100232 enabled: boolean;
233 channel: string | null;
Skyler Greyad002172022-08-16 18:48:26 +0100234 toLog: string;
Skyler Grey75ea9172022-08-06 10:22:23 +0100235 };
pineafan6fb3e072022-05-20 19:27:23 +0100236 staff: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100237 channel: string | null;
238 };
pineafan73a7c4a2022-07-24 10:38:04 +0100239 attachments: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100240 channel: string | null;
241 saved: Record<string, string>;
242 };
243 };
pineafan6fb3e072022-05-20 19:27:23 +0100244 verify: {
PineaFandf4996f2023-01-01 14:20:06 +0000245 enabled: boolean;
Skyler Grey75ea9172022-08-06 10:22:23 +0100246 role: string | null;
247 };
pineafan6fb3e072022-05-20 19:27:23 +0100248 tickets: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100249 enabled: boolean;
250 category: string | null;
Skyler Greyad002172022-08-16 18:48:26 +0100251 types: string;
252 customTypes: string[] | null;
Skyler Grey75ea9172022-08-06 10:22:23 +0100253 useCustom: boolean;
254 supportRole: string | null;
255 maxTickets: number;
256 };
pineafan6fb3e072022-05-20 19:27:23 +0100257 moderation: {
258 mute: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100259 timeout: boolean;
260 role: string | null;
261 text: string | null;
262 link: string | null;
263 };
pineafan6fb3e072022-05-20 19:27:23 +0100264 kick: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100265 text: string | null;
266 link: string | null;
267 };
pineafan6fb3e072022-05-20 19:27:23 +0100268 ban: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100269 text: string | null;
270 link: string | null;
271 };
pineafan6fb3e072022-05-20 19:27:23 +0100272 softban: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100273 text: string | null;
274 link: string | null;
275 };
pineafan6fb3e072022-05-20 19:27:23 +0100276 warn: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100277 text: string | null;
278 link: string | null;
279 };
pineafan6fb3e072022-05-20 19:27:23 +0100280 role: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100281 role: string | null;
282 };
283 };
pineafan6fb3e072022-05-20 19:27:23 +0100284 tracks: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100285 name: string;
286 retainPrevious: boolean;
287 nullable: boolean;
288 track: string[];
289 manageableBy: string[];
290 }[];
pineafan6fb3e072022-05-20 19:27:23 +0100291 roleMenu: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100292 enabled: boolean;
293 allowWebUI: boolean;
pineafan6fb3e072022-05-20 19:27:23 +0100294 options: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100295 name: string;
296 description: string;
297 min: number;
298 max: number;
pineafan6fb3e072022-05-20 19:27:23 +0100299 options: {
Skyler Grey75ea9172022-08-06 10:22:23 +0100300 name: string;
301 description: string | null;
302 role: string;
303 }[];
304 }[];
305 };
306 tags: Record<string, string>;
pineafan63fc5e22022-08-04 22:04:10 +0100307}
pineafan4edb7762022-06-26 19:21:04 +0100308
309export interface HistorySchema {
Skyler Grey75ea9172022-08-06 10:22:23 +0100310 type: string;
311 guild: string;
312 user: string;
313 moderator: string | null;
pineafan3a02ea32022-08-11 21:35:04 +0100314 reason: string | null;
Skyler Grey75ea9172022-08-06 10:22:23 +0100315 occurredAt: Date;
316 before: string | null;
317 after: string | null;
318 amount: string | null;
pineafan4edb7762022-06-26 19:21:04 +0100319}
320
321export interface ModNoteSchema {
Skyler Grey75ea9172022-08-06 10:22:23 +0100322 guild: string;
323 user: string;
pineafan3a02ea32022-08-11 21:35:04 +0100324 note: string | null;
pineafan4edb7762022-06-26 19:21:04 +0100325}
326
pineafan73a7c4a2022-07-24 10:38:04 +0100327export interface PremiumSchema {
Skyler Grey75ea9172022-08-06 10:22:23 +0100328 user: string;
329 level: number;
330 expires: Date;
331 appliesTo: string[];
332}