coolify/app/Notifications/Notifications/TestNotification.php

53 lines
1.5 KiB
PHP
Raw Normal View History

<?php
2023-06-14 09:54:00 +00:00
namespace App\Notifications\Notifications;
2023-06-01 10:15:33 +00:00
use App\Notifications\Channels\EmailChannel;
use App\Notifications\Channels\DiscordChannel;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
2023-06-01 10:15:33 +00:00
class TestNotification extends Notification implements ShouldQueue
{
use Queueable;
2023-06-20 13:04:46 +00:00
public string|null $type = null;
public function __construct(string|null $type = null)
{
$this->type = $type;
}
public function via(object $notifiable): array
{
2023-05-25 16:27:52 +00:00
$channels = [];
2023-06-20 17:08:43 +00:00
$isSmtp = $this->type === 'smtp' || is_null($this->type);
$isDiscord = $this->type === 'discord' || is_null($this->type);
$isEmailEnabled = data_get($notifiable, 'smtp.enabled');
$isDiscordEnabled = data_get($notifiable, 'discord.enabled');
2023-06-20 18:39:14 +00:00
if ($isEmailEnabled && $isSmtp) {
2023-06-19 12:31:42 +00:00
$channels[] = EmailChannel::class;
}
2023-06-20 18:39:14 +00:00
if ($isDiscordEnabled && $isDiscord) {
2023-06-19 12:31:42 +00:00
$channels[] = DiscordChannel::class;
}
2023-06-20 17:08:43 +00:00
2023-05-25 16:27:52 +00:00
return $channels;
}
2023-06-12 10:00:01 +00:00
public function toMail(): MailMessage
{
2023-06-19 12:31:42 +00:00
$mail = new MailMessage();
$mail->subject("Coolify Test Notification");
$mail->view('emails.test');
return $mail;
}
2023-06-12 10:00:01 +00:00
public function toDiscord(): string
{
2023-06-19 12:31:42 +00:00
return 'This is a test Discord notification from Coolify.
2023-06-20 17:08:43 +00:00
2023-06-19 12:31:42 +00:00
[Go to your dashboard](' . base_url() . ')';
}
}