mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 20:35:02 +00:00
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { Message } from "eris";
|
|
import { CaseTypes } from "../../../data/CaseTypes";
|
|
import { Case } from "../../../data/entities/Case";
|
|
import { LogType } from "../../../data/LogType";
|
|
import { CasesPlugin } from "../../../plugins/Cases/CasesPlugin";
|
|
import { sendErrorMessage, sendSuccessMessage } from "../../../pluginUtils";
|
|
import { formatReasonWithAttachments } from "./formatReasonWithAttachments";
|
|
|
|
export async function updateCase(pluginData, msg: Message, args) {
|
|
let theCase: Case | undefined;
|
|
if (args.caseNumber != null) {
|
|
theCase = await pluginData.state.cases.findByCaseNumber(args.caseNumber);
|
|
} else {
|
|
theCase = await pluginData.state.cases.findLatestByModId(msg.author.id);
|
|
}
|
|
|
|
if (!theCase) {
|
|
sendErrorMessage(pluginData, msg.channel, "Case not found");
|
|
return;
|
|
}
|
|
|
|
if (!args.note && msg.attachments.length === 0) {
|
|
sendErrorMessage(pluginData, msg.channel, "Text or attachment required");
|
|
return;
|
|
}
|
|
|
|
const note = formatReasonWithAttachments(args.note, msg.attachments);
|
|
|
|
const casesPlugin = pluginData.getPlugin(CasesPlugin);
|
|
await casesPlugin.createCaseNote({
|
|
caseId: theCase.id,
|
|
modId: msg.author.id,
|
|
body: note,
|
|
});
|
|
|
|
pluginData.state.serverLogs.log(LogType.CASE_UPDATE, {
|
|
mod: msg.author,
|
|
caseNumber: theCase.case_number,
|
|
caseType: CaseTypes[theCase.type],
|
|
note,
|
|
});
|
|
|
|
sendSuccessMessage(pluginData, msg.channel, `Case \`#${theCase.case_number}\` updated`);
|
|
}
|