File "BackupCommand.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/laravel-backup/src/Commands/BackupCommand.php
File size: 3.19 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Backup\Commands;
use Exception;
use Illuminate\Contracts\Console\Isolatable;
use Spatie\Backup\Events\BackupHasFailed;
use Spatie\Backup\Exceptions\BackupFailed;
use Spatie\Backup\Exceptions\InvalidCommand;
use Spatie\Backup\Tasks\Backup\BackupJobFactory;
use Spatie\Backup\Traits\Retryable;
class BackupCommand extends BaseCommand implements Isolatable
{
use Retryable;
protected $signature = 'backup:run {--filename=} {--only-db} {--db-name=*} {--only-files} {--only-to-disk=} {--disable-notifications} {--timeout=} {--tries=}';
protected $description = 'Run the backup.';
public function handle(): int
{
consoleOutput()->comment($this->currentTry > 1 ? sprintf('Attempt n°%d...', $this->currentTry) : 'Starting backup...');
$disableNotifications = $this->option('disable-notifications');
if ($this->option('timeout') && is_numeric($this->option('timeout'))) {
set_time_limit((int) $this->option('timeout'));
}
try {
$this->guardAgainstInvalidOptions();
$backupJob = BackupJobFactory::createFromArray(config('backup'));
if ($this->option('only-db')) {
$backupJob->dontBackupFilesystem();
}
if ($this->option('db-name')) {
$backupJob->onlyDbName($this->option('db-name'));
}
if ($this->option('only-files')) {
$backupJob->dontBackupDatabases();
}
if ($this->option('only-to-disk')) {
$backupJob->onlyBackupTo($this->option('only-to-disk'));
}
if ($this->option('filename')) {
$backupJob->setFilename($this->option('filename'));
}
$this->setTries('backup');
if ($disableNotifications) {
$backupJob->disableNotifications();
}
if (! $this->getSubscribedSignals()) {
$backupJob->disableSignals();
}
$backupJob->run();
consoleOutput()->comment('Backup completed!');
return static::SUCCESS;
} catch (Exception $exception) {
if ($this->shouldRetry()) {
if ($this->hasRetryDelay('backup')) {
$this->sleepFor($this->getRetryDelay('backup'));
}
$this->currentTry += 1;
return $this->handle();
}
consoleOutput()->error("Backup failed because: {$exception->getMessage()}.");
report($exception);
if (! $disableNotifications) {
event(
$exception instanceof BackupFailed
? new BackupHasFailed($exception->getPrevious(), $exception->backupDestination)
: new BackupHasFailed($exception)
);
}
return static::FAILURE;
}
}
protected function guardAgainstInvalidOptions()
{
if (! $this->option('only-db')) {
return;
}
if (! $this->option('only-files')) {
return;
}
throw InvalidCommand::create('Cannot use `only-db` and `only-files` together');
}
}