whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
spatie
/
laravel-backup
/
src
/
Commands
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/spatie/laravel-backup/src/Commands/MonitorCommand.php
<?php namespace Spatie\Backup\Commands; use Illuminate\Contracts\Console\Isolatable; use Spatie\Backup\Events\HealthyBackupWasFound; use Spatie\Backup\Events\UnhealthyBackupWasFound; use Spatie\Backup\Tasks\Monitor\BackupDestinationStatusFactory; class MonitorCommand extends BaseCommand implements Isolatable { /** @var string */ protected $signature = 'backup:monitor'; /** @var string */ protected $description = 'Monitor the health of all backups.'; public function handle(): int { if (config()->has('backup.monitorBackups')) { $this->warn('Warning! Your config file still uses the old monitorBackups key. Update it to monitor_backups.'); } $hasError = false; $statuses = BackupDestinationStatusFactory::createForMonitorConfig(config('backup.monitor_backups')); foreach ($statuses as $backupDestinationStatus) { $backupName = $backupDestinationStatus->backupDestination()->backupName(); $diskName = $backupDestinationStatus->backupDestination()->diskName(); if ($backupDestinationStatus->isHealthy()) { $this->info("The {$backupName} backups on the {$diskName} disk are considered healthy."); event(new HealthyBackupWasFound($backupDestinationStatus)); } else { $hasError = true; $this->error("The {$backupName} backups on the {$diskName} disk are considered unhealthy!"); event(new UnhealthyBackupWasFound($backupDestinationStatus)); } } if ($hasError) { return static::FAILURE; } return static::SUCCESS; } }
Copyright ©2021 || Defacer Indonesia