Completed
Push — master ( f1b857...d82134 )
by Nils
02:25
created

DatatableVersion::canParseRequest()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 5

Duplication

Lines 8
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 8
loc 8
rs 9.4286
cc 2
eloc 5
nc 2
nop 0
1
<?php
2
3
namespace OpenSkill\Datatable\Versions;
4
5
6
use OpenSkill\Datatable\Columns\ColumnConfiguration;
7
use OpenSkill\Datatable\Data\ResponseData;
8
use OpenSkill\Datatable\Queries\Parser\QueryParser;
9
use OpenSkill\Datatable\Queries\QueryConfiguration;
10
use Symfony\Component\HttpFoundation\JsonResponse;
11
use Symfony\Component\HttpFoundation\RequestStack;
12
13
abstract class DatatableVersion extends Version
14
{
15
    /**
16
     * @var QueryParser
17
     */
18
    protected $queryParser;
19
20
    /**
21
     * DatatableVersion constructor.
22
     * @param RequestStack $requestStack
23
     * @param QueryParser $queryParser
24
     */
25
    public function __construct(RequestStack $requestStack, QueryParser $queryParser)
26
    {
27
        parent::__construct($requestStack);
28
        $this->queryParser = $queryParser;
29
    }
30
31
    /**
32
     * Method to determine if this parser can handle the query parameters. If so then the parser should return true
33
     * and be able to return a DTQueryConfiguration
34
     *
35
     * @return bool true if the parser is able to parse the query parameters and to return a DTQueryConfiguration
36
     */
37 View Code Duplication
    public function canParseRequest()
0 ignored issues
show
Duplication introduced by
This method 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...
38
    {
39
        $request = $this->requestStack->getCurrentRequest();
40
        if (is_null($request)) {
41
            throw new \InvalidArgumentException("Can not determine a request that is null");
42
        }
43
        return $this->queryParser->canParse($request);
44
    }
45
46
    /**
47
     * Method that should parse the request and return a DTQueryConfiguration
48
     *
49
     * @param ColumnConfiguration[] $columnConfiguration The configuration of the columns
50
     * @return QueryConfiguration the configuration the provider can use to prepare the data
51
     */
52 View Code Duplication
    public function parseRequest(array $columnConfiguration)
0 ignored issues
show
Duplication introduced by
This method 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...
53
    {
54
        $request = $this->requestStack->getCurrentRequest();
55
        if (is_null($request)) {
56
            throw new \InvalidArgumentException("Can not parse a request that is null");
57
        }
58
        return $this->queryParser->parse($request, $columnConfiguration);
59
    }
60
}