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, Message, Util } from 'discord.js'; |
21 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
22 |
import DiscordClient from '../../client/Client'; |
23 |
import CommandOptions from '../../types/CommandOptions'; |
24 |
import InteractionOptions from '../../types/InteractionOptions'; |
25 |
import { formatDuration, intervalToDuration } from 'date-fns'; |
26 |
|
27 |
export default class AFKCommand extends BaseCommand { |
28 |
supportsInteractions = true; |
29 |
cooldownMap = new Map<string, [Date, number, NodeJS.Timeout]>(); |
30 |
|
31 |
constructor() { |
32 |
super('afk', 'utils', []); |
33 |
} |
34 |
|
35 |
async run(client: DiscordClient, message: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
36 |
const entry = this.cooldownMap.get(message.member!.user.id); |
37 |
|
38 |
if (entry) { |
39 |
if (entry[1] > 5) { |
40 |
if (message instanceof Message) { |
41 |
message.react('⏰').catch(console.error); |
42 |
} |
43 |
else { |
44 |
message.reply({ |
45 |
content: `Please try again in ${formatDuration(intervalToDuration({ |
46 |
start: new Date(), |
47 |
end: new Date(entry[0].getTime() + (10 * 60 * 1000)) |
48 |
}))}`, |
49 |
ephemeral: true |
50 |
}).catch(console.error); |
51 |
} |
52 |
|
53 |
return; |
54 |
} |
55 |
else { |
56 |
this.cooldownMap.set(message.member!.user.id, [entry[0], entry[1] + 1, entry[2]]); |
57 |
} |
58 |
} |
59 |
else { |
60 |
this.cooldownMap.set(message.member!.user.id, [new Date(), 0, setTimeout(() => { |
61 |
this.cooldownMap.delete(message.member!.user.id); |
62 |
}, 10 * 60 * 1000)]); |
63 |
} |
64 |
|
65 |
let status = options.isInteraction ? options.options.getString("reason") ?? undefined : options.args.join(" "); |
66 |
|
67 |
if (message instanceof Message) { |
68 |
status = status?.trim() === '' ? undefined : status; |
69 |
} |
70 |
|
71 |
if (status && status.replace(/<\w+\:\d+>/gi, '').length > 200) { |
72 |
message.reply(":x: AFK reason is too long. Make sure it has less than 100 characters.").catch(console.error); |
73 |
return; |
74 |
} |
75 |
|
76 |
await client.afkEngine.toggle(message, true, status); |
77 |
} |
78 |
} |