/[sudobot]/branches/2.x/src/services/Auth.ts
ViewVC logotype

Annotation of /branches/2.x/src/services/Auth.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: 1219 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 import { GuildMember } from "discord.js";
2     import DiscordClient from "../client/Client";
3     import BaseCommand from "../utils/structures/BaseCommand";
4     import Service from "../utils/structures/Service";
5    
6     export default class Auth extends Service {
7     async verify(member: GuildMember, command: BaseCommand): Promise<boolean> {
8     if (command.ownerOnly && !this.client.config.props.global.owners.includes(member.user.id)) {
9     return false;
10     }
11    
12     const cmds: string[] = await this.client.config.get('global_commands');
13    
14     if (cmds.indexOf(command.getName()) !== -1) {
15     return true;
16     }
17    
18     if (await member.roles.cache.has(await this.client.config.get('mod_role'))) {
19     let restricted: string[] = [];
20     const roleCommands: { [key: string]: string[] } = await this.client.config.get('role_commands');
21    
22     for (const roleID in roleCommands) {
23     if (await member.roles.cache.has(roleID)) {
24     restricted = await roleCommands[roleID];
25     break;
26     }
27     }
28    
29     return restricted.indexOf(command.getName()) === -1;
30     }
31    
32     return false;
33     }
34     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26