goodsnotices/app/Console/Commands/HandleNotice.php
2024-05-25 22:06:58 +08:00

94 lines
2.5 KiB
PHP

<?php
namespace App\Console\Commands;
use App\helpers\apiRequest;
use App\Models\Notice;
use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Console\Command;
use Illuminate\Contracts\Console\Isolatable;
class HandleNotice extends Command implements Isolatable
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'handle:notice';
/**
* The console command description.
*
* @var string
*/
protected $description = '处理消息';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();;
}
/**
* Execute the console command.
*
* @return int
* @throws GuzzleException
*/
public function handle(): int
{
$this->line('开始消息队列');
$url = env('NOTICE_URL');
$res = apiRequest::request($url);
if (!$res['result'] || $res['errCode'] != '0000') {
$this->error('request err: ' . $res['desc'] ?? '');
return 1;
}
$arr = $res['data']['notice_list'] ?? [];
while ($items = array_splice($arr, 0, 500)) {
$ids = array_column($items, 'notice_id');
if (!$ids) {
continue;
}
$data = array_column($items, null, 'notice_id');
$hadIds = Notice::query()->select('notice_id')->whereIn('notice_id', $ids)->get()->toArray();
$hadIds = array_column($hadIds, 'notice_id');
$newIds = array_diff($ids, $hadIds);
if (!$newIds) {
continue;
}
$notices = [];
$time = date('Y-m-d H:i:s');
$queue = [];
foreach ($newIds as $id) {
$notices[] = [
'notice_id' => $id,
'notice_type'=>$data[$id]['type'],
'raw_content' => json_encode($data[$id]),
'created_at' => $time,
];
$queue[$data[$id]['type']][] = $data[$id];
}
try {
Notice::insert($notices);
} catch (\Exception $exception) {
$this->error('insert err:' . $exception->getMessage());
continue;
}
foreach ($queue as $type => $item) {
\App\Jobs\notice::dispatch($type, $item);
}
}
return 0;
}
}