2023-05-19 17:01:56 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Notifications\Channels;
|
|
|
|
|
|
|
|
|
|
use App\Jobs\SendMessageToDiscordJob;
|
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
|
|
|
|
|
|
class DiscordChannel
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Send the given notification.
|
|
|
|
|
*/
|
2023-05-25 16:27:52 +00:00
|
|
|
public function send(SendsDiscord $notifiable, Notification $notification): void
|
2023-05-19 17:01:56 +00:00
|
|
|
{
|
2024-09-29 22:43:35 +00:00
|
|
|
$message = $notification->toDiscord();
|
2023-05-25 16:27:52 +00:00
|
|
|
$webhookUrl = $notifiable->routeNotificationForDiscord();
|
2024-06-10 20:43:34 +00:00
|
|
|
if (! $webhookUrl) {
|
2023-08-24 19:00:19 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2024-11-22 10:16:01 +00:00
|
|
|
SendMessageToDiscordJob::dispatch($message, $webhookUrl);
|
2023-05-19 17:01:56 +00:00
|
|
|
}
|
|
|
|
|
}
|