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, TextChannel } 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 MessageEmbed from '../../client/MessageEmbed'; |
26 |
import ms from 'ms'; |
27 |
import ExpireScheduleMessageQueue from '../../queues/ExpireScheduleMessageQueue'; |
28 |
|
29 |
export default class ExpireScheduleCommand extends BaseCommand { |
30 |
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
31 |
supportsInteractions = true; |
32 |
|
33 |
constructor() { |
34 |
super('expiresc', 'automation', []); |
35 |
} |
36 |
|
37 |
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
38 |
if (!options.isInteraction && options.args[2] === undefined) { |
39 |
await msg.reply({ |
40 |
embeds: [ |
41 |
new MessageEmbed() |
42 |
.setColor('#f14a60') |
43 |
.setDescription(`This command requires at least three arguments.`) |
44 |
] |
45 |
}); |
46 |
|
47 |
return; |
48 |
} |
49 |
|
50 |
const time1 = ms(options.isInteraction ? <string> await options.options.getString('send-after') : options.args[0]); |
51 |
const time2 = ms(options.isInteraction ? <string> await options.options.getString('delete-after') : options.args[1]); |
52 |
|
53 |
if (!time1) { |
54 |
await msg.reply({ |
55 |
embeds: [ |
56 |
new MessageEmbed() |
57 |
.setColor('#f14a60') |
58 |
.setDescription(`Invalid time interval given (send-after).`) |
59 |
] |
60 |
}); |
61 |
|
62 |
return; |
63 |
} |
64 |
|
65 |
if (!time2) { |
66 |
await msg.reply({ |
67 |
embeds: [ |
68 |
new MessageEmbed() |
69 |
.setColor('#f14a60') |
70 |
.setDescription(`Invalid time interval given (delete-after).`) |
71 |
] |
72 |
}); |
73 |
|
74 |
return; |
75 |
} |
76 |
|
77 |
let channel: TextChannel = <TextChannel> msg.channel; |
78 |
let text: string = ''; |
79 |
|
80 |
if (options.isInteraction) { |
81 |
if (options.options.getChannel('channel')) { |
82 |
channel = <TextChannel> await options.options.getChannel('channel'); |
83 |
} |
84 |
|
85 |
text = <string> await options.options.getString('content'); |
86 |
} |
87 |
else if (msg instanceof Message) { |
88 |
const args = [...options.args]; |
89 |
args.shift(); |
90 |
args.shift(); |
91 |
|
92 |
if (msg.mentions.channels.last()) { |
93 |
channel = await <TextChannel> msg.mentions.channels.last(); |
94 |
args.pop(); |
95 |
} |
96 |
|
97 |
text = args.join(' '); |
98 |
} |
99 |
|
100 |
if (!channel.send) { |
101 |
await msg.reply({ |
102 |
content: 'Invalid text channel.', |
103 |
ephemeral: true |
104 |
}); |
105 |
|
106 |
return; |
107 |
} |
108 |
|
109 |
try { |
110 |
// const timeout = await setTimeoutv2('send-expire', time1, msg.guild!.id, `expiresc ${time1} ${time2} ${text!} #${channel.name}`, text!, channel.id, msg.guild!.id, time2); |
111 |
|
112 |
const { id } = await client.queueManager.addQueue(ExpireScheduleMessageQueue, { |
113 |
data: { |
114 |
messageID: msg.id, |
115 |
guildID: msg.guild!.id, |
116 |
channelID: msg.channel!.id, |
117 |
content: text, |
118 |
expires: time2 |
119 |
}, |
120 |
runAt: new Date(Date.now() + time1), |
121 |
guild: msg.guild!.id, |
122 |
}); |
123 |
|
124 |
await msg.reply({ |
125 |
embeds: [ |
126 |
new MessageEmbed() |
127 |
.setDescription('A queue job has been added.') |
128 |
.setFooter({ |
129 |
text: 'ID: ' + id // timeout.row.id |
130 |
}) |
131 |
], |
132 |
ephemeral: true |
133 |
}); |
134 |
} |
135 |
catch(e) { |
136 |
console.log(e); |
137 |
|
138 |
await msg.reply({ |
139 |
embeds: [ |
140 |
new MessageEmbed() |
141 |
.setColor('#f14a60') |
142 |
.setDescription(`I don't have enough permission to send messages on this channel.`) |
143 |
] |
144 |
}); |
145 |
|
146 |
return; |
147 |
} |
148 |
|
149 |
if (msg instanceof Message) { |
150 |
await msg.react('⏰'); |
151 |
} |
152 |
} |
153 |
} |