Put the dompdf fonts and temp files in a folder inside var/dompdf, which should always be writable by the server process

This commit is contained in:
Jan Böhmer 2023-07-02 13:57:15 +02:00
parent 2b67c1c631
commit ae8edffdc8
3 changed files with 63 additions and 2 deletions

View file

@ -221,6 +221,11 @@ services:
tags: tags:
- { name: 'app.label_placeholder_provider', priority: 10} - { name: 'app.label_placeholder_provider', priority: 10}
App\Services\LabelSystem\DompdfFactory:
arguments:
$fontDirectory: '%kernel.project_dir%/var/dompdf/fonts/'
$tmpDirectory: '%kernel.project_dir%/var/dompdf/tmp/'
#################################################################################################################### ####################################################################################################################
# Trees # Trees
#################################################################################################################### ####################################################################################################################

View file

@ -0,0 +1,54 @@
<?php
/*
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace App\Services\LabelSystem;
use Dompdf\Dompdf;
use Jbtronics\DompdfFontLoaderBundle\Services\DompdfFactoryInterface;
use Symfony\Component\DependencyInjection\Attribute\AsDecorator;
#[AsDecorator(decorates: DompdfFactoryInterface::class)]
class DompdfFactory implements DompdfFactoryInterface
{
public function __construct(private string $fontDirectory, private string $tmpDirectory)
{
//Create folder if it does not exist
$this->createDirectoryIfNotExisting($this->fontDirectory);
$this->createDirectoryIfNotExisting($this->tmpDirectory);
}
private function createDirectoryIfNotExisting(string $path): void
{
if (!is_dir($path)) {
if (!mkdir($concurrentDirectory = $path, 0777, true) && !is_dir($concurrentDirectory)) {
throw new \RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory));
}
}
}
public function create(): Dompdf
{
return new Dompdf([
'fontDir' => $this->fontDirectory,
'fontCache' => $this->fontDirectory,
'tempDir' => $this->tmpDirectory,
]);
}
}

View file

@ -47,6 +47,7 @@ use App\Entity\Parts\PartLot;
use App\Entity\Parts\Storelocation; use App\Entity\Parts\Storelocation;
use Dompdf\Dompdf; use Dompdf\Dompdf;
use InvalidArgumentException; use InvalidArgumentException;
use Jbtronics\DompdfFontLoaderBundle\Services\DompdfFactoryInterface;
/** /**
* @see \App\Tests\Services\LabelSystem\LabelGeneratorTest * @see \App\Tests\Services\LabelSystem\LabelGeneratorTest
@ -55,7 +56,8 @@ final class LabelGenerator
{ {
public const MM_TO_POINTS_FACTOR = 2.83465; public const MM_TO_POINTS_FACTOR = 2.83465;
public function __construct(private readonly LabelHTMLGenerator $labelHTMLGenerator) public function __construct(private readonly LabelHTMLGenerator $labelHTMLGenerator,
private readonly DompdfFactoryInterface $dompdfFactory)
{ {
} }
@ -78,7 +80,7 @@ final class LabelGenerator
} }
} }
$dompdf = new Dompdf(); $dompdf = $this->dompdfFactory->create();
$dompdf->setPaper($this->mmToPointsArray($options->getWidth(), $options->getHeight())); $dompdf->setPaper($this->mmToPointsArray($options->getWidth(), $options->getHeight()));
$dompdf->loadHtml($this->labelHTMLGenerator->getLabelHTML($options, $elements)); $dompdf->loadHtml($this->labelHTMLGenerator->getLabelHTML($options, $elements));
$dompdf->render(); $dompdf->render();