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 { CommandInteraction, EmojiIdentifierResolvable, GuildMember, Message, TextChannel, User } from 'discord.js'; |
21 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
22 |
import DiscordClient 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 ms from 'enhanced-ms'; |
28 |
import ReminderQueue from '../../queues/ReminderQueue'; |
29 |
import { formatDistanceToNowStrict } from 'date-fns'; |
30 |
|
31 |
export default class RemindCommand extends BaseCommand { |
32 |
name = "remind"; |
33 |
category = "automation"; |
34 |
aliases = ['reminder']; |
35 |
|
36 |
supportsInteractions: boolean = true; |
37 |
coolDown = 4000; |
38 |
|
39 |
async run(client: DiscordClient, message: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
40 |
if (!options.isInteraction && options.args[0] === undefined) { |
41 |
await message.reply(`${emoji('error')} Please specify the time interval after which the bot should remind you.`); |
42 |
return; |
43 |
} |
44 |
|
45 |
if (!options.isInteraction && options.args[1] === undefined) { |
46 |
await message.reply(`${emoji('error')} Please specify what to remind!`); |
47 |
return; |
48 |
} |
49 |
|
50 |
const time = options.isInteraction ? options.options.getString("time", true) : options.args[0]; |
51 |
let parsedTime = ms(time); |
52 |
|
53 |
if (!parsedTime) { |
54 |
await message.reply(`${emoji('error')} Invalid time interval specified!`); |
55 |
return; |
56 |
} |
57 |
|
58 |
if (message instanceof CommandInteraction) |
59 |
await message.deferReply({ ephemeral: true }); |
60 |
|
61 |
const description = options.isInteraction ? options.options.getString("description", true) : (message as Message).content.trim().slice(client.config.props[message.guildId!].prefix.length).trim().slice(options.cmdName.length).trim().slice(time.length).trim(); |
62 |
|
63 |
await client.queueManager.addQueue(ReminderQueue, { |
64 |
data: { |
65 |
userID: message.member!.user.id, |
66 |
description, |
67 |
createdAt: (new Date()).toUTCString() |
68 |
}, |
69 |
runAt: new Date(Date.now() + parsedTime), |
70 |
guild: message.guild!.id |
71 |
}); |
72 |
|
73 |
await this.deferReply(message, { |
74 |
content: `${emoji('check')} The system will remind you in ${formatDistanceToNowStrict(new Date(Date.now() - parsedTime))}.` |
75 |
}); |
76 |
} |
77 |
} |