Files
nexusphp/app/Console/Commands/HitAndRunUpdateStatus.php

54 lines
1.2 KiB
PHP
Raw Normal View History

2021-06-21 02:01:26 +08:00
<?php
namespace App\Console\Commands;
use App\Repositories\HitAndRunRepository;
use Illuminate\Console\Command;
class HitAndRunUpdateStatus extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'hr:update_status {--uid=} {--torrent_id=}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Update H&R status, options: --uid, --torrent_id';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$uid = $this->option('uid');
$torrentId = $this->option('torrent_id');
$rep = new HitAndRunRepository();
$result = $rep->cronjobUpdateStatus($uid, $torrentId);
$log = sprintf(
'[%s], %s, uid: %s, torrentId: %s, result: %s',
REQUEST_ID, __METHOD__, $uid, $torrentId, var_export($result, true)
);
$this->info($log);
do_log($log);
return 0;
}
}