coolify/app/Notifications/Database/BackupSuccess.php

53 lines
1.4 KiB
PHP
Raw Normal View History

2023-08-10 21:00:02 +02:00
<?php
namespace App\Notifications\Database;
use App\Models\ScheduledDatabaseBackup;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class BackupSuccess extends Notification implements ShouldQueue
{
use Queueable;
public $tries = 1;
2023-09-01 15:52:18 +02:00
public string $name;
public string $frequency;
2023-08-10 21:00:02 +02:00
public function __construct(ScheduledDatabaseBackup $backup, public $database)
{
2023-09-01 15:52:18 +02:00
$this->name = $database->name;
$this->frequency = $backup->frequency;
2023-08-10 21:00:02 +02:00
}
public function via(object $notifiable): array
{
2023-09-06 14:31:38 +02:00
return setNotificationChannels($notifiable, 'database_backups');
2023-08-10 21:00:02 +02:00
}
public function toMail(): MailMessage
{
$mail = new MailMessage();
2023-10-10 13:10:43 +02:00
$mail->subject("Coolify: Backup successfully done for {$this->database->name}");
2023-09-01 15:52:18 +02:00
$mail->view('emails.backup-success', [
'name' => $this->name,
'frequency' => $this->frequency,
]);
2023-08-10 21:00:02 +02:00
return $mail;
}
public function toDiscord(): string
{
2023-10-10 13:10:43 +02:00
return "Coolify: Database backup for {$this->name} with frequency of {$this->frequency} was successful.";
2023-08-10 21:00:02 +02:00
}
2023-09-06 14:31:38 +02:00
public function toTelegram(): array
{
2023-10-10 13:10:43 +02:00
$message = "Coolify: Database backup for {$this->name} with frequency of {$this->frequency} was successful.";
2023-09-06 14:31:38 +02:00
return [
"message" => $message,
];
}
2023-08-10 21:00:02 +02:00
}