87 lines
2.4 KiB
PHP
87 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\WorkOrder;
|
|
|
|
use App\Models\WorkOrder\WorkOrder;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Http\Client\RequestException;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class PushWorkOrderJob implements ShouldQueue
|
|
{
|
|
use InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
(new WorkOrder)->whereIn('status', ['pending'])->with(['module', 'user', 'host', 'replies'])->chunk(100, function ($workOrders) {
|
|
foreach ($workOrders as $workOrder) {
|
|
if ($workOrder->isPlatform()) {
|
|
if ($workOrder->status == 'pending') {
|
|
$workOrder->update(['status' => 'open']);
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
if ($workOrder->host) {
|
|
if ($workOrder->host->status === 'pending') {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
if ($workOrder->status === 'error') {
|
|
continue;
|
|
}
|
|
|
|
$workOrder->status = 'open';
|
|
|
|
$success = false;
|
|
try {
|
|
$response = $workOrder->module->http()->retry(3, 100)->post('work-orders', $workOrder->toArray());
|
|
|
|
if (! $response->successful()) {
|
|
Log::warning('推送工单失败', [
|
|
'work_order_id' => $workOrder->id,
|
|
'response' => $response->body(),
|
|
]);
|
|
} else {
|
|
$success = true;
|
|
}
|
|
} catch (RequestException $e) {
|
|
Log::warning($e->getMessage());
|
|
}
|
|
|
|
if (! $success) {
|
|
$workOrder->status = 'error';
|
|
}
|
|
|
|
$workOrder->save();
|
|
}
|
|
});
|
|
|
|
(new \App\Models\WorkOrder\Reply)->where('is_pending', 1)->chunk(100, function ($replies) {
|
|
foreach ($replies as $reply) {
|
|
dispatch(new Reply($reply));
|
|
}
|
|
});
|
|
}
|
|
}
|