crownrp / laravel-discord-bot
A robust Discord messaging integration for Laravel with support for adding roles
Requires
- php: >=7.4
- ext-json: *
- ext-sodium: *
- guzzlehttp/guzzle: ^7.4
- laravel/framework: >=8
Requires (Dev)
- mockery/mockery: ^1.5
- phpunit/phpunit: ^9.5
README
A robust Discord messaging integration for Laravel Extended with features to manage guild roles
About
This package provides a notification channel to send messages to Discord, as well as a suite of tools, services, and components that will help you to build rich-text messages as well as handle Discord Interactions.
Installation
Pre Requisites
- Laravel v8+
- PHP 7.4+
- libsodium
Install with Composer
composer require crownrp/laravel-discord-bot
Configuration
- Visit the Discord Developer Portal and create a new Application
- Copy the Application ID and the Public Key
- Create a Bot User
- Reset the Bot User Token and copy it
Populate your .env
:
DISCORD_API_BOT_TOKEN=<bot user token from above>
DISCORD_APPLICATION_ID=<application id from above>
DISCORD_PUBLIC_KEY=<public key from above>
Additional Configuration (optional)
When handling interactions the default response behavior is to "defer" - aka stop the loading process in the Discord
app window and return no reply or other message. If you'd like to change this to "load" - which will show a loading
message until your application sends a followup message - add the following to your .env
:
DISCORD_COMPONENT_INTERACTION_DEFAULT_BEHAVIOR=load
Notification Channel Usage
Your notification class must implement the interface
Nwilging\LaravelDiscordBot\Contracts\Notifications\DiscordNotificationContract
, and include the toDiscord(): array
method.
Example with Plain Text message
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Nwilging\LaravelDiscordBot\Contracts\Notifications\DiscordNotificationContract; use Nwilging\LaravelDiscordBot\Support\Builder\ComponentBuilder; use Nwilging\LaravelDiscordBot\Support\Builder\EmbedBuilder; class TestNotification extends Notification implements DiscordNotificationContract { use Queueable; public function via($notifiable) { return ['discord']; } public function toDiscord($notifiable): array { return [ 'contentType' => 'plain', 'channelId' => 'channel ID', 'message' => 'message content', ]; } }
Example with Rich Text message
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Nwilging\LaravelDiscordBot\Contracts\Notifications\DiscordNotificationContract; use Nwilging\LaravelDiscordBot\Support\Builder\ComponentBuilder; use Nwilging\LaravelDiscordBot\Support\Builder\EmbedBuilder; class TestNotification extends Notification implements DiscordNotificationContract { use Queueable; public function via($notifiable) { return ['discord']; } public function toDiscord($notifiable): array { $embedBuilder = new EmbedBuilder(); $embedBuilder->addAuthor('Me!'); $componentBuilder = new ComponentBuilder(); $componentBuilder->addActionButton('My Button', 'customId'); return [ 'contentType' => 'rich', 'channelId' => 'channel id', 'embeds' => $embedBuilder->getEmbeds(), 'components' => [ $componentBuilder->getActionRow(), ], ]; } }
How to get a channelId
You must specify the actual ID of the channel when sending messages to the Discord API. This can be done directly in the Discord client application by enabling developer tools.
Interactions Usage
If you are sending messages that have components such as buttons, inputs, menus, etc, Discord will be prepared to send user interactions with these components as requests to a specified endpoint - essentially a webhook - with the interaction event payload.
Setting up interactions
First setup a controller and/or route that you plan to use as the callback URL for interactions. Within the controller
for this route, inject the Nwilging\LaravelDiscordBot\Contracts\Services\DiscordInteractionServiceInterface
.
You will call the handleInteractionRequest
method on the aforementioned service. Example:
use Nwilging\LaravelDiscordBot\Contracts\Services\DiscordInteractionServiceContract; class MyController extends Controller { private $interactionService; public function __construct(DiscordInteractionServiceContract $interactionService) { $this->interactionService = $interactionService; } public function handleDiscordInteraction(Request $request) { $response = $this->interactionService->handleInteractionRequest($request); return response()->json($response->toArray(), $response->getStatus()); } }
This will forward interactions requests from Discord through your app. You must forward requests through this interaction service: Discord requires signature verification, which this package performs automatically on every interactions request. Attempting to handle requests outside of this package is possible, but not recommended.
Listening for Interaction Events
When a user interacts with a component in your message - such as a button - this interaction is sent to your application. This package will handle that interaction request and will dispatch an event when a new message component interaction payload comes in.
This event is Nwilging\LaravelDiscordBot\Events\MessageComponentInteractionEvent
, which contains a method getInteractionRequest
,
which will return the ParameterBag
from the original request object. You may call ->all()
on this to retrieve the array
representation of the interaction payload.
Your listeners should implement ShouldQueue
to prevent long-running synchronous processes from timing out the Discord
interaction request and presenting an error to the user. You may use synchronous listeners, but be aware that if an
error occurs during processing, the user will likely see a This interaction failed
error message in Discord.
Extending the message component interaction handler
The MessageComponentInteractionHandler
does not support extending its functionality directly. However, it does support
the ability for your application to override the immediate response that is sent to Discord upon handling an interaction.
This is useful if you'd like to send a reply message when an interaction takes place or if you'd like to alter the default behavior of message component interactions specifically.
The MessageComponentInteractionHandler
will check for any listeners in your application implementing the contract
Nwilging\LaravelDiscordBot\Contracts\Listeners\MessageComponentInteractionEventListenerContract
. To override the
default response, your listener must implement this interface.
use Illuminate\Contracts\Queue\ShouldQueue; use Nwilging\LaravelDiscordBot\Events\MessageComponentInteractionEvent; use Nwilging\LaravelDiscordBot\Contracts\Listeners\MessageComponentInteractionEventListenerContract; class MessageComponentInteractionListener implements MessageComponentInteractionEventListenerContract, ShouldQueue { public function replyContent(MessageComponentInteractionEvent $event): ?string { // return null; - to override and send no reply return 'my reply message'; } public function behavior(MessageComponentInteractionEvent $event): int { // return static::LOAD_WHILE_HANDLING; // Shows a loading message/status while handling // return static::REPLY_TO_MESSAGE; // Replies to the interaction with replyContent(). Required if you want to reply to the interaction return static::DEFER_WHILE_HANDLING; // Shows no loading message/status while handling } public function handle(MessageComponentInteractionEvent $event): void { // Handle the event like a normal listener } }
Since this is a listener, you do need to implement the handle
method. It is recommended to combine this type of
functionality with a listener you plan to use to handle the actual message component interaction event.
Application Commands
Discord Application Commands are versatile commands that your bot can offer to users and receive subsequent interactions from. This package provides both the ability to create, update, and delete commands as well as handle interactions from commands.
Command Builder
There are three types of commands available:
- Slash Command -
Nwilging\LaravelDiscordBot\Support\Commands\SlashCommand
- Message Command -
Nwilging\LaravelDiscordBot\Support\Commands\MessageCommand
- User Command -
Nwilging\LaravelDiscordBot\Support\Commands\UserCommand
Command types have different options associated with them. For example, slash commands may specify "options" which are essentially "arguments".
Options for commands can be found in Nwilging\LaravelDiscordBot\Support\Commands\Options
.
Here is an example of creating a SlashCommand
:
use Nwilging\LaravelDiscordBot\Support\Commands\SlashCommand; use Nwilging\LaravelDiscordBot\Support\Commands\Options\ChannelOption; $command = new SlashCommand('my-command', 'Command description'); $option1 = new ChannelOption('option1', 'description'); // Will allow user to select a channel $option2 = new StringOption('option2', 'free text'); // Allows text input $command->option($option1); $command->option($option2);
To create this command on Discord, use the Nwilging\LaravelDiscordBot\Services\DiscordApplicationCommandService
:
use Nwilging\LaravelDiscordBot\Support\Commands\SlashCommand; use Nwilging\LaravelDiscordBot\Contracts\Services\DiscordApplicationCommandServiceContract; /** @var DiscordApplicationCommandServiceContract $appCommandService */ $appCommandService = app(DiscordApplicationCommandServiceContract::class); $command = new SlashCommand('my-command', 'Command description'); // Creates a "global command" - available to any server your bot is a member of $result = $appCommandService->createGlobalCommand($command); // Creates a "guild command" - available only to the specified server/guild ID $result = $appCommandService->createGuildCommand('server id', $command);
To update a command, you may either use the create
methods or use the update
methods.
Because commands have unique names within a type and scope, we treat POST requests for new commands as upserts. That means making a new command with an already-used name for your application will update the existing command.
use Nwilging\LaravelDiscordBot\Support\Commands\SlashCommand; use Nwilging\LaravelDiscordBot\Contracts\Services\DiscordApplicationCommandServiceContract; /** @var DiscordApplicationCommandServiceContract $appCommandService */ $appCommandService = app(DiscordApplicationCommandServiceContract::class); $command = new SlashCommand('my-command', 'Command description'); // First create the command $created = $appCommandService->createGlobalCommand($command); // Get the resulting ID $id = $created['id']; // Make a change to the command $command->version('updated!'); // First method to update a command: $updated = $appCommandService->createGlobalCommand($command); // Second method to update a command: $updated = $appCommandService->updateGlobalCommand($id, $command);
To delete a command you just need the command ID:
use Nwilging\LaravelDiscordBot\Contracts\Services\DiscordApplicationCommandServiceContract; /** @var DiscordApplicationCommandServiceContract $appCommandService */ $appCommandService = app(DiscordApplicationCommandServiceContract::class); $commandId = 'commandId'; $serverId = 'serverId'; // Only necessary for deleting guild commands // Delete global command $appCommandService->deleteGlobalCommand($commandId); // Delete guild command $appCommandService->deleteGuildCommand($serverId, $commandId);;
Listening for Command Interactions
Extending the application command handler is nearly identical to the Message Interaction Listener, see extending the interaction handler.
Your listeners should listen for Nwilging\LaravelDiscordBot\Events\ApplicationCommandInteractionEvent
:
<?php declare(strict_types=1); namespace App\Listeners; use Nwilging\LaravelDiscordBot\Contracts\Listeners\ApplicationCommandInteractionEventListenerContract; use Nwilging\LaravelDiscordBot\Events\ApplicationCommandInteractionEvent; use Illuminate\Contracts\Queue\ShouldQueue; class TestCommandListener implements ShouldQueue, ApplicationCommandInteractionEventListenerContract { public function replyContent(ApplicationCommandInteractionEvent $event): ?string { return 'loading'; } public function behavior(ApplicationCommandInteractionEvent $event): int { return static::REPLY_TO_MESSAGE; } public function command(): ?string { return null; } public function handle(ApplicationCommandInteractionEvent $event): void { // handle the interaction } }
The event itself has a few helper methods to quickly get commonly used data from the interaction:
/** @var \Nwilging\LaravelDiscordBot\Events\ApplicationCommandInteractionEvent $event **/ $event->getApplicationId(); // The application ID $event->getChannelId(); // The channel that the command was run in $event->getCommandId(); // The command's unique ID $event->getCommandName(); // The name of the command $event->getCommandType(); // Returns the command type, an integer
Command types are stored as constants on Nwilging\LaravelDiscordBot\Support\Command
:
public const TYPE_CHAT_INPUT = 1; public const TYPE_USER = 2; public const TYPE_MESSAGE = 3;