2023-05-19 18:01:56 +01:00
|
|
|
<?php
|
|
|
|
|
2023-07-28 10:55:26 +02:00
|
|
|
namespace App\Notifications;
|
2023-05-19 18:01:56 +01:00
|
|
|
|
2023-06-01 12:15:33 +02:00
|
|
|
use App\Notifications\Channels\EmailChannel;
|
2023-05-19 18:01:56 +01:00
|
|
|
use App\Notifications\Channels\DiscordChannel;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
|
2023-07-28 10:55:26 +02:00
|
|
|
class Test extends Notification implements ShouldQueue
|
2023-05-19 18:01:56 +01:00
|
|
|
{
|
|
|
|
use Queueable;
|
2023-07-28 10:55:26 +02:00
|
|
|
public function __construct(public string|null $emails = null)
|
|
|
|
{}
|
|
|
|
|
2023-05-19 18:01:56 +01:00
|
|
|
public function via(object $notifiable): array
|
|
|
|
{
|
2023-05-25 17:27:52 +01:00
|
|
|
$channels = [];
|
2023-07-27 21:26:15 +02:00
|
|
|
$isEmailEnabled = data_get($notifiable, 'smtp_enabled');
|
|
|
|
$isDiscordEnabled = data_get($notifiable, 'discord_enabled');
|
2023-06-20 19:08:43 +02:00
|
|
|
|
2023-07-28 10:55:26 +02:00
|
|
|
if ($isDiscordEnabled && empty($this->emails)) {
|
2023-06-19 14:31:42 +02:00
|
|
|
$channels[] = DiscordChannel::class;
|
|
|
|
}
|
2023-06-20 19:08:43 +02:00
|
|
|
|
2023-07-28 10:55:26 +02:00
|
|
|
if ($isEmailEnabled && !empty($this->emails)) {
|
|
|
|
$channels[] = EmailChannel::class;
|
|
|
|
}
|
2023-05-25 17:27:52 +01:00
|
|
|
return $channels;
|
2023-05-19 18:01:56 +01:00
|
|
|
}
|
2023-06-12 12:00:01 +02:00
|
|
|
public function toMail(): MailMessage
|
2023-05-19 18:01:56 +01:00
|
|
|
{
|
2023-06-19 14:31:42 +02:00
|
|
|
$mail = new MailMessage();
|
|
|
|
$mail->subject("Coolify Test Notification");
|
|
|
|
$mail->view('emails.test');
|
|
|
|
return $mail;
|
2023-05-19 18:01:56 +01:00
|
|
|
}
|
2023-06-12 12:00:01 +02:00
|
|
|
public function toDiscord(): string
|
2023-05-19 18:01:56 +01:00
|
|
|
{
|
2023-06-21 10:48:43 +02:00
|
|
|
$message = 'This is a test Discord notification from Coolify.';
|
|
|
|
$message .= "\n\n";
|
|
|
|
$message .= '[Go to your dashboard](' . base_url() . ')';
|
|
|
|
return $message;
|
2023-05-19 18:01:56 +01:00
|
|
|
}
|
2023-07-27 21:26:15 +02:00
|
|
|
}
|