File "MonitorCommand.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/laravel-backup/src/Commands/MonitorCommand.php
File size: 1.65 KB
MIME-type: text/x-php
Charset: utf-8

<?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;
    }
}