mirror of https://github.com/clickscodes/nucleus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.9 KiB
79 lines
2.9 KiB
import { Agenda } from "@hokify/agenda";
|
|
import client from "./client.js";
|
|
import * as fs from "fs";
|
|
import * as path from "path";
|
|
import config from "../config/main.js";
|
|
|
|
class EventScheduler {
|
|
private agenda: Agenda;
|
|
|
|
constructor() {
|
|
this.agenda = new Agenda({
|
|
db: {
|
|
address: config.mongoOptions.host,
|
|
collection: "eventScheduler"
|
|
}
|
|
});
|
|
this.agenda.define("unmuteRole", async (job) => {
|
|
const guild = await client.guilds.fetch(job.attrs.data.guild);
|
|
const user = await guild.members.fetch(job.attrs.data.user);
|
|
const role = await guild.roles.fetch(job.attrs.data.role);
|
|
if (role) await user.roles.remove(role);
|
|
await job.remove();
|
|
});
|
|
this.agenda.define("deleteFile", async (job) => {
|
|
fs.rm(path.resolve("dist/utils/temp", job.attrs.data.fileName), (e) => { client.emit("error", e as Error); });
|
|
await job.remove();
|
|
});
|
|
this.agenda.define("naturalUnmute", async (job) => {
|
|
const { log, NucleusColors, entry, renderUser, renderDelta } = client.logger;
|
|
const guild = await client.guilds.fetch(job.attrs.data.guild);
|
|
const user = await guild.members.fetch(job.attrs.data.user);
|
|
if (user.communicationDisabledUntil === null) return;
|
|
try {
|
|
await client.database.history.create("unmute", user.guild.id, user.user, null, null, null, null);
|
|
} catch (e) {
|
|
client.emit("error", e as Error);
|
|
}
|
|
const data = {
|
|
meta: {
|
|
type: "memberUnmute",
|
|
displayName: "Unmuted",
|
|
calculateType: "guildMemberPunish",
|
|
color: NucleusColors.green,
|
|
emoji: "PUNISH.MUTE.GREEN",
|
|
timestamp: Date.now()
|
|
},
|
|
list: {
|
|
memberId: entry(user.user.id, `\`${user.user.id}\``),
|
|
name: entry(user.user.id, renderUser(user.user)),
|
|
unmuted: entry(Date.now().toString(), renderDelta(Date.now())),
|
|
unmutedBy: entry(null, "*Time out ended*")
|
|
},
|
|
hidden: {
|
|
guild: guild.id
|
|
}
|
|
};
|
|
log(data);
|
|
});
|
|
}
|
|
|
|
async start() {
|
|
await new Promise((resolve) => this.agenda.once("ready", resolve));
|
|
this.agenda.start();
|
|
return this;
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
async schedule(name: string, time: string, data: any) {
|
|
await this.agenda.schedule(time, name, data);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
cancel(name: string, data: any) {
|
|
this.agenda.cancel({ name, data });
|
|
}
|
|
}
|
|
|
|
export default EventScheduler;
|