1 |
rakinar2 |
577 |
/* |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2023 OSN Developers. |
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 path from "path"; |
21 |
|
|
import Queue from "../utils/Queue"; |
22 |
|
|
import QueueEntry from "../utils/QueueEntry"; |
23 |
|
|
import { safeChannelFetch } from "../utils/fetch"; |
24 |
|
|
import { logError } from "../utils/logger"; |
25 |
|
|
|
26 |
|
|
export default class ScheduleAndExpireMessageQueue extends Queue { |
27 |
|
|
async run(channelId: string, timeIntervalString: string, content: string) { |
28 |
|
|
const timeInterval = parseInt(timeIntervalString); |
29 |
|
|
|
30 |
|
|
if (isNaN(timeInterval)) { |
31 |
|
|
return; |
32 |
|
|
} |
33 |
|
|
|
34 |
|
|
const channel = await safeChannelFetch(this.guild, channelId); |
35 |
|
|
|
36 |
|
|
if (!channel || !channel.isTextBased()) { |
37 |
|
|
return; |
38 |
|
|
} |
39 |
|
|
|
40 |
|
|
if (content) { |
41 |
|
|
try { |
42 |
|
|
const { id } = await channel.send({ |
43 |
|
|
content |
44 |
|
|
}); |
45 |
|
|
|
46 |
|
|
await this.client.queueManager.add( |
47 |
|
|
new QueueEntry({ |
48 |
|
|
args: [channel.id, id], |
49 |
|
|
client: this.client, |
50 |
|
|
createdAt: new Date(), |
51 |
|
|
filePath: path.resolve(__dirname, "ExpireMessageQueue"), |
52 |
|
|
guild: this.guild, |
53 |
|
|
name: "ExpireMessageQueue", |
54 |
|
|
userId: this.userId, |
55 |
|
|
willRunAt: new Date(Date.now() + timeInterval) |
56 |
|
|
}) |
57 |
|
|
); |
58 |
|
|
} catch (e) { |
59 |
|
|
logError(e); |
60 |
|
|
} |
61 |
|
|
} |
62 |
|
|
} |
63 |
|
|
} |