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 { Message, CommandInteraction } from "discord.js"; |
21 |
import DiscordClient from "../../client/Client"; |
22 |
import CommandOptions from "../../types/CommandOptions"; |
23 |
import InteractionOptions from "../../types/InteractionOptions"; |
24 |
import { emoji } from "../../utils/Emoji"; |
25 |
import BaseCommand from "../../utils/structures/BaseCommand"; |
26 |
import crypto, { BinaryToTextEncoding } from 'crypto'; |
27 |
|
28 |
export default class HashCommand extends BaseCommand { |
29 |
supportsInteractions = true; |
30 |
validAlgorithms = ['sha1', 'sha256', 'sha512', 'md5']; |
31 |
validDigestModes = ['hex', 'base64', 'base64url']; |
32 |
|
33 |
constructor() { |
34 |
super('hash', 'utils', []); |
35 |
} |
36 |
|
37 |
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
38 |
if (!options.isInteraction && options.args[1] === undefined) { |
39 |
await msg.reply({ content: `${emoji('error')} You must specify the hash algorithm and the content to hash!`, ephemeral: true }); |
40 |
return; |
41 |
} |
42 |
|
43 |
if (msg instanceof CommandInteraction) |
44 |
await msg.deferReply({ ephemeral: true }); |
45 |
|
46 |
const algo = (options.isInteraction ? options.options.getString("algorithm") : options.args.shift())!; |
47 |
const digest: BinaryToTextEncoding = options.isInteraction ? (options.options.getString("digest") ?? 'hex') as BinaryToTextEncoding : 'hex'; |
48 |
|
49 |
if (!this.validAlgorithms.includes(algo)) { |
50 |
await this.deferReply(msg, { |
51 |
content: `${emoji('error')} Invalid algorithm given. Must be one of ${this.validAlgorithms.join(', ')}.` |
52 |
}); |
53 |
|
54 |
return; |
55 |
} |
56 |
|
57 |
if (!this.validDigestModes.includes(digest)) { |
58 |
await this.deferReply(msg, { |
59 |
content: `${emoji('error')} Invalid digest mode given. Must be one of ${this.validDigestModes.join(', ')}.` |
60 |
}); |
61 |
|
62 |
return; |
63 |
} |
64 |
|
65 |
const content = options.isInteraction ? options.options.getString("content") : options.args.join(' '); |
66 |
|
67 |
const hashsum = crypto.createHash(algo); |
68 |
hashsum.update(content!); |
69 |
const hashedData = hashsum.digest(digest); |
70 |
|
71 |
await this.deferReply(msg, { |
72 |
content: `**Hash (${algo}):**\n\`\`\`${hashedData}\`\`\`` |
73 |
}); |
74 |
} |
75 |
} |