Skip to content
Code-Schnipsel Gruppen Projekte
OutputTemplate.php 7,66 KiB
Newer Older
<?php

namespace QUI\ERP\Output;

Henning Leutz's avatar
Henning Leutz committed
use Exception;
Henning Leutz's avatar
Henning Leutz committed
use function get_class;
use function is_string;
use function putenv;

/**
 * Class OutputTemplate
 */
class OutputTemplate
{
    /**
     * @var string|OutputTemplateProviderInterface
    protected string|OutputTemplateProviderInterface $TemplateProvider;
     * @var string|OutputProviderInterface
    protected string|OutputProviderInterface $OutputProvider;
    protected string|null $template;

    /**
     * @var QUI\Interfaces\Template\EngineInterface
     */
Henning Leutz's avatar
Henning Leutz committed
    protected QUI\Interfaces\Template\EngineInterface $Engine;
Henning Leutz's avatar
Henning Leutz committed
    protected string $entityType;
    /**
     * @var string|int
     */
    protected string|int $entityId;
    /**
     * The entity the output is created for
     *
     * @var mixed
     */

    /**
     * @var bool
     */
Henning Leutz's avatar
Henning Leutz committed
    protected bool $preview = false;
    /**
     * Template constructor.
     *
     * @param string|OutputTemplateProviderInterface $TemplateProvider - Template provider class
     * @param string|OutputProviderInterface $OutputProvider - Output provider class
     * @param int|string $entityId
     * @param string $entityType
     * @param string|null $template (optional) - Template identifier (from template provider)
    public function __construct(
        OutputTemplateProviderInterface|string $TemplateProvider,
        OutputProviderInterface|string $OutputProvider,
        int|string $entityId,
        string $entityType,
        $this->Engine = QUI::getTemplateManager()->getEngine();
        $this->TemplateProvider = $TemplateProvider;
        $this->OutputProvider = $OutputProvider;

        $templates = $this->TemplateProvider::getTemplates($entityType);

        if (empty($template)) {
            $template = $templates[0];
        } else {
            // Check if $template is provided by template provider
            $templateIsProvided = false;

            foreach ($templates as $providerTemplateId) {
                if ($providerTemplateId === $template) {
                    $templateIsProvided = true;
                    break;
                }
            }

            if (!$templateIsProvided) {
                $template = $templates[0];
        $this->template = $template;
        $this->entityType = $entityType;
        $this->entityId = $entityId;
        $this->Entity = $this->OutputProvider::getEntity($entityId);
    public function getEntity(): mixed
    /**
     * Render the html
     *
     * @param bool $preview (optional) -
     * @return string - HTML content
    public function getHTML(bool $preview = false): string
        $Locale = $this->OutputProvider::getLocale($this->entityId);
        QUI::getLocale()->setTemporaryCurrent($Locale->getCurrent());

        $templateData = $this->OutputProvider::getTemplateData($this->entityId);
        $templateData['erpOutputEntity'] = $this->Entity;

        $this->Engine->assign($templateData);
        $this->preview = $preview;
    body {
        display: flex;
        flex-direction: column;
        margin: 0;
        height: 100%;
    }
    
    .quiqqer-erp-output-html-footer {
        position: relative;
        margin-top: auto;
    }
    
    .quiqqer-erp-output-footer {
        position: static !important;
    }
</style>';

Henning Leutz's avatar
Henning Leutz committed
        $html .= '<div class="quiqqer-erp-output-html-header">' . $this->getHTMLHeader() . '</div>';
        $html .= '<div class="quiqqer-erp-output-html-body">' . $this->getHTMLBody() . '</div>';
        $html .= '<div class="quiqqer-erp-output-html-footer">' . $this->getHTMLFooter() . '</div>';
    /**
     * Get PDF output
     *
     * @return QUI\HtmlToPdf\Document
     * @throws QUI\Exception
     * @throws QUI\ExceptionStack
     */
    public function getPDFDocument(): QUI\HtmlToPdf\Document
    {
        $Locale = $this->OutputProvider::getLocale($this->entityId);
        QUI::getLocale()->setTemporaryCurrent($Locale->getCurrent());

        $Document = new QUI\HtmlToPdf\Document([
            'marginTop' => 30, // dies ist variabel durch quiqqerInvoicePdfCreate
            'filename' => $this->OutputProvider::getDownloadFileName($this->entityId) . '.pdf',
            'marginBottom' => 80,  // dies ist variabel durch quiqqerInvoicePdfCreate,
            'pageNumbersPrefix' => $Locale->get('quiqqer/htmltopdf', 'footer.page.prefix')
        ]);

        $Document->setAttribute('Entity', $this->Entity);

        QUI::getEvents()->fireEvent(
            'quiqqerErpOutputPdfCreate',
            [$this, $Document]
        );

        try {
Henning Leutz's avatar
Henning Leutz committed
            putenv('QUIQQER_CACHE_DISABLE_WEBP=1');
            $templateData = $this->OutputProvider::getTemplateData($this->entityId);
            $this->Engine->assign($templateData);

            $Document->setHeaderHTML($this->getHTMLHeader());
            $Document->setContentHTML($this->getHTMLBody());
            $Document->setFooterHTML($this->getHTMLFooter());
Henning Leutz's avatar
Henning Leutz committed
            putenv('QUIQQER_CACHE_DISABLE_WEBP');
        } catch (Exception $Exception) {
            QUI\System\Log::writeException($Exception);
        }

    /**
     * @return QUI\Interfaces\Template\EngineInterface
     */
    public function getEngine(): QUI\Interfaces\Template\EngineInterface
    {
        return $this->Engine;
    }

    /**
     * @return OutputTemplateProviderInterface|string
     */
    public function getTemplateProvider(): OutputTemplateProviderInterface|string
Henning Leutz's avatar
Henning Leutz committed
        if (is_string($this->TemplateProvider)) {
            return $this->TemplateProvider;
        }

Henning Leutz's avatar
Henning Leutz committed
        return get_class($this->TemplateProvider);
    //region Template Output Helper

    /**
     * Return the html header
     *
     * @return string
     */
    public function getHTMLHeader(): string
        return $this->TemplateProvider::getHeaderHtml($this->template, $this->entityType, $this->Engine, $this->Entity);
    }

    /**
     * Return the html body
     *
     * @return string
Henning Leutz's avatar
Henning Leutz committed
     * @throws QUI\Exception
    public function getHTMLBody(): string
        $Output = new QUI\Output();
        $Output->setSetting('use-system-image-paths', true);

Patrick Müller's avatar
Patrick Müller committed
        return $Output->parse(
            $this->TemplateProvider::getBodyHtml(
                $this->template,
                $this->entityType,
                $this->Engine,
                $this->Entity
            )
        );
    }

    /**
     * Return the html body
     *
     * @return string
     */
    public function getHTMLFooter(): string
        $footerHtml = '<div class="quiqqer-erp-output-footer">';

        $footerHtml .= $this->TemplateProvider::getFooterHtml(
            $this->template,
            $this->entityType,
            $this->Engine,
            $this->Entity
        );

        $footerHtml .= '</div>';

        $css = '';

        if ($this->preview) {
            $css = '<style>';
            $css .= '
            .quiqqer-erp-output-footer {
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
            }
            
            .quiqqer-erp-output-footer footer {
                position: static !important;            
            }
        ';
            $css .= '</style>';
        }

Henning Leutz's avatar
Henning Leutz committed
        return $css . $footerHtml;