2024-03-02 14:18:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Notifications\Server;
|
|
|
|
|
|
|
|
|
|
use App\Models\Server;
|
2024-11-26 09:19:05 +00:00
|
|
|
use App\Notifications\CustomEmailNotification;
|
2024-10-01 19:38:12 +00:00
|
|
|
use App\Notifications\Dto\DiscordMessage;
|
2024-12-11 14:54:11 +00:00
|
|
|
use App\Notifications\Dto\PushoverMessage;
|
2024-11-12 21:37:55 +00:00
|
|
|
use App\Notifications\Dto\SlackMessage;
|
2024-12-09 15:57:15 +00:00
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
2024-03-02 14:18:49 +00:00
|
|
|
|
2024-12-10 15:12:32 +00:00
|
|
|
class DockerCleanupFailed extends CustomEmailNotification
|
2024-03-02 14:18:49 +00:00
|
|
|
{
|
2024-11-12 21:37:55 +00:00
|
|
|
public function __construct(public Server $server, public string $message)
|
|
|
|
|
{
|
2024-11-22 10:16:01 +00:00
|
|
|
$this->onQueue('high');
|
2024-11-12 21:37:55 +00:00
|
|
|
}
|
2024-03-02 14:18:49 +00:00
|
|
|
|
|
|
|
|
public function via(object $notifiable): array
|
|
|
|
|
{
|
2024-12-10 15:12:32 +00:00
|
|
|
return $notifiable->getEnabledChannels('docker_cleanup_failure');
|
2024-03-02 14:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
2024-12-09 15:57:15 +00:00
|
|
|
public function toMail(): MailMessage
|
|
|
|
|
{
|
|
|
|
|
$mail = new MailMessage;
|
2024-12-10 15:12:32 +00:00
|
|
|
$mail->subject("Coolify: [ACTION REQUIRED] Docker cleanup job failed on {$this->server->name}");
|
|
|
|
|
$mail->view('emails.docker-cleanup-failed', [
|
2024-12-11 09:50:10 +00:00
|
|
|
'name' => $this->server->name,
|
|
|
|
|
'text' => $this->message,
|
2024-12-09 15:57:15 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
return $mail;
|
|
|
|
|
}
|
2024-03-02 14:18:49 +00:00
|
|
|
|
2024-10-01 19:38:12 +00:00
|
|
|
public function toDiscord(): DiscordMessage
|
2024-03-02 14:18:49 +00:00
|
|
|
{
|
2024-10-01 19:38:12 +00:00
|
|
|
return new DiscordMessage(
|
2024-12-10 15:12:32 +00:00
|
|
|
title: ':cross_mark: Coolify: [ACTION REQUIRED] Docker cleanup job failed on '.$this->server->name,
|
2024-10-01 19:38:12 +00:00
|
|
|
description: $this->message,
|
2024-12-10 15:12:32 +00:00
|
|
|
color: DiscordMessage::errorColor(),
|
2024-10-01 19:38:12 +00:00
|
|
|
);
|
2024-03-02 14:18:49 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-03-02 14:18:49 +00:00
|
|
|
public function toTelegram(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
2024-12-10 15:12:32 +00:00
|
|
|
'message' => "Coolify: [ACTION REQUIRED] Docker cleanup job failed on {$this->server->name}!\n\n{$this->message}",
|
2024-03-02 14:18:49 +00:00
|
|
|
];
|
|
|
|
|
}
|
2024-11-12 21:37:55 +00:00
|
|
|
|
2024-12-11 14:54:11 +00:00
|
|
|
public function toPushover(): PushoverMessage
|
|
|
|
|
{
|
|
|
|
|
return new PushoverMessage(
|
|
|
|
|
title: 'Docker cleanup job failed',
|
|
|
|
|
level: 'error',
|
|
|
|
|
message: "[ACTION REQUIRED] Docker cleanup job failed on {$this->server->name}!\n\n{$this->message}",
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-12 21:37:55 +00:00
|
|
|
public function toSlack(): SlackMessage
|
|
|
|
|
{
|
|
|
|
|
return new SlackMessage(
|
2024-12-10 15:12:32 +00:00
|
|
|
title: 'Coolify: [ACTION REQUIRED] Docker cleanup job failed',
|
|
|
|
|
description: "Docker cleanup job failed on '{$this->server->name}'!\n\n{$this->message}",
|
|
|
|
|
color: SlackMessage::errorColor()
|
2024-11-12 21:37:55 +00:00
|
|
|
);
|
|
|
|
|
}
|
2024-03-02 14:18:49 +00:00
|
|
|
}
|