/[sudobot]/branches/2.x/src/utils/getRole.ts
ViewVC logotype

Annotation of /branches/2.x/src/utils/getRole.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 1014 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 import { CommandInteraction, Guild, GuildMember, Message, Role, User, MessageMentions } from "discord.js";
2     import CommandOptions from "../types/CommandOptions";
3    
4     export default async function getRole(msgInteraction: Message, options: CommandOptions, index: number = 0): Promise<Role | null | undefined> {
5     if (options.normalArgs[index] === undefined)
6     return null;
7    
8     if (msgInteraction.mentions.roles?.at(index))
9     return await msgInteraction.mentions.roles?.at(index);
10    
11     const arg = await options.normalArgs[index];
12    
13     return await msgInteraction.guild?.roles.fetch(arg);
14     }
15    
16     export async function getRoleRaw(roleString: string, guild: Guild): Promise<Role | null | undefined> {
17     if (roleString === '@everyone')
18     return guild.roles.everyone;
19     else if (MessageMentions.ROLES_PATTERN.test(roleString)) {
20     roleString = roleString.substring(3, roleString.length - 1);
21     }
22    
23     console.log(roleString);
24     return await guild.roles.fetch(roleString);
25     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26