82 lines
2.8 KiB
TypeScript
82 lines
2.8 KiB
TypeScript
import { modActionsCmd } from "../types";
|
|
import { commandTypeHelpers as ct } from "../../../commandTypes";
|
|
import { sendErrorMessage } from "../../../pluginUtils";
|
|
import { trimLines, createChunkedMessage, emptyEmbedValue, sorter, resolveUser } from "../../../utils";
|
|
import { CasesPlugin } from "../../Cases/CasesPlugin";
|
|
import { asyncMap } from "../../../utils/async";
|
|
|
|
import { getChunkedEmbedFields } from "../../../utils/getChunkedEmbedFields";
|
|
import { getDefaultPrefix } from "knub/dist/commands/commandUtils";
|
|
import { getGuildPrefix } from "../../../utils/getGuildPrefix";
|
|
import { createPaginatedMessage } from "../../../utils/createPaginatedMessage";
|
|
|
|
const opts = {
|
|
mod: ct.userId({ option: true }),
|
|
};
|
|
|
|
const casesPerPage = 5;
|
|
|
|
export const CasesModCmd = modActionsCmd({
|
|
trigger: ["cases", "modlogs", "infractions"],
|
|
permission: "can_view",
|
|
description: "Show the most recent 5 cases by the specified -mod",
|
|
|
|
signature: [
|
|
{
|
|
...opts,
|
|
},
|
|
],
|
|
|
|
async run({ pluginData, message: msg, args }) {
|
|
const modId = args.mod || msg.author.id;
|
|
const mod = await resolveUser(pluginData.client, modId);
|
|
const modName = mod instanceof User ? `${mod.username}#${mod.discriminator}` : modId;
|
|
|
|
const casesPlugin = pluginData.getPlugin(CasesPlugin);
|
|
const totalCases = await casesPlugin.getTotalCasesByMod(modId);
|
|
|
|
if (totalCases === 0) {
|
|
sendErrorMessage(pluginData, msg.channel, `No cases by **${modName}**`);
|
|
return;
|
|
}
|
|
|
|
const totalPages = Math.max(Math.ceil(totalCases / casesPerPage), 1);
|
|
const prefix = getGuildPrefix(pluginData);
|
|
|
|
createPaginatedMessage(
|
|
pluginData.client,
|
|
msg.channel,
|
|
totalPages,
|
|
async page => {
|
|
const cases = await casesPlugin.getRecentCasesByMod(modId, casesPerPage, (page - 1) * casesPerPage);
|
|
const lines = await asyncMap(cases, c => casesPlugin.getCaseSummary(c, true, msg.author.id));
|
|
|
|
const firstCaseNum = (page - 1) * casesPerPage + 1;
|
|
const lastCaseNum = page * casesPerPage;
|
|
const title = `Most recent cases ${firstCaseNum}-${lastCaseNum} of ${totalCases} by ${modName}`;
|
|
|
|
const embed: EmbedOptions = {
|
|
author: {
|
|
name: title,
|
|
icon_url: mod instanceof User ? mod.avatarURL || mod.defaultAvatarURL : undefined,
|
|
},
|
|
fields: [
|
|
...getChunkedEmbedFields(emptyEmbedValue, lines.join("\n")),
|
|
{
|
|
name: emptyEmbedValue,
|
|
value: trimLines(`
|
|
Use \`${prefix}case <num>\` to see more information about an individual case
|
|
Use \`${prefix}cases <user>\` to see a specific user's cases
|
|
`),
|
|
},
|
|
],
|
|
};
|
|
|
|
return { embed };
|
|
},
|
|
{
|
|
limitToUserId: msg.author.id,
|
|
},
|
|
);
|
|
},
|
|
});
|