1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Utils/TemplateEngine.php

389 lines
12 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Utils;
use App\DataMapper\EmailTemplateDefaults;
use App\Models\Client;
use App\Models\ClientContact;
use App\Models\Invoice;
use App\Models\InvoiceInvitation;
2022-06-30 08:40:31 +02:00
use App\Models\PurchaseOrder;
use App\Models\PurchaseOrderInvitation;
2021-11-08 04:09:06 +01:00
use App\Models\Quote;
use App\Models\QuoteInvitation;
2022-06-30 08:40:31 +02:00
use App\Models\Vendor;
use App\Models\VendorContact;
2021-04-13 16:43:35 +02:00
use App\Services\PdfMaker\Designs\Utilities\DesignHelpers;
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
use App\Utils\Traits\MakesInvoiceHtml;
use App\Utils\Traits\MakesTemplateData;
use App\Utils\VendorHtmlEngine;
2020-10-28 11:10:49 +01:00
use DB;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Lang;
2022-06-30 08:40:31 +02:00
use Illuminate\Support\Str;
use League\CommonMark\CommonMarkConverter;
2021-04-13 16:43:35 +02:00
use TijsVerkoyen\CssToInlineStyles\CssToInlineStyles;
class TemplateEngine
{
use MakesHash;
use MakesTemplateData;
use MakesInvoiceHtml;
public $body;
public $subject;
public $entity;
public $entity_id;
public $template;
private $entity_obj;
private $settings_entity;
private $settings;
2021-01-19 01:46:00 +01:00
private $raw_body;
private $raw_subject;
2021-04-22 12:29:00 +02:00
/**
* @var array
*/
private $labels_and_values;
2021-01-19 01:46:00 +01:00
public function __construct($body, $subject, $entity, $entity_id, $template)
{
$this->body = $body;
$this->subject = $subject;
$this->entity = $entity;
$this->entity_id = $entity_id;
$this->template = $template;
$this->entity_obj = null;
$this->settings_entity = null;
}
public function build()
{
2022-07-01 10:35:52 +02:00
if ($this->template == 'email_template_null')
$this->template = 'email_template_purchase_order';
return $this->setEntity()
->setSettingsObject()
->setTemplates()
->replaceValues()
->renderTemplate();
}
private function setEntity()
{
if (strlen($this->entity) > 1 && strlen($this->entity_id) > 1) {
2022-06-30 08:40:31 +02:00
$class = 'App\Models\\'.ucfirst(Str::camel($this->entity));
$this->entity_obj = $class::withTrashed()->where('id', $this->decodePrimaryKey($this->entity_id))->company()->first();
2020-11-25 15:19:52 +01:00
} else {
$this->mockEntity();
2020-11-25 15:19:52 +01:00
}
return $this;
}
private function setSettingsObject()
{
2022-07-01 10:11:04 +02:00
if($this->entity == 'purchaseOrder'){
2022-06-30 08:40:31 +02:00
$this->settings_entity = auth()->user()->company();
$this->settings = $this->settings_entity->settings;
}
2022-07-01 10:19:40 +02:00
elseif ($this->entity_obj->client()->exists()) {
$this->settings_entity = $this->entity_obj->client;
$this->settings = $this->settings_entity->getMergedSettings();
} else {
$this->settings_entity = auth()->user()->company();
$this->settings = $this->settings_entity->settings;
}
App::forgetInstance('translator');
2021-05-31 12:40:34 +02:00
$t = app('translator');
$t->replace(Ninja::transformTranslations($this->settings));
return $this;
}
/* If the body / subject are not populated we need to get the defaults */
private function setTemplates()
{
if (strlen($this->subject) == 0 && strlen($this->template) > 1) {
$subject_template = str_replace('template', 'subject', $this->template);
2020-09-17 00:22:23 +02:00
2020-11-25 15:19:52 +01:00
if (strlen($this->settings_entity->getSetting($subject_template)) > 1) {
2020-09-17 00:22:23 +02:00
$this->subject = $this->settings_entity->getSetting($subject_template);
2020-11-25 15:19:52 +01:00
} else {
2020-09-17 00:22:23 +02:00
$this->subject = EmailTemplateDefaults::getDefaultTemplate($subject_template, $this->settings_entity->locale());
2020-11-25 15:19:52 +01:00
}
}
if (strlen($this->body) == 0 && strlen($this->template) > 1) {
2020-11-25 15:19:52 +01:00
if (strlen($this->settings_entity->getSetting($this->template)) > 1) {
2020-09-17 00:22:23 +02:00
$this->body = $this->settings_entity->getSetting($this->template);
2020-11-25 15:19:52 +01:00
} else {
2020-09-17 00:22:23 +02:00
$this->body = EmailTemplateDefaults::getDefaultTemplate($this->template, $this->settings_entity->locale());
2020-11-25 15:19:52 +01:00
}
}
2021-04-20 13:31:21 +02:00
return $this;
}
private function replaceValues()
{
2021-01-19 01:46:00 +01:00
$this->raw_body = $this->body;
$this->raw_subject = $this->subject;
2022-07-01 10:11:04 +02:00
if($this->entity == 'purchaseOrder'){
2022-06-30 08:40:31 +02:00
$this->fakerValues();
}
2022-07-01 10:35:52 +02:00
elseif ($this->entity_obj->client()->exists()) {
$this->entityValues($this->entity_obj->client->primary_contact()->first());
}
else {
$this->fakerValues();
}
return $this;
}
private function fakerValues()
{
$labels = $this->makeFakerLabels();
$values = $this->makeFakerValues();
$this->body = strtr($this->body, $labels);
$this->body = strtr($this->body, $values);
$this->subject = strtr($this->subject, $labels);
$this->subject = strtr($this->subject, $values);
$converter = new CommonMarkConverter([
'allow_unsafe_links' => false,
]);
2022-03-16 08:50:34 +01:00
$this->body = $converter->convert($this->body);
}
private function entityValues($contact)
{
2022-07-01 10:35:52 +02:00
if($this->entity == 'purchaseOrder')
$this->labels_and_values = (new VendorHtmlEngine($this->entity_obj->invitations->first()))->generateLabelsAndValues();
else
$this->labels_and_values = (new HtmlEngine($this->entity_obj->invitations->first()))->generateLabelsAndValues();
2020-10-28 06:50:06 +01:00
2021-04-22 12:29:00 +02:00
$this->body = strtr($this->body, $this->labels_and_values['labels']);
$this->body = strtr($this->body, $this->labels_and_values['values']);
2021-01-19 01:46:00 +01:00
2021-04-22 12:29:00 +02:00
$this->subject = strtr($this->subject, $this->labels_and_values['labels']);
$this->subject = strtr($this->subject, $this->labels_and_values['values']);
$email_style = $this->settings_entity->getSetting('email_style');
if ($email_style !== 'custom') {
$this->body = DesignHelpers::parseMarkdownToHtml($this->body);
}
}
private function renderTemplate()
{
/* wrapper */
$email_style = $this->settings_entity->getSetting('email_style');
$data['title'] = '';
$data['body'] = '$body';
$data['footer'] = '';
2021-06-15 15:42:37 +02:00
$data['logo'] = auth()->user()->company()->present()->logo();
2020-10-28 11:10:49 +01:00
2022-07-01 10:35:52 +02:00
if($this->entity_obj->client()->exists())
2022-06-30 08:40:31 +02:00
$data = array_merge($data, Helpers::sharedEmailVariables($this->entity_obj->client));
else{
$data['signature'] = $this->settings->email_signature;
$data['settings'] = $this->settings;
$data['whitelabel'] = $this->entity_obj ? $this->entity_obj->company->account->isPaid() : true;
$data['company'] = $this->entity_obj ? $this->entity_obj->company : '';
$data['settings'] = $this->settings;
2022-06-30 08:40:31 +02:00
}
if ($email_style == 'custom') {
$wrapper = $this->settings_entity->getSetting('email_style_custom');
2021-04-22 12:29:00 +02:00
// In order to parse variables such as $signature in the body,
// we need to replace strings with the values from HTMLEngine.
$wrapper = strtr($wrapper, $this->labels_and_values['values']);
/*If no custom design exists, send back a blank!*/
if (strlen($wrapper) > 1) {
$wrapper = $this->renderView($wrapper, $data);
} else {
$wrapper = '';
}
2021-06-23 10:46:51 +02:00
}
2021-06-15 15:42:37 +02:00
elseif ($email_style == 'plain') {
$wrapper = view($this->getTemplatePath($email_style), $data)->render();
$injection = '';
$wrapper = str_replace('<head>', $injection, $wrapper);
}
2021-06-15 15:42:37 +02:00
else {
$wrapper = view($this->getTemplatePath('client'), $data)->render();
$injection = '';
$wrapper = str_replace('<head>', $injection, $wrapper);
}
$data = [
'subject' => $this->subject,
2021-06-23 10:46:51 +02:00
'body' => $this->body,
'wrapper' => $wrapper,
2021-01-19 01:46:00 +01:00
'raw_body' => $this->raw_body,
'raw_subject' => $this->raw_subject
];
$this->tearDown();
return $data;
}
private function mockEntity()
{
if(!$this->entity && $this->template && str_contains($this->template, 'purchase_order'))
2022-07-01 10:11:04 +02:00
$this->entity = 'purchaseOrder';
DB::connection(config('database.default'))->beginTransaction();
2022-06-30 08:40:31 +02:00
$vendor = false;
$client = Client::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
]);
$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,
]);
2021-11-08 04:09:06 +01:00
2021-11-14 19:58:49 +01:00
if(!$this->entity || $this->entity == 'invoice')
2021-11-08 04:09:06 +01:00
{
$this->entity_obj = Invoice::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'client_id' => $client->id,
]);
$invitation = InvoiceInvitation::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'invoice_id' => $this->entity_obj->id,
'client_contact_id' => $contact->id,
]);
}
if($this->entity == 'quote')
{
$this->entity_obj = Quote::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'client_id' => $client->id,
]);
$invitation = QuoteInvitation::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'quote_id' => $this->entity_obj->id,
'client_contact_id' => $contact->id,
]);
}
2022-06-30 08:40:31 +02:00
2022-07-01 10:35:52 +02:00
if($this->entity == 'purchaseOrder')
2022-06-30 08:40:31 +02:00
{
$vendor = Vendor::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
]);
$contact = VendorContact::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'vendor_id' => $vendor->id,
'is_primary' => 1,
'send_email' => true,
]);
$this->entity_obj = PurchaseOrder::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'vendor_id' => $vendor->id,
]);
$invitation = PurchaseOrderInvitation::factory()->create([
'user_id' => auth()->user()->id,
'company_id' => auth()->user()->company()->id,
'purchase_order_id' => $this->entity_obj->id,
'vendor_contact_id' => $contact->id,
]);
}
if($vendor)
{
$this->entity_obj->setRelation('invitations', $invitation);
$this->entity_obj->setRelation('vendor', $vendor);
$this->entity_obj->setRelation('company', auth()->user()->company());
$this->entity_obj->load('vendor');
$vendor->setRelation('company', auth()->user()->company());
$vendor->load('company');
}
else
{
$this->entity_obj->setRelation('invitations', $invitation);
$this->entity_obj->setRelation('client', $client);
$this->entity_obj->setRelation('company', auth()->user()->company());
$this->entity_obj->load('client');
$client->setRelation('company', auth()->user()->company());
$client->load('company');
}
}
private function tearDown()
{
DB::connection(config('database.default'))->rollBack();
}
}