coolify/app/Notifications/Server/Unreachable.php

70 lines
2.1 KiB
PHP
Raw Normal View History

2023-09-14 12:45:50 +02:00
<?php
namespace App\Notifications\Server;
use App\Models\Server;
2023-10-09 11:00:18 +02:00
use App\Notifications\Channels\DiscordChannel;
use App\Notifications\Channels\EmailChannel;
use App\Notifications\Channels\TelegramChannel;
2023-09-14 12:45:50 +02:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class Unreachable extends Notification implements ShouldQueue
{
use Queueable;
public $tries = 1;
2024-06-10 22:43:34 +02:00
2023-09-14 12:45:50 +02:00
public function __construct(public Server $server)
{
}
public function via(object $notifiable): array
{
2023-10-09 11:00:18 +02:00
$channels = [];
$isEmailEnabled = isEmailEnabled($notifiable);
$isDiscordEnabled = data_get($notifiable, 'discord_enabled');
$isTelegramEnabled = data_get($notifiable, 'telegram_enabled');
if ($isDiscordEnabled) {
$channels[] = DiscordChannel::class;
}
2024-06-10 22:43:34 +02:00
if ($isEmailEnabled) {
2023-10-09 11:00:18 +02:00
$channels[] = EmailChannel::class;
}
if ($isTelegramEnabled) {
$channels[] = TelegramChannel::class;
}
2024-06-10 22:43:34 +02:00
2023-10-09 11:00:18 +02:00
return $channels;
2023-09-14 12:45:50 +02:00
}
public function toMail(): MailMessage
{
$mail = new MailMessage();
2023-12-15 10:01:14 +01:00
$mail->subject("Coolify: Your server ({$this->server->name}) is unreachable.");
2023-09-14 12:45:50 +02:00
$mail->view('emails.server-lost-connection', [
'name' => $this->server->name,
]);
2024-06-10 22:43:34 +02:00
2023-09-14 12:45:50 +02:00
return $mail;
}
public function toDiscord(): string
{
$message = "Coolify: Your server '{$this->server->name}' is unreachable. All automations & integrations are turned off! Please check your server! IMPORTANT: We automatically try to revive your server and turn on all automations & integrations.";
2024-06-10 22:43:34 +02:00
2023-09-14 12:45:50 +02:00
return $message;
}
2024-06-10 22:43:34 +02:00
2023-09-14 12:45:50 +02:00
public function toTelegram(): array
{
return [
2024-06-10 22:43:34 +02:00
'message' => "Coolify: Your server '{$this->server->name}' is unreachable. All automations & integrations are turned off! Please check your server! IMPORTANT: We automatically try to revive your server and turn on all automations & integrations.",
2023-09-14 12:45:50 +02:00
];
}
}