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, Permissions, 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 |
import StaffAway from '../../models/StaffAway'; |
27 |
import { emoji } from '../../utils/Emoji'; |
28 |
|
29 |
export default class StaffAwayCommand extends BaseCommand { |
30 |
supportsInteractions = true; |
31 |
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
32 |
|
33 |
constructor() { |
34 |
super('staffaway', 'utils', ['safk', 'saway']); |
35 |
} |
36 |
|
37 |
async run(client: DiscordClient, message: Message, options: CommandOptions) { |
38 |
let status: string | undefined = message.content.slice(client.config.props[message.guildId!].prefix.length).trim().slice(options.cmdName.length).trim(); |
39 |
|
40 |
if (message instanceof Message) { |
41 |
status = status?.trim() === '' ? undefined : status; |
42 |
} |
43 |
|
44 |
if (status && status.replace(/<\w+\:\d+>/gi, '').length > 4000) { |
45 |
message.reply(":x: The reason is too long. Make sure it has less than 4000 characters.").catch(console.error); |
46 |
return; |
47 |
} |
48 |
|
49 |
const entry = await StaffAway.findOne({ user: message.author.id }); |
50 |
|
51 |
if (!entry) { |
52 |
const newEntry = await StaffAway.create({ |
53 |
user: message.author.id, |
54 |
createdAt: new Date(), |
55 |
guild_id: message.guildId!, |
56 |
reason: status |
57 |
}); |
58 |
|
59 |
client.utils.staffAwayList.push(newEntry); |
60 |
|
61 |
await message.reply(`${emoji('check')} Thanks for letting us know that you will be away.`); |
62 |
} |
63 |
else { |
64 |
client.utils.findStaffAway(message.guildId!, message.author.id, true); |
65 |
|
66 |
await entry.updateOne({ |
67 |
enabled: false |
68 |
}); |
69 |
|
70 |
await message.reply(`${emoji('check')} Welcome back, we've removed your away status.`); |
71 |
} |
72 |
} |
73 |
} |