2019-12-17 11:58:23 +01:00
|
|
|
<?php
|
2020-04-30 13:45:47 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-12-17 11:58:23 +01:00
|
|
|
|
|
|
|
namespace App\Jobs\Util;
|
|
|
|
|
|
|
|
use App\Utils\Traits\BulkOptions;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class ProcessBulk implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, BulkOptions;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Repository for target resource.
|
|
|
|
*/
|
|
|
|
protected $repo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method aka 'action' to process.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $method;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Chunks of data to process.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @param $repo
|
|
|
|
* @param string $method
|
|
|
|
*/
|
2019-12-30 22:59:12 +01:00
|
|
|
public function __construct(array $data, $repo, string $method)
|
2019-12-17 11:58:23 +01:00
|
|
|
{
|
|
|
|
$this->repo = $repo;
|
|
|
|
$this->method = $method;
|
|
|
|
$this->data = $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
foreach ($this->data as $resource) {
|
2019-12-17 11:58:23 +01:00
|
|
|
$this->repo->{$this->method}($resource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|