mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
pgBackRest Further code quality changes Clean up code Small fix Hopefully the last bit of cleanup? Remove old comment! A couple more improvements Squash migrations
121 lines
3.8 KiB
PHP
121 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications\Database;
|
|
|
|
use App\Models\ScheduledDatabaseBackup;
|
|
use App\Notifications\CustomEmailNotification;
|
|
use App\Notifications\Dto\DiscordMessage;
|
|
use App\Notifications\Dto\PushoverMessage;
|
|
use App\Notifications\Dto\SlackMessage;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
class BackupFailed extends CustomEmailNotification
|
|
{
|
|
public string $name;
|
|
|
|
public string $frequency;
|
|
|
|
public string $engine;
|
|
|
|
public ?string $backupType;
|
|
|
|
public function __construct(ScheduledDatabaseBackup $backup, public $database, public $output, public $database_name)
|
|
{
|
|
$this->onQueue('high');
|
|
$this->name = $database->name;
|
|
$this->frequency = $backup->frequency;
|
|
$this->engine = $backup->engine ?? 'native';
|
|
$this->backupType = $backup->isPgBackrest() ? ($backup->pgbackrest_backup_type ?? 'full') : null;
|
|
}
|
|
|
|
public function via(object $notifiable): array
|
|
{
|
|
return $notifiable->getEnabledChannels('backup_failure');
|
|
}
|
|
|
|
public function toMail(): MailMessage
|
|
{
|
|
$mail = new MailMessage;
|
|
$mail->subject("Coolify: [ACTION REQUIRED] Database Backup FAILED for {$this->database->name}");
|
|
$mail->view('emails.backup-failed', [
|
|
'name' => $this->name,
|
|
'database_name' => $this->database_name,
|
|
'frequency' => $this->frequency,
|
|
'output' => $this->output,
|
|
]);
|
|
|
|
return $mail;
|
|
}
|
|
|
|
public function toDiscord(): DiscordMessage
|
|
{
|
|
$message = new DiscordMessage(
|
|
title: ':cross_mark: Database backup failed',
|
|
description: "Database backup for {$this->name} (db:{$this->database_name}) has FAILED.",
|
|
color: DiscordMessage::errorColor(),
|
|
isCritical: true,
|
|
);
|
|
|
|
$message->addField('Frequency', $this->frequency, true);
|
|
$message->addField('Output', $this->output);
|
|
|
|
return $message;
|
|
}
|
|
|
|
public function toTelegram(): array
|
|
{
|
|
$message = "Coolify: Database backup for {$this->name} (db:{$this->database_name}) with frequency of {$this->frequency} was FAILED.\n\nReason:\n{$this->output}";
|
|
|
|
return [
|
|
'message' => $message,
|
|
];
|
|
}
|
|
|
|
public function toPushover(): PushoverMessage
|
|
{
|
|
return new PushoverMessage(
|
|
title: 'Database backup failed',
|
|
level: 'error',
|
|
message: "Database backup for {$this->name} (db:{$this->database_name}) was FAILED<br/><br/><b>Frequency:</b> {$this->frequency} .<br/><b>Reason:</b> {$this->output}",
|
|
);
|
|
}
|
|
|
|
public function toSlack(): SlackMessage
|
|
{
|
|
$title = 'Database backup failed';
|
|
$description = "Database backup for {$this->name} (db:{$this->database_name}) has FAILED.";
|
|
|
|
$description .= "\n\n*Frequency:* {$this->frequency}";
|
|
$description .= "\n\n*Error Output:* {$this->output}";
|
|
|
|
return new SlackMessage(
|
|
title: $title,
|
|
description: $description,
|
|
color: SlackMessage::errorColor()
|
|
);
|
|
}
|
|
|
|
public function toWebhook(): array
|
|
{
|
|
$url = base_url().'/project/'.data_get($this->database, 'environment.project.uuid').'/environment/'.data_get($this->database, 'environment.uuid').'/database/'.$this->database->uuid;
|
|
|
|
$payload = [
|
|
'success' => false,
|
|
'message' => 'Database backup failed',
|
|
'event' => 'backup_failed',
|
|
'database_name' => $this->name,
|
|
'database_uuid' => $this->database->uuid,
|
|
'database_type' => $this->database_name,
|
|
'frequency' => $this->frequency,
|
|
'engine' => $this->engine,
|
|
'error_output' => $this->output,
|
|
'url' => $url,
|
|
];
|
|
|
|
if ($this->backupType) {
|
|
$payload['backup_type'] = $this->backupType;
|
|
}
|
|
|
|
return $payload;
|
|
}
|
|
}
|