2020-02-12 01:41:17 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-02-12 01:41:17 +01: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-02-12 01:41:17 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Invoice;
|
|
|
|
|
2020-10-26 05:06:58 +01:00
|
|
|
use App\Jobs\Entity\CreateEntityPdf;
|
2020-02-17 10:37:44 +01:00
|
|
|
use App\Models\ClientContact;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Services\AbstractService;
|
2021-01-12 00:21:17 +01:00
|
|
|
use App\Utils\TempFile;
|
2020-02-12 01:41:17 +01:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
|
2020-02-17 10:37:44 +01:00
|
|
|
class GetInvoicePdf extends AbstractService
|
2020-02-12 01:41:17 +01:00
|
|
|
{
|
2020-02-17 10:37:44 +01:00
|
|
|
public function __construct(Invoice $invoice, ClientContact $contact = null)
|
|
|
|
{
|
|
|
|
$this->invoice = $invoice;
|
|
|
|
|
|
|
|
$this->contact = $contact;
|
|
|
|
}
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function run()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $this->contact) {
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->contact = $this->invoice->client->primary_contact()->first();
|
|
|
|
}
|
2020-02-12 01:41:17 +01:00
|
|
|
|
2020-04-16 10:41:25 +02:00
|
|
|
$invitation = $this->invoice->invitations->where('client_contact_id', $this->contact->id)->first();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$path = $this->invoice->client->invoice_filepath();
|
2020-02-14 04:32:22 +01:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$file_path = $path.$this->invoice->number.'.pdf';
|
2020-02-12 01:41:17 +01:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$disk = config('filesystems.default');
|
2020-02-12 01:41:17 +01:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$file = Storage::disk($disk)->exists($file_path);
|
2020-02-12 01:41:17 +01:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $file) {
|
2020-10-26 05:06:58 +01:00
|
|
|
$file_path = CreateEntityPdf::dispatchNow($invitation);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-02-12 01:41:17 +01:00
|
|
|
|
2021-01-12 10:35:47 +01:00
|
|
|
|
|
|
|
/* Copy from remote disk to local when using cloud file storage. */
|
2021-01-12 09:04:05 +01:00
|
|
|
if(config('filesystems.default') == 's3')
|
|
|
|
return TempFile::path(Storage::disk($disk)->url($file_path));
|
2021-01-12 00:21:17 +01:00
|
|
|
|
|
|
|
// return Storage::disk($disk)->url($file_path);
|
2021-01-12 09:04:05 +01:00
|
|
|
return Storage::disk($disk)->path($file_path);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-02-12 01:41:17 +01:00
|
|
|
}
|