mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
f8230990f4
This reverts merge request !157
64 lines
1.9 KiB
PHP
64 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Classes\Jobs;
|
|
|
|
use App\Classes\Modules\Documents\Processors\ListDocumentsJobProcessor;
|
|
use App\Classes\Modules\Jobs\DataTransferObjects\ListGenericJobObject;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use App\Models\JobResult;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class ListDocumentsJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public $timeout = 900;
|
|
|
|
/** @var ListGenericJobObject */
|
|
private $listGenericJobObject;
|
|
|
|
private $jobId;
|
|
|
|
/**
|
|
* ListDocumentsJob constructor.
|
|
* @param ListGenericJobObject $listGenericJobObject
|
|
*/
|
|
public function __construct(ListGenericJobObject $listGenericJobObject)
|
|
{
|
|
$this->listGenericJobObject = $listGenericJobObject;
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
$rawPayload = $this->job->payload();
|
|
if(isset($rawPayload['data']['commandName'])){
|
|
$this->listGenericJobObject->setJobCommandName($rawPayload['data']['commandName']);
|
|
}
|
|
|
|
if(isset($rawPayload['data']['command'])){
|
|
$this->listGenericJobObject->setJobCommand($rawPayload['data']['command']);
|
|
}
|
|
|
|
$result = (App()->make(ListDocumentsJobProcessor::class))->execute($this->listGenericJobObject);
|
|
|
|
//cief todo: Insert into DB: job id, query result, timestamp
|
|
// Store the result in the job_results table
|
|
|
|
//cief todo: why cannot save data in table like this
|
|
// $model = new JobResult();
|
|
// $model->job_id = $this->job->getJobId();
|
|
// $model->result = json_encode($result);
|
|
// $model->save();
|
|
|
|
// Log::error(json_encode($model->id));
|
|
}
|
|
|
|
public function getJobId(){
|
|
return $this->job->getJobId();
|
|
}
|
|
}
|