mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 10:34:16 +02:00
feat(arabot): add coordinator can run fun commands
This commit is contained in:
parent
09e39252f8
commit
109234be05
@ -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']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
52
src/preconditions/CoordinatorOnly.ts
Normal file
52
src/preconditions/CoordinatorOnly.ts
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user