mirror of
https://github.com/snipe/snipe-it.git
synced 2026-08-18 11:15:42 +00:00
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class SystemBackup extends Command
|
|
{
|
|
/**
|
|
* The console command name.
|
|
*
|
|
* @var string
|
|
*/
|
|
// --force is accepted for parity with other Laravel commands that require
|
|
// it (migrate, db:seed, etc.); it doesn't gate anything here but external
|
|
// automations were passing it and crashing on the "option does not exist"
|
|
// error.
|
|
protected $signature = 'snipeit:backup {--filename=} {--force}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'This command creates a database dump and zips up all of the uploaded files in the upload directories.';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
ini_set('max_execution_time', env('BACKUP_TIME_LIMIT', 600)); // 600 seconds = 10 minutes
|
|
|
|
if ($this->option('filename')) {
|
|
$filename = $this->option('filename');
|
|
|
|
// Make sure the filename ends in .zip
|
|
if (! ends_with($filename, '.zip')) {
|
|
$filename = $filename.'.zip';
|
|
}
|
|
|
|
$this->call('backup:run', ['--filename' => $filename]);
|
|
} else {
|
|
$this->call('backup:run');
|
|
}
|
|
|
|
}
|
|
}
|