1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Controllers/PreviewController.php

456 lines
16 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Controllers;
2021-07-28 03:49:13 +02:00
use App\DataMapper\Analytics\LivePreview;
2021-07-27 10:04:46 +02:00
use App\Factory\CreditFactory;
use App\Factory\InvoiceFactory;
2021-07-27 10:04:46 +02:00
use App\Factory\QuoteFactory;
use App\Factory\RecurringInvoiceFactory;
use App\Http\Requests\Invoice\StoreInvoiceRequest;
use App\Http\Requests\Preview\PreviewInvoiceRequest;
use App\Jobs\Util\PreviewPdf;
2021-08-05 11:48:57 +02:00
use App\Libraries\MultiDB;
2020-10-05 10:16:36 +02:00
use App\Models\Client;
use App\Models\ClientContact;
2021-07-27 10:04:46 +02:00
use App\Models\Credit;
2020-10-05 10:16:36 +02:00
use App\Models\Invoice;
use App\Models\InvoiceInvitation;
2021-07-27 10:04:46 +02:00
use App\Models\Quote;
use App\Models\RecurringInvoice;
use App\Repositories\CreditRepository;
use App\Repositories\InvoiceRepository;
2021-07-27 10:04:46 +02:00
use App\Repositories\QuoteRepository;
use App\Repositories\RecurringInvoiceRepository;
2021-07-29 05:37:23 +02:00
use App\Services\PdfMaker\Design as PdfDesignModel;
2021-08-05 11:48:57 +02:00
use App\Services\PdfMaker\Design as PdfMakerDesign;
2020-09-04 13:17:30 +02:00
use App\Services\PdfMaker\Design;
2020-08-21 16:47:17 +02:00
use App\Services\PdfMaker\PdfMaker;
2021-03-18 10:57:55 +01:00
use App\Utils\HostedPDF\NinjaPdf;
2020-08-21 16:47:17 +02:00
use App\Utils\HtmlEngine;
use App\Utils\Ninja;
2020-11-27 03:24:13 +01:00
use App\Utils\PhantomJS\Phantom;
use App\Utils\Traits\MakesHash;
use App\Utils\Traits\MakesInvoiceHtml;
use Illuminate\Support\Facades\App;
2020-12-16 12:52:40 +01:00
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Lang;
2020-12-16 12:52:40 +01:00
use Illuminate\Support\Facades\Response;
2021-07-28 03:49:13 +02:00
use Turbo124\Beacon\Facades\LightLogs;
class PreviewController extends BaseController
{
use MakesHash;
use MakesInvoiceHtml;
public function __construct()
{
parent::__construct();
}
/**
* Returns a template filled with entity variables.
*
* @return \Illuminate\Http\Response
*
* @OA\Post(
* path="/api/v1/preview",
* operationId="getPreview",
* tags={"preview"},
* summary="Returns a pdf preview",
* description="Returns a pdf preview.",
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
* @OA\Response(
* response=200,
* description="The pdf response",
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
* ),
* @OA\Response(
* response=422,
* description="Validation error",
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
* ),
* @OA\Response(
* response="default",
* description="Unexpected Error",
* @OA\JsonContent(ref="#/components/schemas/Error"),
* ),
* )
*/
public function show()
{
if (request()->has('entity') &&
request()->has('entity_id') &&
! empty(request()->input('entity')) &&
! empty(request()->input('entity_id')) &&
request()->has('body')) {
$design_object = json_decode(json_encode(request()->input('design')));
2020-03-09 12:12:45 +01:00
if (! is_object($design_object)) {
2021-01-25 00:04:50 +01:00
return response()->json(['message' => ctrans('texts.invalid_design_object')], 400);
}
2020-03-09 12:12:45 +01:00
$entity = ucfirst(request()->input('entity'));
$class = "App\Models\\$entity";
$pdf_class = "App\Jobs\\$entity\\Create{$entity}Pdf";
$entity_obj = $class::whereId($this->decodePrimaryKey(request()->input('entity_id')))->company()->first();
if (! $entity_obj) {
return $this->blankEntity();
}
$entity_obj->load('client');
App::forgetInstance('translator');
2021-05-31 12:40:34 +02:00
$t = app('translator');
App::setLocale($entity_obj->client->primary_contact()->preferredLocale());
$t->replace(Ninja::transformTranslations($entity_obj->client->getMergedSettings()));
2020-10-27 12:57:12 +01:00
$html = new HtmlEngine($entity_obj->invitations()->first());
$design_namespace = 'App\Services\PdfMaker\Designs\\'.request()->design['name'];
2020-08-21 16:47:17 +02:00
$design_class = new $design_namespace();
$state = [
'template' => $design_class->elements([
'client' => $entity_obj->client,
'entity' => $entity_obj,
'pdf_variables' => (array) $entity_obj->company->settings->pdf_variables,
'products' => request()->design['design']['product'],
2020-08-21 16:47:17 +02:00
]),
'variables' => $html->generateLabelsAndValues(),
'process_markdown' => $entity_obj->client->company->markdown_enabled,
2020-08-21 16:47:17 +02:00
];
2020-09-04 13:17:30 +02:00
$design = new Design(request()->design['name']);
2020-08-21 16:47:17 +02:00
$maker = new PdfMaker($state);
$maker
2020-09-04 13:17:30 +02:00
->design($design)
2020-08-21 16:47:17 +02:00
->build();
if (request()->query('html') == 'true') {
2022-03-16 21:57:06 +01:00
return $maker->getCompiledHTML();
2020-12-16 12:52:40 +01:00
}
2020-12-11 21:51:10 +01:00
2020-11-27 03:02:05 +01:00
//if phantom js...... inject here..
2021-05-09 13:30:31 +02:00
if (config('ninja.phantomjs_pdf_generation') || config('ninja.pdf_generator') == 'phantom') {
2020-11-27 03:02:05 +01:00
return (new Phantom)->convertHtmlToPdf($maker->getCompiledHTML(true));
}
2021-03-18 10:57:55 +01:00
2021-05-09 13:30:31 +02:00
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
2021-03-18 10:57:55 +01:00
return (new NinjaPdf())->build($maker->getCompiledHTML(true));
}
2020-11-27 03:02:05 +01:00
//else
2020-09-04 13:17:30 +02:00
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), auth()->user()->company());
return response()->download($file_path, basename($file_path), ['Cache-Control:' => 'no-cache'])->deleteFileAfterSend(true);
}
return $this->blankEntity();
}
public function live(PreviewInvoiceRequest $request)
2021-07-25 08:23:10 +02:00
{
2021-08-05 14:39:09 +02:00
$company = auth()->user()->company();
MultiDB::setDb($company->db);
2021-08-06 09:53:52 +02:00
2021-11-16 03:30:32 +01:00
if($request->input('entity') == 'quote'){
2021-07-27 10:04:46 +02:00
$repo = new QuoteRepository();
2021-08-06 09:35:52 +02:00
$entity_obj = QuoteFactory::create($company->id, auth()->user()->id);
2021-07-27 10:04:46 +02:00
$class = Quote::class;
2021-07-25 08:23:10 +02:00
2021-07-27 10:04:46 +02:00
}
elseif($request->input('entity') == 'credit'){
$repo = new CreditRepository();
2021-08-06 09:35:52 +02:00
$entity_obj = CreditFactory::create($company->id, auth()->user()->id);
2021-07-27 10:04:46 +02:00
$class = Credit::class;
}
elseif($request->input('entity') == 'recurring_invoice'){
$repo = new RecurringInvoiceRepository();
2021-08-06 09:35:52 +02:00
$entity_obj = RecurringInvoiceFactory::create($company->id, auth()->user()->id);
2021-07-27 10:04:46 +02:00
$class = RecurringInvoice::class;
}
2021-11-16 03:30:32 +01:00
else { //assume it is either an invoice or a null object
$repo = new InvoiceRepository();
$entity_obj = InvoiceFactory::create($company->id, auth()->user()->id);
$class = Invoice::class;
}
2021-07-25 08:23:10 +02:00
2021-07-28 08:01:30 +02:00
try {
2021-07-28 08:12:07 +02:00
2021-08-06 09:48:35 +02:00
DB::connection(config('database.default'))->beginTransaction();
2021-07-28 08:12:07 +02:00
2021-07-27 10:04:46 +02:00
if($request->has('entity_id')){
2021-08-06 09:35:52 +02:00
$entity_obj = $class::on(config('database.default'))
2021-10-12 12:24:09 +02:00
->with('client.company')
2021-08-06 09:35:52 +02:00
->where('id', $this->decodePrimaryKey($request->input('entity_id')))
2021-08-05 14:39:09 +02:00
->where('company_id', $company->id)
2021-08-05 13:58:07 +02:00
->withTrashed()
2021-08-05 13:45:54 +02:00
->first();
2021-08-06 09:35:52 +02:00
}
2021-08-05 14:39:09 +02:00
2021-08-06 09:35:52 +02:00
$entity_obj = $repo->save($request->all(), $entity_obj);
if(!$request->has('entity_id'))
$entity_obj->service()->fillDefaults()->save();
2021-07-25 08:23:10 +02:00
App::forgetInstance('translator');
$t = app('translator');
2021-10-12 12:24:09 +02:00
App::setLocale($entity_obj->client->locale());
2021-07-25 08:23:10 +02:00
$t->replace(Ninja::transformTranslations($entity_obj->client->getMergedSettings()));
$html = new HtmlEngine($entity_obj->invitations()->first());
$design = \App\Models\Design::find($entity_obj->design_id);
2021-07-25 08:23:10 +02:00
/* Catch all in case migration doesn't pass back a valid design */
if(!$design)
2021-08-02 03:08:03 +02:00
$design = \App\Models\Design::find(2);
if ($design->is_custom) {
$options = [
'custom_partials' => json_decode(json_encode($design->design), true)
];
$template = new PdfMakerDesign(PdfDesignModel::CUSTOM, $options);
} else {
$template = new PdfMakerDesign(strtolower($design->name));
}
$variables = $html->generateLabelsAndValues();
2021-07-25 08:23:10 +02:00
$state = [
'template' => $template->elements([
2021-07-25 08:23:10 +02:00
'client' => $entity_obj->client,
'entity' => $entity_obj,
'pdf_variables' => (array) $entity_obj->company->settings->pdf_variables,
'$product' => $design->design->product,
'variables' => $variables,
2021-07-25 08:23:10 +02:00
]),
'variables' => $variables,
'options' => [
'all_pages_header' => $entity_obj->client->getSetting('all_pages_header'),
'all_pages_footer' => $entity_obj->client->getSetting('all_pages_footer'),
],
'process_markdown' => $entity_obj->client->company->markdown_enabled,
2021-07-25 08:23:10 +02:00
];
2021-07-25 08:23:10 +02:00
$maker = new PdfMaker($state);
$maker
->design($template)
2021-07-25 08:23:10 +02:00
->build();
2021-08-05 14:55:40 +02:00
DB::connection(config('database.default'))->rollBack();
2021-07-28 08:12:07 +02:00
2021-07-25 08:23:10 +02:00
if (request()->query('html') == 'true') {
2022-03-16 21:57:06 +01:00
return $maker->getCompiledHTML();
2021-07-25 08:23:10 +02:00
}
2021-07-28 08:12:07 +02:00
2021-07-28 08:01:30 +02:00
}
catch(\Exception $e){
2021-08-05 14:55:40 +02:00
DB::connection(config('database.default'))->rollBack();
2021-07-28 08:14:10 +02:00
return;
2021-07-28 08:01:30 +02:00
}
2021-07-25 08:23:10 +02:00
2021-07-25 08:23:10 +02:00
//if phantom js...... inject here..
if (config('ninja.phantomjs_pdf_generation') || config('ninja.pdf_generator') == 'phantom') {
return (new Phantom)->convertHtmlToPdf($maker->getCompiledHTML(true));
}
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
return (new NinjaPdf())->build($maker->getCompiledHTML(true));
}
2021-08-05 14:39:09 +02:00
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), $company);
2021-07-25 08:23:10 +02:00
2021-07-25 14:44:29 +02:00
2021-07-28 03:49:13 +02:00
if(Ninja::isHosted())
{
LightLogs::create(new LivePreview())
->increment()
2021-12-11 10:49:29 +01:00
->queue();
2021-07-28 03:49:13 +02:00
}
2021-08-06 09:35:52 +02:00
2021-07-28 03:49:13 +02:00
2021-07-25 14:44:29 +02:00
$response = Response::make($file_path, 200);
2021-07-28 03:49:13 +02:00
$response->header('Content-Type', 'application/pdf');
2021-07-25 08:23:10 +02:00
2021-07-25 14:44:29 +02:00
return $response;
2021-07-25 08:23:10 +02:00
}
private function blankEntity()
{
App::forgetInstance('translator');
2021-05-31 12:40:34 +02:00
$t = app('translator');
$t->replace(Ninja::transformTranslations(auth()->user()->company()->settings));
2022-02-13 09:48:59 +01:00
$invitation = InvoiceInvitation::where('company_id', auth()->user()->company()->id)->orderBy('id', 'desc')->first();
2021-12-19 21:16:44 +01:00
/* If we don't have a valid invitation in the system - create a mock using transactions */
if(!$invitation)
return $this->mockEntity();
$design_object = json_decode(json_encode(request()->input('design')));
if (! is_object($design_object)) {
return response()->json(['message' => 'Invalid custom design object'], 400);
}
$html = new HtmlEngine($invitation);
$design = new Design(Design::CUSTOM, ['custom_partials' => request()->design['design']]);
$state = [
'template' => $design->elements([
'client' => $invitation->invoice->client,
'entity' => $invitation->invoice,
'pdf_variables' => (array) $invitation->invoice->company->settings->pdf_variables,
'products' => request()->design['design']['product'],
]),
'variables' => $html->generateLabelsAndValues(),
'process_markdown' => $invitation->invoice->client->company->markdown_enabled,
];
$maker = new PdfMaker($state);
$maker
->design($design)
->build();
if (request()->query('html') == 'true') {
return $maker->getCompiledHTML();
}
if (config('ninja.phantomjs_pdf_generation') || config('ninja.pdf_generator') == 'phantom') {
return (new Phantom)->convertHtmlToPdf($maker->getCompiledHTML(true));
}
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
return (new NinjaPdf())->build($maker->getCompiledHTML(true));
}
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), auth()->user()->company());
$response = Response::make($file_path, 200);
$response->header('Content-Type', 'application/pdf');
return $response;
}
private function mockEntity()
{
DB::connection(auth()->user()->company()->db)->beginTransaction();
2020-07-05 13:39:59 +02:00
2020-10-01 13:34:05 +02:00
$client = Client::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
]);
2020-10-01 13:34:05 +02:00
$contact = ClientContact::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'client_id' => $client->id,
'is_primary' => 1,
'send_email' => true,
]);
2020-10-01 13:34:05 +02:00
$invoice = Invoice::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'client_id' => $client->id,
2022-02-12 06:05:05 +01:00
'terms' => 'Sample Terms',
'footer' => 'Sample Footer',
'public_notes' => 'Sample Public Notes',
]);
2020-08-04 13:00:19 +02:00
2020-10-01 13:34:05 +02:00
$invitation = InvoiceInvitation::factory()->create([
2020-08-04 10:37:28 +02:00
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'invoice_id' => $invoice->id,
'client_contact_id' => $contact->id,
]);
2020-08-04 10:37:28 +02:00
$invoice->setRelation('invitations', $invitation);
$invoice->setRelation('client', $client);
$invoice->setRelation('company', auth()->user()->company());
2021-10-08 06:00:17 +02:00
$invoice->load('client.company');
$design_object = json_decode(json_encode(request()->input('design')));
if (! is_object($design_object)) {
return response()->json(['message' => 'Invalid custom design object'], 400);
}
2020-10-27 12:57:12 +01:00
$html = new HtmlEngine($invoice->invitations()->first());
2020-08-28 09:51:02 +02:00
$design = new Design(Design::CUSTOM, ['custom_partials' => request()->design['design']]);
2020-08-28 09:51:02 +02:00
$state = [
2020-09-04 13:17:30 +02:00
'template' => $design->elements([
2020-08-28 09:51:02 +02:00
'client' => $invoice->client,
'entity' => $invoice,
'pdf_variables' => (array) $invoice->company->settings->pdf_variables,
'products' => request()->design['design']['product'],
2020-08-28 09:51:02 +02:00
]),
'variables' => $html->generateLabelsAndValues(),
'process_markdown' => $invoice->client->company->markdown_enabled,
2020-08-28 09:51:02 +02:00
];
2020-08-28 09:51:02 +02:00
$maker = new PdfMaker($state);
$maker
2020-09-04 13:17:30 +02:00
->design($design)
2020-08-28 09:51:02 +02:00
->build();
2021-12-19 21:16:44 +01:00
DB::connection(auth()->user()->company()->db)->rollBack();
if (request()->query('html') == 'true') {
return $maker->getCompiledHTML();
}
if (config('ninja.phantomjs_pdf_generation') || config('ninja.pdf_generator') == 'phantom') {
2020-11-27 12:08:42 +01:00
return (new Phantom)->convertHtmlToPdf($maker->getCompiledHTML(true));
}
2021-03-18 10:57:55 +01:00
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
2021-03-18 10:57:55 +01:00
return (new NinjaPdf())->build($maker->getCompiledHTML(true));
}
2020-11-27 03:23:02 +01:00
2020-09-04 13:17:30 +02:00
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), auth()->user()->company());
2020-07-05 12:58:30 +02:00
$response = Response::make($file_path, 200);
$response->header('Content-Type', 'application/pdf');
2020-08-28 09:51:02 +02:00
return $response;
}
}