2019-03-13 18:41:32 +01:00
|
|
|
<?php
|
2020-01-05 15:46:58 +01:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-03-13 18:41:32 +01:00
|
|
|
/**
|
2019-11-09 00:47:20 +01:00
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
2019-03-13 18:41:32 +01:00
|
|
|
*
|
2019-11-01 13:40:30 +01:00
|
|
|
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
|
2019-03-13 18:41:32 +01:00
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
2019-08-12 18:04:53 +02:00
|
|
|
use App\Entity\Base\DBElement;
|
2019-08-26 15:09:05 +02:00
|
|
|
use App\Entity\Parts\MeasurementUnit;
|
2019-09-01 13:56:14 +02:00
|
|
|
use App\Entity\PriceInformations\Currency;
|
2019-08-26 15:09:05 +02:00
|
|
|
use App\Services\AmountFormatter;
|
2019-10-06 15:44:19 +02:00
|
|
|
use App\Services\Attachments\AttachmentURLGenerator;
|
2019-03-13 18:41:32 +01:00
|
|
|
use App\Services\EntityURLGenerator;
|
2019-11-10 18:19:06 +01:00
|
|
|
use App\Services\FAIconGenerator;
|
2019-10-11 23:53:12 +02:00
|
|
|
use App\Services\MarkdownParser;
|
2019-08-02 12:17:56 +02:00
|
|
|
use App\Services\MoneyFormatter;
|
2019-08-16 16:43:31 +02:00
|
|
|
use App\Services\SIFormatter;
|
2020-01-02 22:55:28 +01:00
|
|
|
use App\Services\Trees\TreeViewGenerator;
|
2019-04-05 17:49:02 +02:00
|
|
|
use Symfony\Component\Serializer\SerializerInterface;
|
2019-12-29 20:04:52 +01:00
|
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
2019-03-13 18:41:32 +01:00
|
|
|
use Twig\Extension\AbstractExtension;
|
|
|
|
use Twig\TwigFilter;
|
2019-04-05 17:49:02 +02:00
|
|
|
use Twig\TwigFunction;
|
2019-04-28 14:18:11 +02:00
|
|
|
use Twig\TwigTest;
|
2019-03-13 20:14:19 +01:00
|
|
|
|
2019-03-13 18:41:32 +01:00
|
|
|
class AppExtension extends AbstractExtension
|
|
|
|
{
|
|
|
|
protected $entityURLGenerator;
|
2019-10-11 23:53:12 +02:00
|
|
|
protected $markdownParser;
|
2019-04-05 17:49:02 +02:00
|
|
|
protected $serializer;
|
|
|
|
protected $treeBuilder;
|
2019-08-02 12:17:56 +02:00
|
|
|
protected $moneyFormatter;
|
2019-08-16 16:43:31 +02:00
|
|
|
protected $siformatter;
|
2019-08-26 15:09:05 +02:00
|
|
|
protected $amountFormatter;
|
2019-10-06 15:44:19 +02:00
|
|
|
protected $attachmentURLGenerator;
|
2019-11-10 18:19:06 +01:00
|
|
|
protected $FAIconGenerator;
|
2019-12-29 20:04:52 +01:00
|
|
|
protected $translator;
|
2019-03-13 18:41:32 +01:00
|
|
|
|
2019-10-11 23:53:12 +02:00
|
|
|
public function __construct(EntityURLGenerator $entityURLGenerator, MarkdownParser $markdownParser,
|
2020-01-02 22:55:28 +01:00
|
|
|
SerializerInterface $serializer, TreeViewGenerator $treeBuilder,
|
2019-12-29 20:04:52 +01:00
|
|
|
MoneyFormatter $moneyFormatter,
|
|
|
|
SIFormatter $SIFormatter, AmountFormatter $amountFormatter,
|
|
|
|
AttachmentURLGenerator $attachmentURLGenerator,
|
|
|
|
FAIconGenerator $FAIconGenerator, TranslatorInterface $translator)
|
2019-03-13 18:41:32 +01:00
|
|
|
{
|
|
|
|
$this->entityURLGenerator = $entityURLGenerator;
|
2019-10-11 23:53:12 +02:00
|
|
|
$this->markdownParser = $markdownParser;
|
2019-04-05 17:49:02 +02:00
|
|
|
$this->serializer = $serializer;
|
|
|
|
$this->treeBuilder = $treeBuilder;
|
2019-08-02 12:17:56 +02:00
|
|
|
$this->moneyFormatter = $moneyFormatter;
|
2019-08-16 16:43:31 +02:00
|
|
|
$this->siformatter = $SIFormatter;
|
2019-08-26 15:09:05 +02:00
|
|
|
$this->amountFormatter = $amountFormatter;
|
2019-10-06 15:44:19 +02:00
|
|
|
$this->attachmentURLGenerator = $attachmentURLGenerator;
|
2019-11-10 18:19:06 +01:00
|
|
|
$this->FAIconGenerator = $FAIconGenerator;
|
2019-12-29 20:04:52 +01:00
|
|
|
$this->translator = $translator;
|
2019-03-13 18:41:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getFilters()
|
|
|
|
{
|
2019-03-20 23:16:07 +01:00
|
|
|
return [
|
2019-08-02 12:17:56 +02:00
|
|
|
new TwigFilter('entityURL', [$this, 'generateEntityURL']),
|
2019-10-13 00:32:09 +02: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']),
|
2019-09-12 17:50:33 +02:00
|
|
|
new TwigFilter('amountFormat', [$this, 'amountFormat']),
|
2019-11-09 00:47:20 +01:00
|
|
|
new TwigFilter('loginPath', [$this, 'loginPath']),
|
2019-08-02 12:17:56 +02:00
|
|
|
];
|
2019-03-13 18:41:32 +01:00
|
|
|
}
|
|
|
|
|
2019-04-28 14:18:11 +02:00
|
|
|
public function getTests()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
new TwigTest('instanceof', function ($var, $instance) {
|
|
|
|
return $var instanceof $instance;
|
2019-11-09 00:47:20 +01:00
|
|
|
}),
|
2019-04-28 14:18:11 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-04-05 17:49:02 +02:00
|
|
|
public function getFunctions()
|
|
|
|
{
|
|
|
|
return [
|
2019-10-06 15:44:19 +02:00
|
|
|
new TwigFunction('generateTreeData', [$this, 'treeData']),
|
2019-11-09 00:47:20 +01:00
|
|
|
new TwigFunction('attachment_thumbnail', [$this->attachmentURLGenerator, 'getThumbnailURL']),
|
2019-11-10 18:19:06 +01:00
|
|
|
new TwigFunction('ext_to_fa_icon', [$this->FAIconGenerator, 'fileExtensionToFAType']),
|
2019-04-05 17:49:02 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-11-09 00:47:20 +01:00
|
|
|
public function treeData(DBElement $element, string $type = 'newEdit'): string
|
2019-04-05 17:49:02 +02:00
|
|
|
{
|
2020-01-02 22:55:28 +01:00
|
|
|
$tree = $this->treeBuilder->getTreeView(\get_class($element), null, $type, $element);
|
2019-11-09 00:47:20 +01:00
|
|
|
|
2020-01-02 23:21:37 +01:00
|
|
|
return json_encode($tree);
|
2019-04-05 17:49:02 +02:00
|
|
|
}
|
|
|
|
|
2019-09-12 17:50:33 +02:00
|
|
|
/**
|
2019-11-09 00:47:20 +01:00
|
|
|
* This function/filter generates an path.
|
|
|
|
*
|
2019-09-12 17:50:33 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2019-11-09 00:47:20 +01:00
|
|
|
public function loginPath(string $path): string
|
2019-09-12 17:50:33 +02:00
|
|
|
{
|
2019-11-09 00:47:20 +01:00
|
|
|
$parts = explode('/', $path);
|
2019-09-12 17:50:33 +02:00
|
|
|
//Remove the part with
|
|
|
|
unset($parts[1]);
|
2019-11-09 00:47:20 +01:00
|
|
|
|
|
|
|
return implode('/', $parts);
|
2019-09-12 17:50:33 +02:00
|
|
|
}
|
|
|
|
|
2019-03-20 23:16:07 +01:00
|
|
|
public function generateEntityURL(DBElement $entity, string $method = 'info'): string
|
2019-03-13 18:41:32 +01:00
|
|
|
{
|
2019-03-24 15:25:40 +01:00
|
|
|
return $this->entityURLGenerator->getURL($entity, $method);
|
2019-03-13 18:41:32 +01:00
|
|
|
}
|
|
|
|
|
2020-01-05 15:46:58 +01:00
|
|
|
public function formatCurrency($amount, ?Currency $currency = null, int $decimals = 5)
|
2019-08-02 12:17:56 +02:00
|
|
|
{
|
2019-09-01 13:56:14 +02:00
|
|
|
return $this->moneyFormatter->format($amount, $currency, $decimals);
|
2019-08-02 12:17:56 +02:00
|
|
|
}
|
2019-08-16 16:43:31 +02:00
|
|
|
|
2019-09-01 14:08:53 +02:00
|
|
|
public function siFormat($value, $unit, $decimals = 2, bool $show_all_digits = false)
|
2019-08-16 16:43:31 +02:00
|
|
|
{
|
2019-09-01 14:08:53 +02:00
|
|
|
return $this->siformatter->format($value, $unit, $decimals, $show_all_digits);
|
2019-08-16 16:43:31 +02:00
|
|
|
}
|
2019-08-26 15:09:05 +02:00
|
|
|
|
|
|
|
public function amountFormat($value, ?MeasurementUnit $unit, array $options = [])
|
|
|
|
{
|
|
|
|
return $this->amountFormatter->format($value, $unit, $options);
|
|
|
|
}
|
2019-03-20 23:16:07 +01:00
|
|
|
}
|