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 { Message, CacheType, CommandInteraction, GuildPreview, Permissions } from "discord.js"; |
22 |
import Client from "../../client/Client"; |
23 |
import MessageEmbed from "../../client/MessageEmbed"; |
24 |
import CommandOptions from "../../types/CommandOptions"; |
25 |
import InteractionOptions from "../../types/InteractionOptions"; |
26 |
import { emoji } from "../../utils/Emoji"; |
27 |
import BaseCommand from "../../utils/structures/BaseCommand"; |
28 |
|
29 |
export default class GuildLookupCommand extends BaseCommand { |
30 |
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
31 |
|
32 |
constructor() { |
33 |
super("guildlookup", "information", ["glookup", "guild", 'guildinfo']); |
34 |
} |
35 |
|
36 |
async run(client: Client, message: CommandInteraction<CacheType> | Message<boolean>, options: CommandOptions | InteractionOptions): Promise<void> { |
37 |
if (!options.isInteraction && options.args[0] === undefined) { |
38 |
await message.reply(`${emoji('error')} You must provide the guild/server ID to lookup.`); |
39 |
return; |
40 |
} |
41 |
|
42 |
const inputID = options.isInteraction ? options.options.getString("guild_id")! : options.args[0]; |
43 |
let guild: GuildPreview | undefined; |
44 |
|
45 |
try { |
46 |
guild = await client.fetchGuildPreview(inputID); |
47 |
|
48 |
if (!guild) { |
49 |
guild = undefined; |
50 |
} |
51 |
} |
52 |
catch (e) { |
53 |
console.log(e); |
54 |
} |
55 |
|
56 |
if (!guild) { |
57 |
await message.reply(`${emoji('error')} No guild/server was found with that ID or the guild isn't a public server.`); |
58 |
return; |
59 |
} |
60 |
|
61 |
await message.reply({ |
62 |
embeds: [ |
63 |
new MessageEmbed({ |
64 |
author: { |
65 |
name: guild.name, |
66 |
iconURL: guild.iconURL() ?? undefined |
67 |
}, |
68 |
description: guild.description ?? '*No description available*', |
69 |
fields: [ |
70 |
{ |
71 |
name: "Approximate Member Count", |
72 |
value: guild.approximateMemberCount + '', |
73 |
inline: true |
74 |
}, |
75 |
{ |
76 |
name: "Approximate Presence Count", |
77 |
value: guild.approximatePresenceCount + '', |
78 |
inline: true |
79 |
}, |
80 |
{ |
81 |
name: "Created", |
82 |
value: `${guild.createdAt.toLocaleString()} (${formatDistanceToNowStrict(guild.createdAt, { addSuffix: true })})`, |
83 |
}, |
84 |
], |
85 |
thumbnail: guild.splashURL() ? { |
86 |
url: guild.splashURL()! |
87 |
} : undefined, |
88 |
footer: { |
89 |
text: `${guild.id}` |
90 |
} |
91 |
}) |
92 |
.setTimestamp() |
93 |
] |
94 |
}); |
95 |
} |
96 |
} |