mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
235 lines
5.5 KiB
PHP
235 lines
5.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||
|
*/
|
||
|
|
||
|
namespace App\Services\Template;
|
||
|
|
||
|
use App\Models\Design;
|
||
|
|
||
|
|
||
|
class TemplateService
|
||
|
{
|
||
|
|
||
|
private \DomDocument $document;
|
||
|
|
||
|
private string $compiled_html = '';
|
||
|
|
||
|
public function __construct(public Design $template)
|
||
|
{
|
||
|
$this->template = $template;
|
||
|
$this->init();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Boot Dom Document
|
||
|
*
|
||
|
* @return self
|
||
|
*/
|
||
|
private function init(): self
|
||
|
{
|
||
|
$this->document = new \DOMDocument();
|
||
|
$this->document->validateOnParse = true;
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Iterate through all of the
|
||
|
* ninja nodes
|
||
|
*
|
||
|
* @param array $data - the payload to be passed into the template
|
||
|
* @return self
|
||
|
*/
|
||
|
private function build(array $data): self
|
||
|
{
|
||
|
$this->compose()
|
||
|
->parseNinjaBlocks($data)
|
||
|
->parseVariables();
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getHtml(): string
|
||
|
{
|
||
|
return $this->compiled_html;
|
||
|
}
|
||
|
/**
|
||
|
* Parses all Ninja tags in the document
|
||
|
*
|
||
|
* @param array $data
|
||
|
*
|
||
|
* @return self
|
||
|
*/
|
||
|
private function parseNinjaBlocks(array $data): self
|
||
|
{
|
||
|
$data = $this->preProcessDataBlocks($data);
|
||
|
$replacements = [];
|
||
|
|
||
|
$contents = $this->document->getElementsByTagName('ninja');
|
||
|
|
||
|
foreach ($contents as $content) {
|
||
|
|
||
|
$template = $content->ownerDocument->saveHTML($content);
|
||
|
|
||
|
$loader = new \Twig\Loader\FilesystemLoader(storage_path());
|
||
|
$twig = new \Twig\Environment($loader);
|
||
|
|
||
|
$string_extension = new \Twig\Extension\StringLoaderExtension();
|
||
|
$twig->addExtension($string_extension);
|
||
|
|
||
|
$template = $twig->createTemplate(html_entity_decode($template));
|
||
|
$template = $template->render($data);
|
||
|
|
||
|
$f = $this->document->createDocumentFragment();
|
||
|
$f->appendXML($template);
|
||
|
$replacements[] = $f;
|
||
|
|
||
|
}
|
||
|
|
||
|
foreach($contents as $key => $content) {
|
||
|
$content->parentNode->replaceChild($replacements[$key], $content);
|
||
|
}
|
||
|
|
||
|
$this->save();
|
||
|
|
||
|
return $this;
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Parses all variables in the document
|
||
|
*
|
||
|
* @return self
|
||
|
*/
|
||
|
private function parseVariables(): self
|
||
|
{
|
||
|
$variables = $this->resolveHtmlEngine();
|
||
|
|
||
|
$html = strtr($this->getHtml(), $variables['labels']);
|
||
|
$html = strtr($html, $variables['values']);
|
||
|
|
||
|
@$this->document->loadHTML(mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8'));
|
||
|
$this->save();
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Saves the document and updates the compiled string.
|
||
|
*
|
||
|
* @return self
|
||
|
*/
|
||
|
private function save(): self
|
||
|
{
|
||
|
$this->compiled_html = str_replace('%24', '$', $this->document->saveHTML());
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* compose
|
||
|
*
|
||
|
* @return self
|
||
|
*/
|
||
|
private function compose(): self
|
||
|
{
|
||
|
$html = '';
|
||
|
$html .= $this->template->design->includes;
|
||
|
$html .= $this->template->design->header;
|
||
|
$html .= $this->template->design->body;
|
||
|
$html .= $this->template->design->footer;
|
||
|
|
||
|
@$this->document->loadHTML($html);
|
||
|
|
||
|
return $this;
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Resolves the labels and values needed to replace the string
|
||
|
* holders in the template.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
private function resolveHtmlEngine(): array
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
private function preProcessDataBlocks($data): array
|
||
|
{
|
||
|
return collect($data)->map(function ($key, $value){
|
||
|
|
||
|
$processed[$key] = [];
|
||
|
|
||
|
match ($key) {
|
||
|
'invoices' => $processed[$key] = $this->processInvoices($value),
|
||
|
'quotes' => $processed[$key] = $this->processQuotes($value),
|
||
|
'credits' => $processed[$key] = $this->processCredits($value),
|
||
|
'payments' => $processed[$key] = $this->processPayments($value),
|
||
|
'tasks' => $processed[$key] = $this->processTasks($value),
|
||
|
'projects' => $processed[$key] = $this->processProjects($value),
|
||
|
'purchase_orders' => $processed[$key] = $this->processPurchaseOrders($value),
|
||
|
};
|
||
|
|
||
|
return $processed;
|
||
|
|
||
|
})->toArray();
|
||
|
}
|
||
|
|
||
|
private function processInvoices($invoices): array
|
||
|
{
|
||
|
return $invoices->map(function ($invoice){
|
||
|
|
||
|
})->toArray();
|
||
|
}
|
||
|
|
||
|
private function processQuotes($quotes): array
|
||
|
{
|
||
|
return $quotes->map(function ($quote){
|
||
|
|
||
|
})->toArray();
|
||
|
}
|
||
|
|
||
|
private function processCredits($credits): array
|
||
|
{
|
||
|
return $credits->map(function ($credit){
|
||
|
|
||
|
})->toArray();
|
||
|
}
|
||
|
|
||
|
private function processPayments($payments): array
|
||
|
{
|
||
|
return $payments->map(function ($payment){
|
||
|
|
||
|
})->toArray();
|
||
|
}
|
||
|
|
||
|
private function processTasks($tasks): array
|
||
|
{
|
||
|
return $tasks->map(function ($task){
|
||
|
|
||
|
})->toArray();
|
||
|
}
|
||
|
|
||
|
private function processProjects($projects): array
|
||
|
{
|
||
|
return $projects->map(function ($project){
|
||
|
|
||
|
})->toArray();
|
||
|
}
|
||
|
|
||
|
private function processPurchaseOrders($purchase_orders): array
|
||
|
{
|
||
|
return $purchase_orders->map(function ($purchase_order){
|
||
|
|
||
|
})->toArray();
|
||
|
}
|
||
|
}
|