1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2023 OSN Developers. |
5 |
|
|
* |
6 |
|
|
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
|
|
* under the terms of the GNU Affero General Public License as published by |
8 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* SudoBot is distributed in the hope that it will be useful, but |
12 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU Affero General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU Affero General Public License |
17 |
|
|
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
|
|
import { User } from "discord.js"; |
21 |
|
|
import Command, { CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
|
import { logError } from "../../utils/Logger"; |
23 |
|
|
|
24 |
|
|
export default class DMHistoryCommand extends Command { |
25 |
|
|
public readonly name = "dmhistory"; |
26 |
|
|
public readonly validationRules: ValidationRule[] = []; |
27 |
|
|
public readonly permissions = []; |
28 |
|
|
|
29 |
|
|
public readonly aliases = ["sendmodhistory", "sendmodlogs", "dmmodlogs"]; |
30 |
|
|
public readonly description = "Generates a file that contains your infraction history, and sends it to you via DM."; |
31 |
|
|
|
32 |
|
|
async execute(message: CommandMessage): Promise<CommandReturn> { |
33 |
|
|
await this.deferIfInteraction(message); |
34 |
|
|
|
35 |
|
|
const { buffer, count } = await this.client.infractionManager.createInfractionHistoryBuffer( |
36 |
|
|
message.member!.user, |
37 |
|
|
message.guild! |
38 |
|
|
); |
39 |
|
|
|
40 |
|
|
if (!buffer) { |
41 |
|
|
await this.deferredReply(message, "You don't have any infractions."); |
42 |
|
|
return; |
43 |
|
|
} |
44 |
|
|
|
45 |
|
|
try { |
46 |
|
|
await (message.member!.user as User).send({ |
47 |
|
|
content: |
48 |
|
|
"We've generated your moderation history. The attached text file contains your moderation history.\nDownload the attached text file below to see your infractions.", |
49 |
|
|
files: [ |
50 |
|
|
{ |
51 |
|
|
attachment: buffer, |
52 |
|
|
name: `history-${message.member!.user.username}.txt` |
53 |
|
|
} |
54 |
|
|
] |
55 |
|
|
}); |
56 |
|
|
} catch (e) { |
57 |
|
|
logError(e); |
58 |
|
|
await this.error( |
59 |
|
|
message, |
60 |
|
|
"The system could not deliver a DM to you. Maybe you're not accepting DMs from me or this server?" |
61 |
|
|
); |
62 |
|
|
return; |
63 |
|
|
} |
64 |
|
|
|
65 |
|
|
await this.deferredReply(message, { |
66 |
|
|
content: `${this.emoji("check")} The system has sent you a DM. Sent ${count} records total.` |
67 |
|
|
}); |
68 |
|
|
} |
69 |
|
|
} |