wallabag/src/Wallabag/CoreBundle/Twig/WallabagExtension.php

115 lines
3.3 KiB
PHP
Raw Normal View History

2015-09-29 20:59:44 +00:00
<?php
namespace Wallabag\CoreBundle\Twig;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\CoreBundle\Repository\TagRepository;
class WallabagExtension extends \Twig_Extension implements \Twig_Extension_GlobalsInterface
2015-09-29 20:59:44 +00:00
{
private $tokenStorage;
private $entryRepository;
private $tagRepository;
private $lifeTime;
public function __construct(EntryRepository $entryRepository = null, TagRepository $tagRepository = null, TokenStorageInterface $tokenStorage = null, $lifeTime = 0)
{
$this->entryRepository = $entryRepository;
$this->tagRepository = $tagRepository;
$this->tokenStorage = $tokenStorage;
$this->lifeTime = $lifeTime;
}
2015-09-29 20:59:44 +00:00
public function getFilters()
{
return [
new \Twig_SimpleFilter('removeWww', [$this, 'removeWww']),
];
2015-09-29 20:59:44 +00:00
}
public function getFunctions()
{
return array(
new \Twig_SimpleFunction('count_entries', [$this, 'countEntries']),
new \Twig_SimpleFunction('count_tags', [$this, 'countTags']),
);
}
2015-09-29 20:59:44 +00:00
public function removeWww($url)
{
2015-10-01 07:26:52 +00:00
return preg_replace('/^www\./i', '', $url);
2015-09-29 20:59:44 +00:00
}
/**
2016-09-03 17:26:23 +00:00
* Return number of entries depending of the type (unread, archive, starred or all).
*
2016-09-03 17:26:23 +00:00
* @param string $type Type of entries to count
*
* @return int
*/
public function countEntries($type)
{
$user = $this->tokenStorage->getToken() ? $this->tokenStorage->getToken()->getUser() : null;
if (null === $user || !is_object($user)) {
return 0;
}
switch ($type) {
case 'starred':
$qb = $this->entryRepository->getBuilderForStarredByUser($user->getId());
break;
2016-09-01 18:20:12 +00:00
case 'archive':
$qb = $this->entryRepository->getBuilderForArchiveByUser($user->getId());
break;
2016-09-01 18:20:12 +00:00
case 'unread':
$qb = $this->entryRepository->getBuilderForUnreadByUser($user->getId());
break;
2016-09-01 18:20:12 +00:00
case 'all':
$qb = $this->entryRepository->getBuilderForAllByUser($user->getId());
break;
default:
throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type));
}
// THANKS to PostgreSQL we CAN'T make a DEAD SIMPLE count(e.id)
// ERROR: column "e0_.id" must appear in the GROUP BY clause or be used in an aggregate function
$query = $qb
->select('e.id')
->groupBy('e.id')
->getQuery();
$query->useQueryCache(true);
$query->useResultCache(true);
$query->setResultCacheLifetime($this->lifeTime);
return count($query->getArrayResult());
}
/**
* Return number of tags.
*
* @return int
*/
public function countTags()
{
$user = $this->tokenStorage->getToken() ? $this->tokenStorage->getToken()->getUser() : null;
if (null === $user || !is_object($user)) {
return 0;
}
2016-09-25 10:23:44 +00:00
return $this->tagRepository->countAllTags($user->getId());
}
2015-09-29 20:59:44 +00:00
public function getName()
{
return 'wallabag_extension';
}
}