2023-08-18 15:36:54 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2023-08-18 15:36:54 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Jobs\Report;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
2023-10-26 04:57:44 +02:00
|
|
|
use App\Models\Company;
|
2023-08-18 15:36:54 +02:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
2023-10-26 04:57:44 +02:00
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
2023-08-18 15:36:54 +02:00
|
|
|
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
2023-10-26 04:57:44 +02:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
2023-08-18 15:36:54 +02:00
|
|
|
|
|
|
|
class PreviewReport implements ShouldQueue
|
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
use Dispatchable;
|
|
|
|
use InteractsWithQueue;
|
|
|
|
use Queueable;
|
|
|
|
use SerializesModels;
|
2023-08-18 15:36:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance
|
|
|
|
*/
|
|
|
|
public function __construct(protected Company $company, protected array $request, private string $report_class, protected string $hash)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
MultiDB::setDb($this->company->db);
|
|
|
|
|
|
|
|
/** @var \App\Export\CSV\CreditExport $export */
|
|
|
|
$export = new $this->report_class($this->company, $this->request);
|
2023-10-06 12:07:31 +02:00
|
|
|
|
2023-11-26 08:41:42 +01:00
|
|
|
if(isset($this->request['output']) && $this->request['output'] == 'json') {
|
2023-10-26 05:54:32 +02:00
|
|
|
$report = $export->returnJson();
|
2023-11-26 08:41:42 +01:00
|
|
|
} else {
|
2023-10-26 05:54:32 +02:00
|
|
|
$report = $export->run();
|
2023-11-26 08:41:42 +01:00
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-08-18 15:36:54 +02:00
|
|
|
Cache::put($this->hash, $report, 60 * 60);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function middleware()
|
|
|
|
{
|
|
|
|
return [new WithoutOverlapping("report-{$this->company->company_key}")];
|
|
|
|
}
|
|
|
|
}
|