Completed
Pull Request — master (#208)
by Simonas
187:26 queued 122:28
created

DocumentValue   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 6

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getState() 0 14 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
                $state->setValue(function ($document) {return $document->{$this->getOption('field')};});
40
                $state->setActive(true);
41
            } catch (\Exception $e) {}
0 ignored issues
show
Coding Style Comprehensibility introduced by
Consider adding a comment why this CATCH block is empty.
Loading history...
42
        }
43
44
        return $state;
45
    }
46
47
    /**
48
     * {@inheritdoc}
49
     */
50
    public function modifySearch(Search $search, FilterState $state = null, SearchRequest $request = null)
51
    {
52
        $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...
53
    }
54
}
55