2023-08-10 19:00:02 +00: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;
|
|
|
|
|
2024-04-29 07:38:45 +00:00
|
|
|
public $backoff = 10;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-04-29 07:38:45 +00:00
|
|
|
public $tries = 3;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-09-01 13:52:18 +00:00
|
|
|
public string $name;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-09-01 13:52:18 +00:00
|
|
|
public string $frequency;
|
2023-08-10 19:00:02 +00:00
|
|
|
|
2024-04-29 07:38:45 +00:00
|
|
|
public function __construct(ScheduledDatabaseBackup $backup, public $database, public $database_name)
|
2023-08-10 19:00:02 +00:00
|
|
|
{
|
2023-09-01 13:52:18 +00:00
|
|
|
$this->name = $database->name;
|
|
|
|
$this->frequency = $backup->frequency;
|
2023-08-10 19:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function via(object $notifiable): array
|
|
|
|
{
|
2023-09-06 12:31:38 +00:00
|
|
|
return setNotificationChannels($notifiable, 'database_backups');
|
2023-08-10 19:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function toMail(): MailMessage
|
|
|
|
{
|
|
|
|
$mail = new MailMessage();
|
2023-10-10 11:10:43 +00:00
|
|
|
$mail->subject("Coolify: Backup successfully done for {$this->database->name}");
|
2023-09-01 13:52:18 +00:00
|
|
|
$mail->view('emails.backup-success', [
|
|
|
|
'name' => $this->name,
|
2024-04-25 10:09:46 +00:00
|
|
|
'database_name' => $this->database_name,
|
2023-09-01 13:52:18 +00:00
|
|
|
'frequency' => $this->frequency,
|
|
|
|
]);
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-08-10 19:00:02 +00:00
|
|
|
return $mail;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function toDiscord(): string
|
|
|
|
{
|
2024-04-25 10:09:46 +00:00
|
|
|
return "Coolify: Database backup for {$this->name} (db:{$this->database_name}) with frequency of {$this->frequency} was successful.";
|
2023-08-10 19:00:02 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-09-06 12:31:38 +00:00
|
|
|
public function toTelegram(): array
|
|
|
|
{
|
2024-04-25 10:09:46 +00:00
|
|
|
$message = "Coolify: Database backup for {$this->name} (db:{$this->database_name}) with frequency of {$this->frequency} was successful.";
|
2024-04-29 07:38:45 +00:00
|
|
|
ray($message);
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-09-06 12:31:38 +00:00
|
|
|
return [
|
2024-06-10 20:43:34 +00:00
|
|
|
'message' => $message,
|
2023-09-06 12:31:38 +00:00
|
|
|
];
|
|
|
|
}
|
2023-08-10 19:00:02 +00:00
|
|
|
}
|