Completed
Pull Request — master (#208)
by Simonas
138:34 queued 73:25
created

DocumentValue   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 6

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 6
dl 0
loc 35
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getState() 0 18 3
A modifySearch() 0 4 1
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\FilterManagerBundle\Filter\Widget\Search;
13
14
use ONGR\ElasticsearchDSL\Query\TermQuery;
15
use ONGR\ElasticsearchDSL\Search;
16
use ONGR\FilterManagerBundle\Filter\FilterState;
17
use ONGR\FilterManagerBundle\Filter\Relation\RelationAwareTrait;
18
use ONGR\FilterManagerBundle\Search\SearchRequest;
19
use Symfony\Component\HttpFoundation\Request;
20
21
/**
22
 * Filter for filtering on exact value in specified field.
23
 */
24
class DocumentValue extends AbstractSingleValue
25
{
26
27
    use RelationAwareTrait;
28
29
    /**
30
     * {@inheritdoc}
31
     */
32
    public function getState(Request $request)
33
    {
34
        $state = new FilterState();
35
        $document = $request->get('document');
36
37
        if (is_object($document)) {
38
            try {
39
                $closure = \Closure::bind(function ($document, $field) {
40
                    return $document->$field;} , null, $document);
41
                $state->setValue($closure($document, $this->getOption('field')));
42
                $state->setActive(true);
43
            } catch (\Exception $e) {
44
                throw new \LogicException("Cannot access document field.");
45
            }
46
        }
47
48
        return $state;
49
    }
50
51
    /**
52
     * {@inheritdoc}
53
     */
54
    public function modifySearch(Search $search, FilterState $state = null, SearchRequest $request = null)
55
    {
56
        $search->addPostFilter(new TermQuery($this->getDocumentField(), $state->getValue()));
0 ignored issues
show
Bug introduced by
It seems like $state is not always an object, but can also be of type null. Maybe add an additional type check?

If a variable is not always an object, we recommend to add an additional type check to ensure your method call is safe:

function someFunction(A $objectMaybe = null)
{
    if ($objectMaybe instanceof A) {
        $objectMaybe->doSomething();
    }
}
Loading history...
57
    }
58
}
59