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 { formatDistanceToNowStrict } from "date-fns"; |
21 |
|
|
import { EmbedBuilder, PermissionsBitField } from "discord.js"; |
22 |
|
|
import Command, { AnyCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
23 |
|
|
import { isSystemAdmin } from "../../utils/utils"; |
24 |
|
|
|
25 |
|
|
export default class AFKsListCommand extends Command { |
26 |
|
|
public readonly name = "afks__list"; |
27 |
|
|
public readonly validationRules: ValidationRule[] = []; |
28 |
|
|
public readonly permissions = [PermissionsBitField.Flags.ModerateMembers]; |
29 |
|
|
public readonly description = "Lists all the users who are currently AFK, in this guild."; |
30 |
|
|
public readonly availableOptions = { |
31 |
|
|
"-g, --global": "Lists all the users who are AFK, in all servers [System Admin Only]" |
32 |
|
|
}; |
33 |
|
|
public readonly aliases = ["afklist", "afkslist"]; |
34 |
|
|
|
35 |
|
|
async execute(message: CommandMessage, context: AnyCommandContext): Promise<CommandReturn> { |
36 |
|
|
const global = context.isLegacy && (context.args.includes("-g") || context.args.includes("--global")); |
37 |
|
|
|
38 |
|
|
if (global && !isSystemAdmin(this.client, message.member!.user.id)) { |
39 |
|
|
await this.error(message, "You don't have permission to use the global flag."); |
40 |
|
|
return; |
41 |
|
|
} |
42 |
|
|
|
43 |
|
|
const entries = this.client.afkService |
44 |
|
|
.getEntries() |
45 |
|
|
.filter(entry => global || entry.global || entry.guildId === message.guildId); |
46 |
|
|
let description = ""; |
47 |
|
|
|
48 |
|
|
for (const [, entry] of entries) { |
49 |
|
|
description += "* "; |
50 |
|
|
|
51 |
|
|
if (global) { |
52 |
|
|
const guild = this.client.guilds.cache.get(entry.guildId); |
53 |
|
|
description += guild ? `**${guild.name}** - ` : ""; |
54 |
|
|
} |
55 |
|
|
|
56 |
|
|
description += `<@${entry.userId}> [${entry.userId}] - AFK for **${formatDistanceToNowStrict(entry.createdAt)}**\n`; |
57 |
|
|
} |
58 |
|
|
|
59 |
|
|
description = description === "" ? "*No data available.*" : description; |
60 |
|
|
|
61 |
|
|
await message.reply({ |
62 |
|
|
embeds: [ |
63 |
|
|
new EmbedBuilder({ |
64 |
|
|
author: { |
65 |
|
|
name: global ? "Global AFK List" : `AFK Users in ${message.guild!.name}`, |
66 |
|
|
iconURL: global ? undefined : message.guild?.iconURL() ?? undefined |
67 |
|
|
}, |
68 |
|
|
description, |
69 |
|
|
footer: { |
70 |
|
|
text: `${entries.size} entries total` |
71 |
|
|
} |
72 |
|
|
}).setTimestamp() |
73 |
|
|
], |
74 |
|
|
ephemeral: global |
75 |
|
|
}); |
76 |
|
|
} |
77 |
|
|
} |