Part-DB.Part-DB-server/src/Twig/AppExtension.php

174 lines
6.1 KiB
PHP
Raw Normal View History

<?php
2020-02-22 18:14:36 +01:00
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 - 2020 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-01-05 15:46:58 +01:00
declare(strict_types=1);
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
2019-11-01 13:40:30 +01:00
* Copyright (C) 2019 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 General Public License
* as published by the Free Software Foundation; either version 2
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
namespace App\Twig;
use App\Entity\Base\AbstractDBElement;
use App\Entity\Parts\MeasurementUnit;
use App\Entity\PriceInformations\Currency;
use App\Services\AmountFormatter;
use App\Services\Attachments\AttachmentURLGenerator;
use App\Services\EntityURLGenerator;
use App\Services\FAIconGenerator;
2019-10-11 23:53:12 +02:00
use App\Services\MarkdownParser;
use App\Services\MoneyFormatter;
2019-08-16 16:43:31 +02:00
use App\Services\SIFormatter;
use App\Services\Trees\TreeViewGenerator;
use Brick\Math\BigDecimal;
use Symfony\Component\Serializer\SerializerInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
use Twig\Extension\AbstractExtension;
use Twig\TwigFilter;
use Twig\TwigFunction;
2019-04-28 14:18:11 +02:00
use Twig\TwigTest;
2022-08-14 19:32:53 +02:00
use function get_class;
class AppExtension extends AbstractExtension
{
protected $entityURLGenerator;
2019-10-11 23:53:12 +02:00
protected $markdownParser;
protected $serializer;
protected $treeBuilder;
protected $moneyFormatter;
2019-08-16 16:43:31 +02:00
protected $siformatter;
protected $amountFormatter;
protected $attachmentURLGenerator;
protected $FAIconGenerator;
protected $translator;
2019-10-11 23:53:12 +02:00
public function __construct(EntityURLGenerator $entityURLGenerator, MarkdownParser $markdownParser,
SerializerInterface $serializer, TreeViewGenerator $treeBuilder,
MoneyFormatter $moneyFormatter,
SIFormatter $SIFormatter, AmountFormatter $amountFormatter,
AttachmentURLGenerator $attachmentURLGenerator,
FAIconGenerator $FAIconGenerator, TranslatorInterface $translator)
{
$this->entityURLGenerator = $entityURLGenerator;
2019-10-11 23:53:12 +02:00
$this->markdownParser = $markdownParser;
$this->serializer = $serializer;
$this->treeBuilder = $treeBuilder;
$this->moneyFormatter = $moneyFormatter;
2019-08-16 16:43:31 +02:00
$this->siformatter = $SIFormatter;
$this->amountFormatter = $amountFormatter;
$this->attachmentURLGenerator = $attachmentURLGenerator;
$this->FAIconGenerator = $FAIconGenerator;
$this->translator = $translator;
}
2022-08-14 19:09:07 +02:00
public function getFilters(): array
{
return [
new TwigFilter('entityURL', [$this, 'generateEntityURL']),
2020-01-05 22:49:00 +01:00
new TwigFilter('markdown', [$this->markdownParser, 'markForRendering'], [
'pre_escape' => 'html',
'is_safe' => ['html'],
]),
2019-08-16 16:43:31 +02:00
new TwigFilter('moneyFormat', [$this, 'formatCurrency']),
new TwigFilter('siFormat', [$this, 'siFormat']),
new TwigFilter('amountFormat', [$this, 'amountFormat']),
new TwigFilter('loginPath', [$this, 'loginPath']),
];
}
2022-08-14 19:09:07 +02:00
public function getTests(): array
2019-04-28 14:18:11 +02:00
{
return [
2020-08-21 22:43:37 +02:00
new TwigTest('instanceof', static function ($var, $instance) {
2019-04-28 14:18:11 +02:00
return $var instanceof $instance;
}),
2019-04-28 14:18:11 +02:00
];
}
2022-08-14 19:09:07 +02:00
public function getFunctions(): array
{
return [
new TwigFunction('generateTreeData', [$this, 'treeData']),
new TwigFunction('attachment_thumbnail', [$this->attachmentURLGenerator, 'getThumbnailURL']),
new TwigFunction('ext_to_fa_icon', [$this->FAIconGenerator, 'fileExtensionToFAType']),
];
}
public function treeData(AbstractDBElement $element, string $type = 'newEdit'): string
{
2022-08-14 19:32:53 +02:00
$tree = $this->treeBuilder->getTreeView(get_class($element), null, $type, $element);
return json_encode($tree);
}
/**
* This function/filter generates an path.
*/
public function loginPath(string $path): string
{
$parts = explode('/', $path);
//Remove the part with
unset($parts[1]);
return implode('/', $parts);
}
public function generateEntityURL(AbstractDBElement $entity, string $method = 'info'): string
{
2019-03-24 15:25:40 +01:00
return $this->entityURLGenerator->getURL($entity, $method);
}
2020-08-21 22:43:37 +02:00
public function formatCurrency($amount, ?Currency $currency = null, int $decimals = 5): string
{
if ($amount instanceof BigDecimal) {
$amount = (string) $amount;
}
return $this->moneyFormatter->format($amount, $currency, $decimals);
}
2019-08-16 16:43:31 +02:00
2020-08-21 22:43:37 +02:00
public function siFormat($value, $unit, $decimals = 2, bool $show_all_digits = false): string
2019-08-16 16:43:31 +02:00
{
2020-08-21 22:43:37 +02:00
return $this->siformatter->format($value, $unit, $decimals);
2019-08-16 16:43:31 +02:00
}
2020-08-21 22:43:37 +02:00
public function amountFormat($value, ?MeasurementUnit $unit, array $options = []): string
{
return $this->amountFormatter->format($value, $unit, $options);
}
}