1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Services/PdfMaker/PdfMaker.php

127 lines
3.0 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Services\PdfMaker;
2023-09-25 07:56:32 +02:00
use App\Services\Template\TemplateService;
use League\CommonMark\CommonMarkConverter;
class PdfMaker
{
use PdfMakerUtilities;
protected $data;
public $design;
public $html;
public $document;
private $xpath;
2020-07-20 14:10:33 +02:00
private $filters = [
'<![CDATA[' => '',
2020-09-04 13:17:30 +02:00
'<![CDATA[<![CDATA[' => '',
']]]]><![CDATA[>]]>' => '',
2020-07-20 14:10:33 +02:00
']]>' => '',
'<?xml version="1.0" encoding="utf-8" standalone="yes"??>' => '',
];
private $options;
/** @var CommonMarkConverter */
protected $commonmark;
2020-07-13 13:51:54 +02:00
public function __construct(array $data)
{
$this->data = $data;
if (array_key_exists('options', $data)) {
$this->options = $data['options'];
}
$this->commonmark = new CommonMarkConverter([
'allow_unsafe_links' => false,
// 'html_input' => 'allow',
]);
}
public function design(Design $design)
{
$this->design = $design;
$this->initializeDomDocument();
return $this;
}
public function build()
{
if (isset($this->data['template']) && isset($this->data['variables'])) {
2020-11-25 15:19:52 +01:00
$this->getEmptyElements($this->data['template'], $this->data['variables']);
}
if (isset($this->data['template'])) {
$this->updateElementProperties($this->data['template']);
}
2023-09-19 02:05:13 +02:00
if(isset($this->options)) {
2023-09-19 03:19:19 +02:00
$replacements = [];
$contents = $this->document->getElementsByTagName('ninja');
2023-09-25 07:56:32 +02:00
$ts = new TemplateService();
$data = $ts->processData($this->options)->getData();
$twig = $ts->twig;
2023-09-11 07:54:20 +02:00
foreach ($contents as $content) {
2023-09-19 02:05:13 +02:00
2023-09-19 03:19:19 +02:00
$template = $content->ownerDocument->saveHTML($content);
2023-09-11 07:54:20 +02:00
2023-09-21 12:44:16 +02:00
$template = $twig->createTemplate(html_entity_decode($template));
$template = $template->render($data);
2023-09-19 02:05:13 +02:00
2023-09-11 07:54:20 +02:00
$f = $this->document->createDocumentFragment();
$f->appendXML($template);
2023-09-19 03:19:19 +02:00
$replacements[] = $f;
}
2023-09-11 07:54:20 +02:00
2023-10-26 04:57:44 +02:00
foreach($contents as $key => $content) {
2023-09-19 03:19:19 +02:00
$content->parentNode->replaceChild($replacements[$key], $content);
2023-09-11 07:54:20 +02:00
}
}
if (isset($this->data['variables'])) {
$this->updateVariables($this->data['variables']);
}
2020-07-30 16:43:57 +02:00
return $this;
}
2021-09-17 20:06:41 +02:00
/**
* Final method to get compiled HTML.
*
2023-09-21 15:32:34 +02:00
* @param bool $final
* @return mixed
2021-09-17 20:06:41 +02:00
*/
2020-07-20 14:10:33 +02:00
public function getCompiledHTML($final = false)
{
2023-09-11 07:54:20 +02:00
$html = $this->document->saveHTML();
2023-09-21 15:32:34 +02:00
// nlog($html);
return str_replace('%24', '$', $html);
}
}