invoiceninja/app/Jobs/Invoice/PrintEntityBatch.php

86 lines
2.6 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Jobs\Invoice;
use Throwable;
use App\Models\Invoice;
use App\Models\Webhook;
use Illuminate\Bus\Batch;
use App\Libraries\MultiDB;
use Illuminate\Support\Str;
use App\Services\Email\Email;
use Illuminate\Bus\Batchable;
use Illuminate\Bus\Queueable;
use App\Jobs\Entity\EmailEntity;
use App\Services\Email\EmailObject;
use App\Services\PdfMaker\PdfMerge;
use Illuminate\Support\Facades\Bus;
use Illuminate\Support\Facades\Cache;
use Illuminate\Queue\SerializesModels;
use App\Jobs\Entity\CreateBatchablePdf;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
class PrintEntityBatch implements ShouldQueue
{
use Dispatchable;
use InteractsWithQueue;
use Queueable;
use SerializesModels;
use Batchable;
public function __construct(private mixed $class, private array $entity_ids, private string $db)
{
}
public function handle()
{
MultiDB::setDb($this->db);
$batch_key = Str::uuid();
$invites = $this->class::with('invitations')->withTrashed()
->whereIn('id', $this->entity_ids)
->get()
->map(function ($entity) use ($batch_key) {
return new CreateBatchablePdf($entity->invitations->first(), "{$batch_key}-{$entity->id}");
})->toArray();
$mergedPdf = null;
$batch = Bus::batch($invites)
->before(function (Batch $batch) {
// The batch has been created but no jobs have been added...
// nlog("before");
})->progress(function (Batch $batch) {
// A single job has completed successfully...
// nlog("Batch {$batch->id} is {$batch->progress()}% complete");
})->then(function (Batch $batch) {
// All jobs completed successfully...
// nlog("job finished");
})->catch(function (Batch $batch, Throwable $e) {
// First batch job failure detected...
nlog("PrintEntityBatch failed: {$e->getMessage()}");
})->finally(function (Batch $batch) {
// The batch has finished executing...
// nlog("I have finished");
})->name($batch_key)->dispatch();
return $batch->id;
}
}