32 lines
900 B
TypeScript
32 lines
900 B
TypeScript
import { GuildPluginData } from "knub";
|
|
import { LogsPluginType } from "../types";
|
|
import { LogType } from "../../../data/LogType";
|
|
import { log } from "../util/log";
|
|
import { createTypedTemplateSafeValueContainer } from "../../../templateFormatter";
|
|
import { User } from "discord.js";
|
|
import { userToTemplateSafeUser } from "../../../utils/templateSafeObjects";
|
|
|
|
interface LogCaseCreateData {
|
|
mod: User;
|
|
userId: string;
|
|
caseNum: number;
|
|
caseType: string;
|
|
reason: string;
|
|
}
|
|
|
|
export function logCaseCreate(pluginData: GuildPluginData<LogsPluginType>, data: LogCaseCreateData) {
|
|
return log(
|
|
pluginData,
|
|
LogType.CASE_CREATE,
|
|
createTypedTemplateSafeValueContainer({
|
|
mod: userToTemplateSafeUser(data.mod),
|
|
userId: data.userId,
|
|
caseNum: data.caseNum,
|
|
caseType: data.caseType,
|
|
reason: data.reason,
|
|
}),
|
|
{
|
|
userId: data.userId,
|
|
},
|
|
);
|
|
}
|