aboutsummaryrefslogtreecommitdiff
path: root/src/commands/utilities/hash.ts
blob: 7a1bfa780ad474818fc8e149ac4ef628d8dd78a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { BushCommand, type BushMessage } from '#lib';
import crypto from 'crypto';
import got from 'got';

export default class HashCommand extends BushCommand {
	public constructor() {
		super('hash', {
			aliases: ['hash'],
			category: 'utilities',
			description: 'Gets the file hash of the given discord link',
			usage: ['hash <fileUrl>'],
			examples: ['hash https://cdn.discordapp.com/emojis/782630946435366942.png?v=1'], //nice
			args: [
				{
					id: 'url',
					description: 'The url of the discord link to find the hash of.',
					type: 'url',
					prompt: 'What url would you like to find the hash of?',
					retry: '{error} Enter a valid url.',
					slashType: 'STRING'
				}
			],
			clientPermissions: (m) => util.clientSendAndPermCheck(m),
			userPermissions: []
		});
	}

	public override async exec(message: BushMessage, { url }: { url: string }) {
		try {
			const req = await got.get(url);
			const rawHash = crypto.createHash('md5');
			rawHash.update(req.rawBody.toString('binary'));
			const hash = rawHash.digest('hex');
			await message.util.reply(`\`${hash}\``);
		} catch {
			await message.util.reply('Unable to calculate hash.');
		}
	}
}