[H&R] basically

This commit is contained in:
xiaomlove
2021-06-21 02:01:26 +08:00
parent 45aba84111
commit d2a8f1a1a6
39 changed files with 966 additions and 74 deletions
@@ -0,0 +1,53 @@
<?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;
}
}
+7 -4
View File
@@ -6,7 +6,9 @@ use App\Models\Attendance;
use App\Models\Exam;
use App\Models\ExamProgress;
use App\Models\ExamUser;
use App\Models\HitAndRun;
use App\Models\SearchBox;
use App\Models\Snatch;
use App\Models\User;
use App\Repositories\ExamRepository;
use App\Repositories\SearchBoxRepository;
@@ -53,10 +55,11 @@ class Test extends Command
*/
public function handle()
{
$time = '2021-06-16T04:03:35Z';
$date = Carbon::parse($time);
$date->tz = 'Asia/Shanghai';
dd($date->toDateTimeString());
$user = User::query()->first();
$user->update([
'page' => DB::raw('dddd')
]);
dd(last_query());
}
}