1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2022 OSN Inc. |
5 |
* |
6 |
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
* under the terms of the GNU Affero General Public License as published by |
8 |
* the Free Software Foundation, either version 3 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* SudoBot is distributed in the hope that it will be useful, but |
12 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU Affero General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU Affero General Public License |
17 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
*/ |
19 |
|
20 |
import { Guild, Message, Role, MessageMentions } from "discord.js"; |
21 |
import CommandOptions from "../types/CommandOptions"; |
22 |
|
23 |
export default async function getRole(msgInteraction: Message, options: CommandOptions, index: number = 0): Promise<Role | null | undefined> { |
24 |
if (options.normalArgs[index] === undefined) |
25 |
return null; |
26 |
|
27 |
if (msgInteraction.mentions.roles?.at(index)) |
28 |
return await msgInteraction.mentions.roles?.at(index); |
29 |
|
30 |
const arg = await options.normalArgs[index]; |
31 |
|
32 |
return await msgInteraction.guild?.roles.fetch(arg); |
33 |
} |
34 |
|
35 |
export async function getRoleRaw(roleString: string, guild: Guild): Promise<Role | null | undefined> { |
36 |
if (roleString === '@everyone') |
37 |
return guild.roles.everyone; |
38 |
else if (MessageMentions.ROLES_PATTERN.test(roleString)) { |
39 |
roleString = roleString.substring(3, roleString.length - 1); |
40 |
} |
41 |
|
42 |
console.log(roleString); |
43 |
return await guild.roles.fetch(roleString); |
44 |
} |