����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 216.73.216.155 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./bofirmacademy.com/vendor/spatie/laravel-backup/src/Tasks/Cleanup/ |
Upload File : |
<?php namespace Spatie\Backup\Tasks\Cleanup; use Exception; use Illuminate\Support\Collection; use Spatie\Backup\BackupDestination\BackupDestination; use Spatie\Backup\Events\CleanupHasFailed; use Spatie\Backup\Events\CleanupWasSuccessful; use Spatie\Backup\Helpers\Format; class CleanupJob { protected Collection $backupDestinations; protected CleanupStrategy $strategy; protected bool $sendNotifications = true; public function __construct( Collection $backupDestinations, CleanupStrategy $strategy, bool $disableNotifications = false, ) { $this->backupDestinations = $backupDestinations; $this->strategy = $strategy; $this->sendNotifications = ! $disableNotifications; } public function run(): void { $this->backupDestinations->each(function (BackupDestination $backupDestination) { try { if (! $backupDestination->isReachable()) { throw new Exception("Could not connect to disk {$backupDestination->diskName()} because: {$backupDestination->connectionError()}"); } consoleOutput()->info("Cleaning backups of {$backupDestination->backupName()} on disk {$backupDestination->diskName()}..."); $this->strategy ->setBackupDestination($backupDestination) ->deleteOldBackups($backupDestination->backups()); $this->sendNotification(new CleanupWasSuccessful($backupDestination)); $usedStorage = Format::humanReadableSize($backupDestination->fresh()->usedStorage()); consoleOutput()->info("Used storage after cleanup: {$usedStorage}."); } catch (Exception $exception) { consoleOutput()->error("Cleanup failed because: {$exception->getMessage()}."); $this->sendNotification(new CleanupHasFailed($exception)); throw $exception; } }); } protected function sendNotification($notification): void { if ($this->sendNotifications) { event($notification); } } }