mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-04 23:11:01 +08:00
51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Repositories\ToolRepository;
|
|
use Illuminate\Console\Command;
|
|
|
|
class BackupWeb extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'backup:web {--method=} {--transfer=}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'BackupWeb web data, options: --method';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function handle()
|
|
{
|
|
$method = $this->option('method');
|
|
$transfer = $this->option('transfer');
|
|
$this->info("method: $method, transfer: $transfer");
|
|
$rep = new ToolRepository();
|
|
$result = $rep->backupWeb($method, $transfer);
|
|
$log = sprintf('[%s], %s, result: %s', nexus()->getRequestId(), __METHOD__, var_export($result, true));
|
|
$this->info($log);
|
|
do_log($log);
|
|
}
|
|
}
|