coolify/app/Notifications/Server/ForceEnabled.php

67 lines
1.8 KiB
PHP
Raw Normal View History

2024-02-25 22:34:01 +00:00
<?php
namespace App\Notifications\Server;
use App\Models\Server;
use App\Notifications\Channels\DiscordChannel;
use App\Notifications\Channels\EmailChannel;
use App\Notifications\Channels\TelegramChannel;
use App\Notifications\CustomEmailNotification;
use App\Notifications\Dto\DiscordMessage;
2024-02-25 22:34:01 +00:00
use Illuminate\Notifications\Messages\MailMessage;
class ForceEnabled extends CustomEmailNotification
2024-02-25 22:34:01 +00:00
{
public function __construct(public Server $server)
{
$this->onQueue('high');
}
2024-02-25 22:34:01 +00:00
public function via(object $notifiable): array
{
$channels = [];
$isEmailEnabled = isEmailEnabled($notifiable);
$isDiscordEnabled = data_get($notifiable, 'discord_enabled');
$isTelegramEnabled = data_get($notifiable, 'telegram_enabled');
if ($isDiscordEnabled) {
$channels[] = DiscordChannel::class;
}
if ($isEmailEnabled) {
$channels[] = EmailChannel::class;
}
if ($isTelegramEnabled) {
$channels[] = TelegramChannel::class;
}
2024-06-10 20:43:34 +00:00
2024-02-25 22:34:01 +00:00
return $channels;
}
public function toMail(): MailMessage
{
2024-07-24 12:27:21 +00:00
$mail = new MailMessage;
$mail->subject("Coolify: Server ({$this->server->name}) enabled again!");
$mail->view('emails.server-force-enabled', [
2024-02-25 22:34:01 +00:00
'name' => $this->server->name,
]);
2024-06-10 20:43:34 +00:00
2024-02-25 22:34:01 +00:00
return $mail;
}
public function toDiscord(): DiscordMessage
2024-02-25 22:34:01 +00:00
{
return new DiscordMessage(
2024-10-21 20:40:43 +00:00
title: ':white_check_mark: Server enabled',
description: "Server '{$this->server->name}' enabled again!",
color: DiscordMessage::successColor(),
);
2024-02-25 22:34:01 +00:00
}
2024-06-10 20:43:34 +00:00
2024-02-25 22:34:01 +00:00
public function toTelegram(): array
{
return [
2024-06-10 20:43:34 +00:00
'message' => "Coolify: Server ({$this->server->name}) enabled again!",
2024-02-25 22:34:01 +00:00
];
}
}