import { eventListener } from "knub"; import { IgnoredEventType, ModActionsPluginType } from "../types"; import { isEventIgnored } from "../functions/isEventIgnored"; import { clearIgnoredEvents } from "../functions/clearIgnoredEvents"; import { Constants as ErisConstants } from "eris"; import { CasesPlugin } from "../../Cases/CasesPlugin"; import { CaseTypes } from "../../../data/CaseTypes"; import { safeFindRelevantAuditLogEntry } from "../../../utils/safeFindRelevantAuditLogEntry"; import { stripObjectToScalars, resolveUser } from "src/utils"; import { LogType } from "src/data/LogType"; /** * Create an UNBAN case automatically when a user is unbanned manually. * Attempts to find the unban's details in the audit log. */ export const CreateUnbanCaseOnManualUnbanEvt = eventListener()( "guildBanRemove", async ({ pluginData, args: { guild, user } }) => { if (isEventIgnored(pluginData, IgnoredEventType.Unban, user.id)) { clearIgnoredEvents(pluginData, IgnoredEventType.Unban, user.id); return; } const relevantAuditLogEntry = await safeFindRelevantAuditLogEntry( pluginData, ErisConstants.AuditLogActions.MEMBER_BAN_REMOVE, user.id, ); const casesPlugin = pluginData.getPlugin(CasesPlugin); let createdCase; let mod = null; if (relevantAuditLogEntry) { const modId = relevantAuditLogEntry.user.id; const auditLogId = relevantAuditLogEntry.id; mod = resolveUser(pluginData.client, modId); createdCase = await casesPlugin.createCase({ userId: user.id, modId, type: CaseTypes.Unban, auditLogId, automatic: true, }); } else { createdCase = await casesPlugin.createCase({ userId: user.id, modId: null, type: CaseTypes.Unban, automatic: true, }); } mod = await mod; pluginData.state.serverLogs.log(LogType.MEMBER_UNBAN, { mod: mod ? stripObjectToScalars(mod, ["user"]) : null, userId: user.id, caseNumber: createdCase.case_number, }); }, );