1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Badger\Bundle\GameBundle\Doctrine\Repository; |
4
|
|
|
|
5
|
|
|
use Badger\Component\Game\Model\BadgeInterface; |
6
|
|
|
use Badger\Component\Game\Repository\BadgeCompletionRepositoryInterface; |
7
|
|
|
use Badger\Component\Game\Repository\TagSearchableRepositoryInterface; |
8
|
|
|
use Badger\Component\User\Model\UserInterface; |
9
|
|
|
use Doctrine\DBAL\Connection; |
10
|
|
|
use Doctrine\ORM\EntityRepository; |
11
|
|
|
|
12
|
|
|
/** |
13
|
|
|
* @author Adrien Pétremann <[email protected]> |
14
|
|
|
* @license http://opensource.org/licenses/MIT The MIT License (MIT) |
15
|
|
|
*/ |
16
|
|
|
class BadgeCompletionRepository extends EntityRepository implements |
17
|
|
|
BadgeCompletionRepositoryInterface, |
18
|
|
|
TagSearchableRepositoryInterface |
19
|
|
|
{ |
20
|
|
|
/** |
21
|
|
|
* {@inheritdoc} |
22
|
|
|
*/ |
23
|
|
|
public function getCompletionBadgesByUser(UserInterface $user, $pending = null) |
24
|
|
|
{ |
25
|
|
|
$qb = $this->getEntityManager()->createQueryBuilder(); |
26
|
|
|
$qb->select('badge.id') |
27
|
|
|
->from('GameBundle:BadgeCompletion', 'completion') |
28
|
|
|
->leftJoin('completion.badge', 'badge') |
29
|
|
|
->where('completion.user = :user') |
30
|
|
|
->setParameter('user', $user); |
31
|
|
|
|
32
|
|
|
if (is_bool($pending)) { |
33
|
|
|
$qb->andWhere('completion.pending = :pending') |
34
|
|
|
->setParameter('pending', $pending ? '1' : '0'); |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
$queryResult = $qb->getQuery()->getScalarResult(); |
38
|
|
|
|
39
|
|
|
return array_column($queryResult, 'id'); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* {@inheritdoc} |
44
|
|
|
*/ |
45
|
|
|
public function userHasBadge(UserInterface $user, BadgeInterface $badge) |
46
|
|
|
{ |
47
|
|
|
$qb = $this->getEntityManager()->createQueryBuilder(); |
48
|
|
|
$qb->select('COUNT(badge.id)') |
49
|
|
|
->from('GameBundle:BadgeCompletion', 'completion') |
50
|
|
|
->leftJoin('completion.badge', 'badge') |
51
|
|
|
->where('completion.user = :user') |
52
|
|
|
->andWhere('completion.badge = :badge') |
53
|
|
|
->andWhere('completion.pending = 0') |
54
|
|
|
->setParameter('user', $user) |
55
|
|
|
->setParameter('badge', $badge); |
56
|
|
|
|
57
|
|
|
return (1 === intval($qb->getQuery()->getSingleScalarResult())); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* {@inheritdoc} |
62
|
|
|
*/ |
63
|
|
|
public function findByTags(array $tags) |
64
|
|
|
{ |
65
|
|
|
$tagIds = []; |
66
|
|
|
foreach ($tags as $tag) { |
67
|
|
|
$tagIds[] = $tag->getId(); |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
$qb = $this->createQueryBuilder('bc'); |
71
|
|
|
$qb->leftJoin('bc.badge', 'b') |
72
|
|
|
->leftJoin('b.tags', 't') |
73
|
|
|
->where('t.id IN (:ids)')->setParameter('ids', $tagIds, Connection::PARAM_STR_ARRAY) |
74
|
|
|
->orderBy('bc.completionDate', 'desc') |
75
|
|
|
->setMaxResults(15) |
76
|
|
|
->groupBy('bc.id'); |
77
|
|
|
|
78
|
|
|
return $qb->getQuery()->getResult(); |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
|
82
|
|
|
} |
83
|
|
|
|