2023-05-19 17:01:56 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Notifications;
|
|
|
|
|
2023-05-25 16:27:52 +00:00
|
|
|
use App\Notifications\Channels\CoolifyEmailChannel;
|
2023-05-19 17:01:56 +00: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-05-25 16:27:52 +00:00
|
|
|
class DemoNotification extends Notification implements ShouldQueue
|
2023-05-19 17:01:56 +00:00
|
|
|
{
|
|
|
|
use Queueable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*
|
|
|
|
* @return array<int, string>
|
|
|
|
*/
|
|
|
|
public function via(object $notifiable): array
|
|
|
|
{
|
2023-05-25 16:27:52 +00:00
|
|
|
$channels = [];
|
|
|
|
$notifiable->extra_attributes?->get('smtp_active') && $channels[] = CoolifyEmailChannel::class;
|
|
|
|
$notifiable->extra_attributes?->get('discord_active') && $channels[] = DiscordChannel::class;
|
|
|
|
return $channels;
|
2023-05-19 17:01:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*/
|
|
|
|
public function toMail(object $notifiable): MailMessage
|
|
|
|
{
|
|
|
|
return (new MailMessage)
|
2023-05-25 16:27:52 +00:00
|
|
|
->subject('Coolify demo notification')
|
2023-05-19 17:01:56 +00:00
|
|
|
->line('Welcome to Coolify!')
|
|
|
|
->action('Go to dashboard', url('/'))
|
|
|
|
->line('We need your attention for disk usage.');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function toDiscord(object $notifiable): string
|
|
|
|
{
|
|
|
|
return 'Welcome to Coolify! We need your attention for disk usage. [Go to dashboard]('.url('/').')';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the array representation of the notification.
|
|
|
|
*
|
|
|
|
* @return array<string, mixed>
|
|
|
|
*/
|
|
|
|
public function toArray(object $notifiable): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|