1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2022 OSN Inc. |
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 { formatDistanceToNowStrict } from "date-fns"; |
21 |
|
|
import { Message, CacheType, CommandInteraction, User, Util, Permissions } from "discord.js"; |
22 |
|
|
import Client from "../../client/Client"; |
23 |
|
|
import MessageEmbed from "../../client/MessageEmbed"; |
24 |
|
|
import Punishment from "../../models/Punishment"; |
25 |
|
|
import CommandOptions from "../../types/CommandOptions"; |
26 |
|
|
import InteractionOptions from "../../types/InteractionOptions"; |
27 |
|
|
import PunishmentType from "../../types/PunishmentType"; |
28 |
|
|
import BaseCommand from "../../utils/structures/BaseCommand"; |
29 |
|
|
import { convert } from "./HistoryCommand"; |
30 |
|
|
|
31 |
|
|
export default class InfractionReasonUpdateCommand extends BaseCommand { |
32 |
|
|
name = "infraction__reasonupdate"; |
33 |
|
|
category = "moderation"; |
34 |
|
|
aliases = ['reasonupdate']; |
35 |
|
|
supportsInteractions = true; |
36 |
|
|
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
37 |
|
|
|
38 |
|
|
async run(client: Client, message: CommandInteraction<CacheType> | Message<boolean>, options: CommandOptions | InteractionOptions): Promise<void> { |
39 |
|
|
if (!options.isInteraction && options.args[0] === undefined) { |
40 |
|
|
await message.reply(":x: You must provide an ID of an infraction to update it's reason!"); |
41 |
|
|
return; |
42 |
|
|
} |
43 |
|
|
|
44 |
|
|
if (!options.isInteraction && options.args[1] === undefined) { |
45 |
|
|
await message.reply(":x: You must provide a new reason to set!"); |
46 |
|
|
return; |
47 |
|
|
} |
48 |
|
|
|
49 |
|
|
const id = options.isInteraction ? options.options.getInteger('id', true) : options.args.shift(); |
50 |
|
|
const reason = options.isInteraction ? options.options.getString('reason', true) : options.args.join(' '); |
51 |
|
|
const silent = options.isInteraction ? options.options.getBoolean('silent') ?? false : false; |
52 |
|
|
|
53 |
|
|
if (!/^\d+$/.test(id!.toString())) { |
54 |
|
|
await message.reply(":x: Invalid ID given."); |
55 |
|
|
return; |
56 |
|
|
} |
57 |
|
|
|
58 |
|
|
if (message instanceof CommandInteraction) |
59 |
|
|
await message.deferReply(); |
60 |
|
|
|
61 |
|
|
const punishment = await Punishment.findOne({ |
62 |
|
|
numericId: id, |
63 |
|
|
guild_id: message.guild!.id, |
64 |
|
|
}); |
65 |
|
|
|
66 |
|
|
if (!punishment) { |
67 |
|
|
await this.deferReply(message, ":x: No infraction found! Make sure the ID is correct and/or the infraction was not deleted manually!"); |
68 |
|
|
return; |
69 |
|
|
} |
70 |
|
|
|
71 |
|
|
let user: User | undefined; |
72 |
|
|
|
73 |
|
|
try { |
74 |
|
|
user = await client.users.fetch(punishment.user_id); |
75 |
|
|
} |
76 |
|
|
catch (e) { |
77 |
|
|
console.log(e); |
78 |
|
|
} |
79 |
|
|
|
80 |
|
|
const oldReason = punishment.reason; |
81 |
|
|
punishment.reason = reason; |
82 |
|
|
await punishment.save(); |
83 |
|
|
|
84 |
|
|
if (!silent) { |
85 |
|
|
const convertedType = convert(punishment.type as PunishmentType); |
86 |
|
|
|
87 |
|
|
if ((['Ban', 'Temporary Ban', 'Hardmute', 'Kick', "Mute", 'Warning', 'Soft Ban', 'Shot', 'Bean'] as (typeof convertedType)[]).includes(convertedType)) { |
88 |
|
|
user?.send({ |
89 |
|
|
embeds: [ |
90 |
|
|
new MessageEmbed({ |
91 |
|
|
author: { |
92 |
|
|
name: `Your ${convertedType.toLowerCase()} was updated in ${message.guild!.name}`, |
93 |
|
|
iconURL: message.guild!.iconURL() ?? undefined |
94 |
|
|
}, |
95 |
|
|
fields: [ |
96 |
|
|
{ |
97 |
|
|
name: 'Reason', |
98 |
|
|
value: reason ?? '*No reason provided*' |
99 |
|
|
}, |
100 |
|
|
{ |
101 |
|
|
name: 'Case ID', |
102 |
|
|
value: punishment.id |
103 |
|
|
} |
104 |
|
|
] |
105 |
|
|
}) |
106 |
|
|
] |
107 |
|
|
})?.catch(console.error); |
108 |
|
|
} |
109 |
|
|
} |
110 |
|
|
|
111 |
|
|
await this.deferReply(message, { |
112 |
|
|
embeds: [ |
113 |
|
|
new MessageEmbed({ |
114 |
|
|
author: { |
115 |
|
|
name: user?.tag ?? `Unknown (ID: ${punishment.user_id})`, |
116 |
|
|
iconURL: user?.displayAvatarURL() |
117 |
|
|
}, |
118 |
|
|
title: 'Viewing Updated Infraction: ' + id, |
119 |
|
|
fields: [ |
120 |
|
|
{ |
121 |
|
|
name: 'Type', |
122 |
|
|
value: convert(punishment.type as PunishmentType), |
123 |
|
|
inline: true |
124 |
|
|
}, |
125 |
|
|
{ |
126 |
|
|
name: 'Moderator', |
127 |
|
|
value: `<@${punishment.mod_id}> (${Util.escapeMarkdown(punishment.mod_tag)})`, |
128 |
|
|
inline: true |
129 |
|
|
}, |
130 |
|
|
{ |
131 |
|
|
name: 'Previous Reason', |
132 |
|
|
value: oldReason && oldReason.trim() !== '' ? oldReason : '*No reason provided*', |
133 |
|
|
}, |
134 |
|
|
{ |
135 |
|
|
name: 'New Reason', |
136 |
|
|
value: punishment.reason && punishment.reason.trim() !== '' ? punishment.reason : '*No reason provided*', |
137 |
|
|
}, |
138 |
|
|
{ |
139 |
|
|
name: 'Created At', |
140 |
|
|
value: `${punishment.createdAt.toUTCString()} (${formatDistanceToNowStrict(punishment.createdAt, { addSuffix: true })})`, |
141 |
|
|
}, |
142 |
|
|
], |
143 |
|
|
footer: { |
144 |
|
|
text: 'Updated' |
145 |
|
|
} |
146 |
|
|
}) |
147 |
|
|
.setTimestamp() |
148 |
|
|
] |
149 |
|
|
}); |
150 |
|
|
} |
151 |
|
|
} |