2020-07-09 16:05:17 +02:00
|
|
|
<?php
|
|
|
|
|
2020-07-22 14:30:55 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\PdfMaker;
|
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[' => '',
|
|
|
|
']]>' => '',
|
|
|
|
'<?xml version="1.0" encoding="utf-8" standalone="yes"??>' => '',
|
|
|
|
];
|
|
|
|
|
2020-08-25 10:51:49 +02:00
|
|
|
private $options;
|
|
|
|
|
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'];
|
|
|
|
}
|
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-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-08-26 09:02:38 +02:00
|
|
|
$this->processOptions();
|
|
|
|
|
2020-07-09 16:05:17 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2020-07-20 14:10:33 +02:00
|
|
|
public function getCompiledHTML($final = false)
|
2020-07-09 16:05:17 +02:00
|
|
|
{
|
2020-07-20 14:10:33 +02:00
|
|
|
if ($final) {
|
|
|
|
$html = $this->document->saveXML();
|
2020-09-04 10:18:41 +02:00
|
|
|
|
2020-07-20 14:10:33 +02:00
|
|
|
$filtered = strtr($html, $this->filters);
|
2020-09-04 10:18:41 +02:00
|
|
|
|
2020-07-20 14:10:33 +02:00
|
|
|
return $filtered;
|
|
|
|
}
|
2020-09-04 10:18:41 +02:00
|
|
|
|
2020-07-20 13:02:30 +02:00
|
|
|
return $this->document->saveXML();
|
2020-07-09 16:05:17 +02:00
|
|
|
}
|
|
|
|
}
|