mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-06-16 11:05:03 +00:00
41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
import { GuildPluginData } from "knub";
|
|
import z from "zod/v4";
|
|
import { canActOn } from "../../../pluginUtils.js";
|
|
import { renderTemplate, TemplateSafeValueContainer } from "../../../templateFormatter.js";
|
|
import { resolveMember, zBoundedCharacters, zSnowflake } from "../../../utils.js";
|
|
import { ActionError } from "../ActionError.js";
|
|
import { catchTemplateError } from "../catchTemplateError.js";
|
|
import { CustomEventsPluginType, TCustomEvent } from "../types.js";
|
|
|
|
export const zAddRoleAction = z.strictObject({
|
|
type: z.literal("add_role"),
|
|
target: zBoundedCharacters(0, 100),
|
|
role: z.union([zSnowflake, z.array(zSnowflake)]),
|
|
});
|
|
export type TAddRoleAction = z.infer<typeof zAddRoleAction>;
|
|
|
|
export async function addRoleAction(
|
|
pluginData: GuildPluginData<CustomEventsPluginType>,
|
|
action: TAddRoleAction,
|
|
values: TemplateSafeValueContainer,
|
|
event: TCustomEvent,
|
|
eventData: any,
|
|
) {
|
|
const targetId = await catchTemplateError(
|
|
() => renderTemplate(action.target, values, false),
|
|
"Invalid target format",
|
|
);
|
|
const target = await resolveMember(pluginData.client, pluginData.guild, targetId);
|
|
if (!target) throw new ActionError(`Unknown target member: ${targetId}`);
|
|
|
|
if (event.trigger.type === "command" && !canActOn(pluginData, eventData.msg.member, target)) {
|
|
throw new ActionError("Missing permissions");
|
|
}
|
|
const rolesToAdd = (Array.isArray(action.role) ? action.role : [action.role]).filter(
|
|
(id) => !target.roles.cache.has(id),
|
|
);
|
|
if (rolesToAdd.length === 0) {
|
|
throw new ActionError("Target already has the role(s) specified");
|
|
}
|
|
await target.roles.add(rolesToAdd);
|
|
}
|