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, { CommandReturn, ValidationRule } from "../../core/Command"; |
21 |
|
|
|
22 |
|
|
export default class AboutCommand extends Command { |
23 |
|
|
public readonly name = "about"; |
24 |
|
|
public readonly validationRules: ValidationRule[] = []; |
25 |
|
|
public readonly permissions = []; |
26 |
|
|
public readonly metadata = this.client.metadata.data; |
27 |
|
|
|
28 |
|
|
public readonly description = "Show information about the bot"; |
29 |
|
|
|
30 |
|
|
async execute(): Promise<CommandReturn> { |
31 |
|
|
return { |
32 |
|
|
__reply: true, |
33 |
|
|
embeds: [ |
34 |
|
|
{ |
35 |
|
|
author: { |
36 |
|
|
icon_url: this.client.user?.displayAvatarURL(), |
37 |
|
|
name: "SudoBot" |
38 |
|
|
}, |
39 |
|
|
description: ` |
40 |
|
|
__**A free and open source Discord moderation bot**__.\n |
41 |
|
|
This bot is free software, and you are welcome to redistribute it under certain conditions. |
42 |
|
|
See the [GNU Affero General Public License v3](https://www.gnu.org/licenses/agpl-3.0.en.html) for more detailed information. |
43 |
|
|
`, |
44 |
|
|
color: 0x007bff, |
45 |
|
|
fields: [ |
46 |
|
|
{ |
47 |
|
|
name: "Version", |
48 |
|
|
value: `${this.metadata.version}`, |
49 |
|
|
inline: true |
50 |
|
|
}, |
51 |
|
|
{ |
52 |
|
|
name: "Source Code", |
53 |
|
|
value: `[GitHub](${this.metadata.repository.url})`, |
54 |
|
|
inline: true |
55 |
|
|
}, |
56 |
|
|
{ |
57 |
|
|
name: "Licensed Under", |
58 |
|
|
value: `[GNU Affero General Public License v3](https://www.gnu.org/licenses/agpl-3.0.en.html)`, |
59 |
|
|
inline: true |
60 |
|
|
}, |
61 |
|
|
{ |
62 |
|
|
name: "Author", |
63 |
|
|
value: `[${this.metadata.author.name}](${this.metadata.author.url})`, |
64 |
|
|
inline: true |
65 |
|
|
}, |
66 |
|
|
{ |
67 |
|
|
name: "Support", |
68 |
|
|
value: `[email protected]`, |
69 |
|
|
inline: true |
70 |
|
|
} |
71 |
|
|
], |
72 |
|
|
footer: { |
73 |
|
|
text: `Copyright © OSN Developers 2022-${new Date().getFullYear()}. All rights reserved.` |
74 |
|
|
} |
75 |
|
|
} |
76 |
|
|
] |
77 |
|
|
}; |
78 |
|
|
} |
79 |
|
|
} |