2020-07-09 16:05:17 +02:00
|
|
|
<?php
|
|
|
|
|
2020-07-22 14:30:55 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-22 14:30:55 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-07-22 14:30:55 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-07-22 14:30:55 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\PdfMaker;
|
2020-07-09 16:05:17 +02:00
|
|
|
|
2023-09-25 07:56:32 +02:00
|
|
|
use App\Services\Template\TemplateService;
|
2021-08-03 11:56:50 +02:00
|
|
|
use League\CommonMark\CommonMarkConverter;
|
|
|
|
|
2020-07-09 16:05:17 +02:00
|
|
|
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"??>' => '',
|
|
|
|
];
|
|
|
|
|
2020-08-25 10:51:49 +02:00
|
|
|
private $options;
|
|
|
|
|
2021-08-03 11:56:50 +02:00
|
|
|
/** @var CommonMarkConverter */
|
|
|
|
protected $commonmark;
|
|
|
|
|
2020-07-13 13:51:54 +02:00
|
|
|
public function __construct(array $data)
|
2020-07-09 16:05:17 +02:00
|
|
|
{
|
|
|
|
$this->data = $data;
|
2020-08-25 10:51:49 +02:00
|
|
|
|
|
|
|
if (array_key_exists('options', $data)) {
|
|
|
|
$this->options = $data['options'];
|
|
|
|
}
|
2021-08-03 11:56:50 +02:00
|
|
|
|
|
|
|
$this->commonmark = new CommonMarkConverter([
|
|
|
|
'allow_unsafe_links' => false,
|
2022-02-07 02:31:14 +01:00
|
|
|
// 'html_input' => 'allow',
|
2021-08-03 11:56:50 +02:00
|
|
|
]);
|
2020-07-09 16:05:17 +02:00
|
|
|
}
|
|
|
|
|
2020-09-04 10:18:41 +02:00
|
|
|
public function design(Design $design)
|
2020-07-09 16:05:17 +02:00
|
|
|
{
|
2020-09-04 10:18:41 +02:00
|
|
|
$this->design = $design;
|
2020-07-09 16:05:17 +02:00
|
|
|
|
|
|
|
$this->initializeDomDocument();
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function build()
|
|
|
|
{
|
2020-10-27 23:51:39 +01:00
|
|
|
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']);
|
2020-10-27 23:51:39 +01:00
|
|
|
}
|
|
|
|
|
2020-07-14 13:50:00 +02:00
|
|
|
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');
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2024-03-25 05:05:30 +01:00
|
|
|
$ts = new TemplateService();
|
2023-11-28 22:57:43 +01:00
|
|
|
|
2024-03-25 05:05:30 +01:00
|
|
|
if(isset($this->options['client'])) {
|
|
|
|
$client = $this->options['client'];
|
2023-11-30 07:59:17 +01:00
|
|
|
try {
|
2024-03-25 05:05:30 +01:00
|
|
|
$ts->setCompany($client->company);
|
|
|
|
$ts->addGlobal(['currency_code' => $client->company->currency()->code]);
|
2023-11-30 07:59:17 +01:00
|
|
|
} catch(\Exception $e) {
|
2024-03-25 05:05:30 +01:00
|
|
|
nlog($e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($this->options['vendor'])) {
|
|
|
|
$vendor = $this->options['vendor'];
|
|
|
|
try {
|
|
|
|
$ts->setCompany($vendor->company);
|
|
|
|
$ts->addGlobal(['currency_code' => $vendor->company->currency()->code]);
|
|
|
|
} catch(\Exception $e) {
|
|
|
|
nlog($e->getMessage());
|
2023-11-28 22:57:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-25 05:05:30 +01:00
|
|
|
$data = $ts->processData($this->options)->setGlobals()->getData();
|
2023-10-26 01:49:09 +02:00
|
|
|
$twig = $ts->twig;
|
2023-09-11 07:54:20 +02:00
|
|
|
|
|
|
|
foreach ($contents as $content) {
|
2024-01-14 05:05:00 +01: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));
|
2023-10-26 01:49:09 +02:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-07-14 13:50:00 +02:00
|
|
|
if (isset($this->data['variables'])) {
|
|
|
|
$this->updateVariables($this->data['variables']);
|
|
|
|
}
|
2020-07-30 16:43:57 +02:00
|
|
|
|
2020-07-09 16:05:17 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2021-09-17 20:06:41 +02:00
|
|
|
/**
|
|
|
|
* Final method to get compiled HTML.
|
2022-06-21 11:57:17 +02:00
|
|
|
*
|
2023-09-21 15:32:34 +02:00
|
|
|
* @param bool $final
|
2022-06-21 11:57:17 +02:00
|
|
|
* @return mixed
|
2021-09-17 20:06:41 +02:00
|
|
|
*/
|
2020-07-20 14:10:33 +02:00
|
|
|
public function getCompiledHTML($final = false)
|
2020-07-09 16:05:17 +02:00
|
|
|
{
|
2020-10-27 23:51:39 +01:00
|
|
|
|
2023-09-11 07:54:20 +02:00
|
|
|
$html = $this->document->saveHTML();
|
2020-09-09 14:47:26 +02:00
|
|
|
return str_replace('%24', '$', $html);
|
2020-07-09 16:05:17 +02:00
|
|
|
}
|
|
|
|
}
|