Completed
Pull Request — 5.4 (#2670)
by
unknown
18:53 queued 12:41
created

StringFilterType   A

Complexity

Total Complexity 11

Size/Duplication

Total Lines 72
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 5

Test Coverage

Coverage 82.93%

Importance

Changes 0
Metric Value
wmc 11
lcom 1
cbo 5
dl 72
loc 72
ccs 34
cts 41
cp 0.8293
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A bindRequest() 5 5 1
A getTemplate() 4 4 1
B apply() 46 46 9

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace Kunstmaan\AdminListBundle\AdminList\FilterType\DBAL;
4
5
use Symfony\Component\HttpFoundation\Request;
6
7
/**
8
 * StringFilterType
9
 */
10 View Code Duplication
class StringFilterType extends AbstractDBALFilterType
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
11
{
12
    /**
13
     * @param Request $request
14
     * @param array   &$data
15
     * @param string  $uniqueId
16
     */
17 2
    public function bindRequest(Request $request, array &$data, $uniqueId)
18
    {
19 2
        $data['comparator'] = $request->query->get('filter_comparator_'.$uniqueId);
20 2
        $data['value'] = $request->query->get('filter_value_'.$uniqueId);
21 2
    }
22
23
    /**
24
     * @param array  $data
25
     * @param string $uniqueId
26
     */
27 6
    public function apply(array $data, $uniqueId)
28
    {
29 6
        if (isset($data['value'], $data['comparator'])) {
30 6
            switch ($data['comparator']) {
31 6
                case 'equals':
32 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->eq($this->getAlias().$this->columnName, ':var_'.$uniqueId));
33 1
                    $this->queryBuilder->setParameter('var_'.$uniqueId, $data['value']);
34
35 1
                    break;
36 5
                case 'notequals':
37 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->neq($this->getAlias().$this->columnName, ':var_'.$uniqueId));
38 1
                    $this->queryBuilder->setParameter('var_'.$uniqueId, $data['value']);
39
40 1
                    break;
41 4
                case 'contains':
42 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->like($this->getAlias().$this->columnName, ':var_'.$uniqueId));
43 1
                    $this->queryBuilder->setParameter('var_'.$uniqueId, '%'.$data['value'].'%');
44
45 1
                    break;
46 3
                case 'doesnotcontain':
47 1
                    $this->queryBuilder->andWhere($this->getAlias().$this->columnName.' NOT LIKE :var_'.$uniqueId);
48 1
                    $this->queryBuilder->setParameter('var_'.$uniqueId, '%'.$data['value'].'%');
49
50 1
                    break;
51 2
                case 'startswith':
52 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->like($this->getAlias().$this->columnName, ':var_'.$uniqueId));
53 1
                    $this->queryBuilder->setParameter('var_'.$uniqueId, $data['value'].'%');
54
55 1
                    break;
56 1
                case 'endswith':
57 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->like($this->getAlias().$this->columnName, ':var_'.$uniqueId));
58 1
                    $this->queryBuilder->setParameter('var_'.$uniqueId, '%'.$data['value']);
59
60 1
                    break;
61
                case 'empty':
62
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->orX(
63
                        $this->queryBuilder->expr()->isNull($this->getAlias().$this->columnName),
64
                        $this->queryBuilder->expr()->eq($this->getAlias().$this->columnName, '\'-\''),
65
                        $this->queryBuilder->expr()->eq($this->getAlias().$this->columnName, ':var_empty_'.$uniqueId)
66
                    ));
67
                    $this->queryBuilder->setParameter('var_empty_'.$uniqueId, '');
68
69
                    break;
70
            }
71
        }
72 6
    }
73
74
    /**
75
     * @return string
76
     */
77 1
    public function getTemplate()
78
    {
79 1
        return '@KunstmaanAdminList/FilterType/stringFilter.html.twig';
80
    }
81
}
82