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 Command, { AnyCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
21 |
|
|
|
22 |
|
|
export default class StatsCommand extends Command { |
23 |
|
|
public readonly name = "statistics"; |
24 |
|
|
public readonly validationRules: ValidationRule[] = []; |
25 |
|
|
public readonly aliases = ["stats"]; |
26 |
|
|
|
27 |
|
|
public readonly description = "Show server statistics."; |
28 |
|
|
|
29 |
|
|
async execute(message: CommandMessage, context: AnyCommandContext): Promise<CommandReturn> { |
30 |
|
|
const memberCount = |
31 |
|
|
message.guild!.members.cache.size > message.guild!.memberCount |
32 |
|
|
? message.guild!.members.cache.size |
33 |
|
|
: message.guild!.memberCount; |
34 |
|
|
let botCount = 0, |
35 |
|
|
humanCount = 0; |
36 |
|
|
|
37 |
|
|
for (const member of message.guild!.members.cache.values()) { |
38 |
|
|
if (member.user.bot) botCount++; |
39 |
|
|
else humanCount++; |
40 |
|
|
} |
41 |
|
|
|
42 |
|
|
const channelCount = message.guild!.channels.cache.size; |
43 |
|
|
const roleCount = message.guild!.roles.cache.size; |
44 |
|
|
|
45 |
|
|
return { |
46 |
|
|
__reply: true, |
47 |
|
|
embeds: [ |
48 |
|
|
{ |
49 |
|
|
color: 0x007bff, |
50 |
|
|
author: { |
51 |
|
|
name: `Statistics of ${message.guild!.name}`, |
52 |
|
|
icon_url: message.guild!.iconURL() ?? undefined |
53 |
|
|
}, |
54 |
|
|
fields: [ |
55 |
|
|
{ |
56 |
|
|
name: "Total members", |
57 |
|
|
value: `${memberCount}`, |
58 |
|
|
inline: true |
59 |
|
|
}, |
60 |
|
|
{ |
61 |
|
|
name: "Human members", |
62 |
|
|
value: `${humanCount}`, |
63 |
|
|
inline: true |
64 |
|
|
}, |
65 |
|
|
{ |
66 |
|
|
name: "Bots", |
67 |
|
|
value: `${botCount}`, |
68 |
|
|
inline: true |
69 |
|
|
}, |
70 |
|
|
{ |
71 |
|
|
name: "Is Discoverable", |
72 |
|
|
value: `${message.guild?.features.includes("DISCOVERABLE") ? "Yes" : "No"}` |
73 |
|
|
}, |
74 |
|
|
{ |
75 |
|
|
name: "Roles", |
76 |
|
|
value: `${roleCount}`, |
77 |
|
|
inline: true |
78 |
|
|
}, |
79 |
|
|
{ |
80 |
|
|
name: "Channels", |
81 |
|
|
value: `${channelCount}`, |
82 |
|
|
inline: true |
83 |
|
|
} |
84 |
|
|
], |
85 |
|
|
footer: { |
86 |
|
|
text: |
87 |
|
|
memberCount >= 60 |
88 |
|
|
? "Your server is growing!" |
89 |
|
|
: "Put some work and invite more people to grow your community!" |
90 |
|
|
} |
91 |
|
|
} |
92 |
|
|
] |
93 |
|
|
}; |
94 |
|
|
} |
95 |
|
|
} |