coolify/app/Notifications/Server/Unreachable.php

80 lines
2.4 KiB
PHP
Raw Normal View History

2023-09-14 10:45:50 +00:00
<?php
namespace App\Notifications\Server;
use App\Models\Server;
2023-10-09 09:00:18 +00:00
use App\Notifications\Channels\DiscordChannel;
use App\Notifications\Channels\EmailChannel;
use App\Notifications\Channels\TelegramChannel;
2023-09-14 10:45:50 +00:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\RateLimiter;
2023-09-14 10:45:50 +00:00
class Unreachable extends Notification implements ShouldQueue
{
use Queueable;
public $tries = 1;
2024-06-10 20:43:34 +00:00
2024-06-19 06:59:46 +00:00
public function __construct(public Server $server) {}
2023-09-14 10:45:50 +00:00
public function via(object $notifiable): array
{
2023-10-09 09:00:18 +00: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 20:43:34 +00:00
if ($isEmailEnabled) {
2023-10-09 09:00:18 +00:00
$channels[] = EmailChannel::class;
}
if ($isTelegramEnabled) {
$channels[] = TelegramChannel::class;
}
$executed = RateLimiter::attempt(
'notification-server-unreachable-'.$this->server->uuid,
1,
function () use ($channels) {
return $channels;
},
7200,
);
2024-06-10 20:43:34 +00:00
if (! $executed) {
return [];
}
return $executed;
2023-09-14 10:45:50 +00:00
}
public function toMail(): MailMessage
{
2024-07-24 19:11:12 +00:00
$mail = new MailMessage;
2023-12-15 09:01:14 +00:00
$mail->subject("Coolify: Your server ({$this->server->name}) is unreachable.");
2023-09-14 10:45:50 +00:00
$mail->view('emails.server-lost-connection', [
'name' => $this->server->name,
]);
2024-06-10 20:43:34 +00:00
2023-09-14 10:45:50 +00: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 20:43:34 +00:00
2023-09-14 10:45:50 +00:00
return $message;
}
2024-06-10 20:43:34 +00:00
2023-09-14 10:45:50 +00:00
public function toTelegram(): array
{
return [
2024-06-10 20:43:34 +00: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 10:45:50 +00:00
];
}
}