1 |
/** |
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 { CommandInteraction, Message, Permissions, Util } from "discord.js"; |
22 |
import DiscordClient from "../../client/Client"; |
23 |
import MessageEmbed from "../../client/MessageEmbed"; |
24 |
import BlockedWordViolation from "../../models/BlockedWordViolation"; |
25 |
import { BlockedWordType } from "../../types/BlockedWordType"; |
26 |
import InteractionOptions from "../../types/InteractionOptions"; |
27 |
import { emoji } from "../../utils/Emoji"; |
28 |
import BaseCommand from "../../utils/structures/BaseCommand"; |
29 |
|
30 |
// TODO |
31 |
export default class MessageRuleStatsCommand extends BaseCommand { |
32 |
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
33 |
name = "messagerulestats"; |
34 |
group = "information"; |
35 |
aliases = []; |
36 |
supportsInteractions = true; |
37 |
|
38 |
async run(client: DiscordClient, interaction: CommandInteraction, options: InteractionOptions): Promise<void> { |
39 |
const user = interaction.options.getUser('user') ?? undefined; |
40 |
const word_token = interaction.options.getString('word_or_token') ?? undefined; |
41 |
|
42 |
if (!user && !word_token) { |
43 |
await interaction.reply(`${emoji('error')} You must specify a user or a word/token to search!`); |
44 |
return; |
45 |
} |
46 |
|
47 |
await interaction.deferReply(); |
48 |
|
49 |
if (user && word_token) { |
50 |
const data = await BlockedWordViolation.findOne({ |
51 |
guild_id: interaction.guild!.id, |
52 |
user_id: user.id, |
53 |
word_token, |
54 |
}); |
55 |
|
56 |
await interaction.editReply({ |
57 |
embeds: [ |
58 |
new MessageEmbed({ |
59 |
author: { |
60 |
iconURL: user.displayAvatarURL(), |
61 |
name: user.tag |
62 |
}, |
63 |
description: `This user has sent **${data?.count ?? 0}** messages total that contained the word/token: ||${Util.escapeMarkdown(word_token)}||. ${!data ? '' : `This word was last used by this user ${formatDistanceToNowStrict(data.updatedAt, { addSuffix: true })}`}.`, |
64 |
fields: [ |
65 |
{ |
66 |
name: 'Suggested action', |
67 |
value: (data?.count ?? 0) < 20 ? 'No action needed' : ( |
68 |
(data?.count ?? 0) >= 20 && (data?.count ?? 0) < 50 ? 'Warning' : ( |
69 |
(data?.count ?? 0) >= 50 && (data?.count ?? 0) < 80 ? 'Mute' : 'Ban/Kick' |
70 |
) |
71 |
) |
72 |
}, |
73 |
...(data ? [ |
74 |
{ |
75 |
name: 'Rule type', |
76 |
value: data.type === BlockedWordType.WORD ? 'Word' : 'Token' |
77 |
} |
78 |
] : []) |
79 |
] |
80 |
}) |
81 |
] |
82 |
}); |
83 |
} |
84 |
} |
85 |
} |