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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. 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
|
|
|
|
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']);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
*
|
2021-10-14 07:25:09 +02:00
|
|
|
* @param bool $final @deprecated // is it? i still see it being called elsewhere
|
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
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
$html = $this->document->saveHTML();
|
2020-10-27 23:51:39 +01:00
|
|
|
|
2020-09-09 14:47:26 +02:00
|
|
|
return str_replace('%24', '$', $html);
|
2020-07-09 16:05:17 +02:00
|
|
|
}
|
|
|
|
}
|