Completed
Push — master ( 6c9334...f3ba17 )
by Simonas
02:26
created

src/SearchEndpoint/QueryEndpoint.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * This file is part of the ONGR package.
5
 *
6
 * (c) NFQ Technologies UAB <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace ONGR\ElasticsearchDSL\SearchEndpoint;
13
14
use ONGR\ElasticsearchDSL\BuilderInterface;
15
use ONGR\ElasticsearchDSL\Query\BoolQuery;
16
use ONGR\ElasticsearchDSL\Serializer\Normalizer\OrderedNormalizerInterface;
17
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
18
19
/**
20
 * Search query dsl endpoint.
21
 */
22
class QueryEndpoint extends AbstractSearchEndpoint implements OrderedNormalizerInterface
23
{
24
    /**
25
     * Endpoint name
26
     */
27
    const NAME = 'query';
28
29
    /**
30
     * @var BoolQuery
31
     */
32
    private $bool;
33
34
    /**
35
     * @var bool
36
     */
37
    private $filtersSet = false;
38
39
    /**
40
     * {@inheritdoc}
41
     */
42
    public function normalize(NormalizerInterface $normalizer, $format = null, array $context = [])
43
    {
44
        if (!$this->filtersSet && $this->hasReference('filter_query')) {
45
            /** @var BuilderInterface $filter */
46
            $filter = $this->getReference('filter_query');
47
            $this->addToBool($filter, BoolQuery::FILTER);
48
            $this->filtersSet = true;
49
        }
50
51
        if (!$this->bool) {
52
            return null;
53
        }
54
55
        return $this->bool->toArray();
56
    }
57
58
    /**
59
     * {@inheritdoc}
60
     */
61
    public function add(BuilderInterface $builder, $key = null)
62
    {
63
        return $this->addToBool($builder, BoolQuery::MUST, $key);
64
    }
65
66
    /**
67
     * {@inheritdoc}
68
     */
69
    public function addToBool(BuilderInterface $builder, $boolType = null, $key = null)
70
    {
71
        if (!$this->bool) {
72
            $this->bool = new BoolQuery();
73
        }
74
75
        return $this->bool->add($builder, $boolType, $key);
0 ignored issues
show
It seems like $key defined by parameter $key on line 69 can also be of type array; however, ONGR\ElasticsearchDSL\Query\BoolQuery::add() does only seem to accept string|null, maybe add an additional type check?

This check looks at variables that have been passed in as parameters and are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
76
    }
77
78
    /**
79
     * {@inheritdoc}
80
     */
81
    public function getOrder()
82
    {
83
        return 3;
84
    }
85
86
    /**
87
     * @return BoolQuery
88
     */
89
    public function getBool()
90
    {
91
        return $this->bool;
92
    }
93
94
    /**
95
     * {@inheritdoc}
96
     */
97
    public function getAll($boolType = null)
98
    {
99
        return $this->bool->getQueries($boolType);
100
    }
101
}
102