1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Mado\QueryBundle\Queries; |
4
|
|
|
|
5
|
|
|
use Doctrine\ORM\EntityManager; |
6
|
|
|
use Mado\QueryBundle\Objects\MetaDataAdapter; |
7
|
|
|
use Mado\QueryBundle\Queries\QueryBuilderOptions; |
8
|
|
|
use Mado\QueryBundle\Services\StringParser; |
9
|
|
|
|
10
|
|
|
class AbstractQuery |
11
|
|
|
{ |
12
|
|
|
protected $manager; |
13
|
|
|
|
14
|
|
|
protected $entityName; |
15
|
|
|
|
16
|
|
|
protected $entityAlias; |
17
|
|
|
|
18
|
|
|
protected $parser; |
19
|
|
|
|
20
|
|
|
protected $qBuilder; |
21
|
|
|
|
22
|
40 |
|
public function __construct(EntityManager $manager) |
23
|
|
|
{ |
24
|
40 |
|
$this->manager = $manager; |
25
|
40 |
|
$this->parser = new StringParser(); |
26
|
40 |
|
} |
27
|
|
|
|
28
|
|
|
public function createSelectAndGroupBy($entityName, $alias, $groupByField) |
29
|
|
|
{ |
30
|
|
|
$select = $alias . '.' . $groupByField . ', count(' . $alias . '.id) as num'; |
31
|
|
|
$groupBy = $alias . '.' . $groupByField . ''; |
32
|
|
|
|
33
|
|
|
$this->entityName = $entityName; |
34
|
|
|
$this->entityAlias = $alias; |
35
|
|
|
|
36
|
|
|
$this->qBuilder = $this->manager->createQueryBuilder($this->entityName) |
|
|
|
|
37
|
|
|
->select($select) |
38
|
|
|
->groupBy($groupBy); |
39
|
|
|
} |
40
|
|
|
|
41
|
15 |
|
public function createQueryBuilder($entityName, $alias) |
42
|
|
|
{ |
43
|
15 |
|
$this->entityName = $entityName; |
44
|
15 |
|
$this->entityAlias = $alias; |
45
|
|
|
|
46
|
15 |
|
$this->qBuilder = $this->manager->createQueryBuilder($this->entityName) |
|
|
|
|
47
|
15 |
|
->select($alias) |
48
|
15 |
|
->from($this->entityName, $alias); |
49
|
15 |
|
} |
50
|
|
|
|
51
|
5 |
|
public function getEntityName() |
52
|
|
|
{ |
53
|
5 |
|
return $this->entityName; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
public function loadMetadataAndOptions( |
57
|
|
|
MetaDataAdapter $metadata, |
58
|
|
|
QueryBuilderOptions $options |
59
|
|
|
) { |
60
|
|
|
$this->setFields($metadata->getFields()); |
|
|
|
|
61
|
|
|
|
62
|
|
|
$this->setAndFilters($options->getAndFilters()); |
|
|
|
|
63
|
|
|
$this->setOrFilters($options->getOrFilters()); |
|
|
|
|
64
|
|
|
$this->setSorting($options->getSorting()); |
|
|
|
|
65
|
|
|
$this->setRel($options->getRel()); |
|
|
|
|
66
|
|
|
$this->setPrinting($options->getPrinting()); |
|
|
|
|
67
|
|
|
$this->setSelect($options->getSelect()); |
|
|
|
|
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|
This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.