2019-03-13 18:41:32 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* part-db version 0.1
|
|
|
|
* Copyright (C) 2005 Christoph Lechner
|
2019-03-20 23:16:07 +01:00
|
|
|
* http://www.cl-projects.de/.
|
2019-03-13 18:41:32 +01:00
|
|
|
*
|
|
|
|
* part-db version 0.2+
|
|
|
|
* Copyright (C) 2009 K. Jacobs and others (see authors.php)
|
|
|
|
* http://code.google.com/p/part-db/
|
|
|
|
*
|
|
|
|
* Part-DB Version 0.4+
|
|
|
|
* Copyright (C) 2016 - 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\DBElement;
|
|
|
|
use App\Services\EntityURLGenerator;
|
2019-03-13 20:14:19 +01:00
|
|
|
use Symfony\Component\Cache\Adapter\AdapterInterface;
|
2019-03-13 18:41:32 +01:00
|
|
|
use Twig\Extension\AbstractExtension;
|
|
|
|
use Twig\TwigFilter;
|
2019-03-13 20:14:19 +01:00
|
|
|
use s9e\TextFormatter\Bundles\Forum as TextFormatter;
|
|
|
|
|
2019-03-13 18:41:32 +01:00
|
|
|
class AppExtension extends AbstractExtension
|
|
|
|
{
|
|
|
|
protected $entityURLGenerator;
|
2019-03-13 20:14:19 +01:00
|
|
|
protected $cache;
|
2019-03-13 18:41:32 +01:00
|
|
|
|
2019-03-13 20:14:19 +01:00
|
|
|
public function __construct(EntityURLGenerator $entityURLGenerator, AdapterInterface $cache)
|
2019-03-13 18:41:32 +01:00
|
|
|
{
|
|
|
|
$this->entityURLGenerator = $entityURLGenerator;
|
2019-03-13 20:14:19 +01:00
|
|
|
$this->cache = $cache;
|
2019-03-13 18:41:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getFilters()
|
|
|
|
{
|
2019-03-20 23:16:07 +01:00
|
|
|
return [
|
2019-03-13 20:14:19 +01:00
|
|
|
new TwigFilter('entityURL', [$this, 'generateEntityURL']),
|
2019-03-20 23:16:07 +01:00
|
|
|
new TwigFilter('bbCode', [$this, 'parseBBCode'], ['pre_escape' => 'html', 'is_safe' => ['html']]),
|
2019-03-13 18:41:32 +01: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
|
|
|
}
|
|
|
|
|
2019-03-20 23:16:07 +01:00
|
|
|
public function parseBBCode(string $bbcode): string
|
2019-03-13 20:14:19 +01:00
|
|
|
{
|
2019-03-20 23:16:07 +01:00
|
|
|
if ('' === $bbcode) {
|
|
|
|
return '';
|
|
|
|
}
|
2019-03-13 20:14:19 +01:00
|
|
|
|
2019-03-20 23:16:07 +01:00
|
|
|
$item = $this->cache->getItem('bbcode_'.md5($bbcode));
|
|
|
|
if (!$item->isHit()) {
|
2019-03-13 20:14:19 +01:00
|
|
|
$xml = TextFormatter::parse($bbcode);
|
|
|
|
$item->set(TextFormatter::render($xml));
|
|
|
|
$this->cache->save($item);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $item->get();
|
|
|
|
}
|
2019-03-20 23:16:07 +01:00
|
|
|
}
|