mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 23:09:59 +00:00
20 lines
929 B
TypeScript
20 lines
929 B
TypeScript
import { PluginData } from "knub";
|
|
import { LocateUserPluginType } from "../types";
|
|
import { resolveMember } from "src/utils";
|
|
import { sendWhere } from "./sendWhere";
|
|
import { TextableChannel } from "eris";
|
|
import { moveMember } from "./moveMember";
|
|
|
|
export async function sendAlerts(pluginData: PluginData<LocateUserPluginType>, userId: string) {
|
|
const triggeredAlerts = await pluginData.state.alerts.getAlertsByUserId(userId);
|
|
const member = await resolveMember(pluginData.client, pluginData.guild, userId);
|
|
|
|
triggeredAlerts.forEach(alert => {
|
|
const prepend = `<@!${alert.requestor_id}>, an alert requested by you has triggered!\nReminder: \`${alert.body}\`\n`;
|
|
const txtChannel = pluginData.client.getChannel(alert.channel_id) as TextableChannel;
|
|
sendWhere(pluginData, member, txtChannel, prepend);
|
|
if (alert.active) {
|
|
moveMember(pluginData, alert.requestor_id, member, txtChannel);
|
|
}
|
|
});
|
|
}
|