mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
52 lines
1.4 KiB
PHP
52 lines
1.4 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;
|
|
|
|
|
|
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']);
|
|
}
|
|
|
|
(App()->make(ListDocumentsJobProcessor::class))->execute($this->listGenericJobObject);
|
|
}
|
|
|
|
public function getJobId(){
|
|
return $this->job->getJobId();
|
|
}
|
|
}
|