feat(arabot): add coordinator can run fun commands

This commit is contained in:
Anthony 2022-07-27 02:14:58 +01:00
parent 09e39252f8
commit 109234be05
6 changed files with 57 additions and 5 deletions

View File

@ -27,7 +27,7 @@ export class HappyCommand extends Command {
...options, ...options,
name: 'happy', name: 'happy',
description: 'Express your happiness', description: 'Express your happiness',
preconditions: ['PatreonOnly'], preconditions: [['PatreonOnly', 'CoordinatorOnly']],
}); });
} }

View File

@ -27,7 +27,7 @@ export class HugCommand extends Command {
...options, ...options,
name: 'hug', name: 'hug',
description: 'Hug a user', description: 'Hug a user',
preconditions: ['PatreonOnly'], preconditions: [['PatreonOnly', 'CoordinatorOnly']],
}); });
} }

View File

@ -27,7 +27,7 @@ export class KillCommand extends Command {
...options, ...options,
name: 'kill', name: 'kill',
description: 'Kill a user', description: 'Kill a user',
preconditions: ['PatreonOnly'], preconditions: [['PatreonOnly', 'CoordinatorOnly']],
}); });
} }

View File

@ -27,7 +27,7 @@ export class PokeCommand extends Command {
...options, ...options,
name: 'poke', name: 'poke',
description: 'Poke a user', description: 'Poke a user',
preconditions: ['PatreonOnly'], preconditions: [['PatreonOnly', 'CoordinatorOnly']],
}); });
} }

View File

@ -27,7 +27,7 @@ export class SadCommand extends Command {
...options, ...options,
name: 'sad', name: 'sad',
description: 'Express your sadness', description: 'Express your sadness',
preconditions: ['PatreonOnly'], preconditions: [['PatreonOnly', 'CoordinatorOnly']],
}); });
} }

View File

@ -0,0 +1,52 @@
// SPDX-License-Identifier: GPL-3.0-or-later
/*
Animal Rights Advocates Discord Bot
Copyright (C) 2022 Anthony Berg
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { AllFlowsPrecondition } from '@sapphire/framework';
import type { CommandInteraction, ContextMenuInteraction, Message } from 'discord.js';
import { IDs } from '../utils/ids';
import type { GuildMember } from 'discord.js';
export class CoordinatorOnlyPrecondition extends AllFlowsPrecondition {
public override async messageRun(message: Message) {
// for message command
return this.checkCoordinator(message.member!);
}
public override async chatInputRun(interaction: CommandInteraction) {
// for slash command
return this.checkCoordinator(interaction.member! as GuildMember);
}
public override async contextMenuRun(interaction: ContextMenuInteraction) {
// for context menu command
return this.checkCoordinator(interaction.member! as GuildMember);
}
private async checkCoordinator(user: GuildMember) {
return user.roles.cache.has(IDs.roles.staff.coordinator)
? this.ok()
: this.error({ message: 'Only coordinators can run this command!' });
}
}
declare module '@sapphire/framework' {
interface Preconditions {
CoordinatorOnly: never;
}
}