wallabag/src/Wallabag/UserBundle/Repository/UserRepository.php

69 lines
1.8 KiB
PHP
Raw Normal View History

2015-03-28 13:27:45 +00:00
<?php
namespace Wallabag\UserBundle\Repository;
2015-03-28 13:27:45 +00:00
use Doctrine\ORM\EntityRepository;
class UserRepository extends EntityRepository
{
/**
2015-05-30 11:52:26 +00:00
* Find a user by its username and rss roken.
2015-03-28 13:27:45 +00:00
*
* @param string $username
* @param string $rssToken
*
* @return User|null
*/
public function findOneByUsernameAndRsstoken($username, $rssToken)
{
return $this->createQueryBuilder('u')
->leftJoin('u.config', 'c')
->where('c.rssToken = :rss_token')->setParameter('rss_token', $rssToken)
->andWhere('u.username = :username')->setParameter('username', $username)
->getQuery()
->getOneOrNullResult();
}
/**
* Find a user by its username.
*
* @param string $username
*
* @return User
*/
public function findOneByUserName($username)
{
return $this->createQueryBuilder('u')
->andWhere('u.username = :username')->setParameter('username', $username)
->getQuery()
->getSingleResult();
}
/**
* Count how many users are enabled.
*
* @return int
*/
public function getSumEnabledUsers()
{
return $this->createQueryBuilder('u')
->select('count(u)')
2016-11-21 14:12:11 +00:00
->andWhere('u.enabled = true')
->getQuery()
->getSingleScalarResult();
}
/**
* Retrieves users filtered with a search term.
*
* @param string $term
*
* @return QueryBuilder
*/
public function getQueryBuilderForSearch($term)
{
return $this->createQueryBuilder('u')
2017-07-01 07:52:38 +00:00
->andWhere('lower(u.username) LIKE lower(:term) OR lower(u.email) LIKE lower(:term) OR lower(u.name) LIKE lower(:term)')->setParameter('term', '%' . $term . '%');
}
2015-03-28 13:27:45 +00:00
}