Part-DB.Part-DB-server/src/Services/LabelSystem/LabelHTMLGenerator.php

119 lines
4.5 KiB
PHP
Raw Normal View History

2020-04-14 11:07:07 +02:00
<?php
2022-11-29 21:21:26 +01:00
/*
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 - 2022 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/>.
*/
2020-05-10 21:39:31 +02:00
declare(strict_types=1);
2020-04-14 11:07:07 +02:00
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
2022-11-29 22:28:53 +01:00
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
2020-04-14 11:07:07 +02:00
*
* 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;
2023-06-12 23:39:30 +02:00
use App\Entity\LabelSystem\LabelProcessMode;
2023-06-11 14:55:06 +02:00
use Symfony\Bundle\SecurityBundle\Security;
2020-04-14 11:07:07 +02:00
use App\Entity\Contracts\NamedElementInterface;
use App\Entity\LabelSystem\LabelOptions;
use App\Exceptions\TwigModeException;
2020-04-14 11:07:07 +02:00
use App\Services\ElementTypeNameGenerator;
2022-08-14 19:32:53 +02:00
use InvalidArgumentException;
2020-04-14 11:07:07 +02:00
use Twig\Environment;
use Twig\Error\Error;
2020-04-14 11:07:07 +02:00
final class LabelHTMLGenerator
2020-04-14 11:07:07 +02:00
{
2023-06-11 14:55:06 +02:00
public function __construct(private readonly ElementTypeNameGenerator $elementTypeNameGenerator, private readonly LabelTextReplacer $replacer, private readonly Environment $twig, private readonly BarcodeGenerator $barcodeGenerator, private readonly SandboxedTwigProvider $sandboxedTwigProvider, private readonly Security $security, private readonly string $partdb_title)
2020-04-14 11:07:07 +02:00
{
}
public function getLabelHTML(LabelOptions $options, array $elements): string
2020-04-14 11:07:07 +02:00
{
if ($elements === []) {
2022-08-14 19:32:53 +02:00
throw new InvalidArgumentException('$elements must not be empty');
}
$twig_elements = [];
2023-06-12 23:39:30 +02:00
if (LabelProcessMode::TWIG === $options->getProcessMode()) {
$sandboxed_twig = $this->sandboxedTwigProvider->getTwig($options);
$current_user = $this->security->getUser();
}
$page = 1;
foreach ($elements as $element) {
2023-06-12 23:39:30 +02:00
if (isset($sandboxed_twig, $current_user) && LabelProcessMode::TWIG === $options->getProcessMode()) {
try {
$lines = $sandboxed_twig->render(
'lines',
[
'element' => $element,
'page' => $page,
'user' => $current_user,
'install_title' => $this->partdb_title,
]
);
} catch (Error $exception) {
throw new TwigModeException($exception);
}
} else {
$lines = $this->replacer->replace($options->getLines(), $element);
}
$twig_elements[] = [
'element' => $element,
'lines' => $lines,
'barcode' => $this->barcodeGenerator->generateSVG($options, $element),
'barcode_content' => $this->barcodeGenerator->getContent($options, $element),
];
2020-05-10 21:39:31 +02:00
++$page;
}
return $this->twig->render('label_system/labels/base_label.html.twig', [
'meta_title' => $this->getPDFTitle($options, $elements[0]),
'elements' => $twig_elements,
'options' => $options,
2020-04-14 11:07:07 +02:00
]);
}
2020-08-21 22:43:37 +02:00
private function getPDFTitle(LabelOptions $options, object $element): string
2020-04-14 11:07:07 +02:00
{
if ($element instanceof NamedElementInterface) {
return $this->elementTypeNameGenerator->getTypeNameCombination($element, false);
}
return 'Part-DB label';
}
2020-05-10 21:39:31 +02:00
}