Completed
Push — release-1.x ( f5fa1d )
by Boy
11s
created

RaListingSearchQuery::setOrderDirection()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 11
Code Lines 6

Duplication

Lines 11
Ratio 100 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 11
loc 11
rs 9.4285
cc 2
eloc 6
nc 2
nop 1
1
<?php
2
3
/**
4
 * Copyright 2014 SURFnet bv
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 *     http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
19
namespace Surfnet\StepupMiddlewareClient\Identity\Dto;
20
21
use Assert;
22
use Surfnet\StepupMiddlewareClient\Dto\HttpQuery;
23
24
final class RaListingSearchQuery implements HttpQuery
25
{
26
    /**
27
     * @var string
28
     */
29
    private $institution;
30
31
    /**
32
     * @var int
33
     */
34
    private $pageNumber;
35
36
    /**
37
     * @var string|null
38
     */
39
    private $orderBy = 'commonName';
40
41
    /**
42
     * @var string|null
43
     */
44
    private $orderDirection = 'asc';
45
46
    /**
47
     * @param string $institution
48
     * @param int    $pageNumber
49
     */
50 View Code Duplication
    public function __construct($institution, $pageNumber)
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...
51
    {
52
        $this->assertNonEmptyString($institution, 'institution');
53
        Assert\that($pageNumber)
54
            ->integer('Page number must be an integer')
55
            ->min(0, 'Page number must be greater than or equal to 1');
56
57
        $this->institution = $institution;
58
        $this->pageNumber  = $pageNumber;
59
    }
60
61
    /**
62
     * @param string $orderBy
63
     * @return RaListingSearchQuery
64
     */
65
    public function setOrderBy($orderBy)
66
    {
67
        $this->assertNonEmptyString($orderBy, 'orderBy');
68
69
        $this->orderBy = $orderBy;
70
71
        return $this;
72
    }
73
74
    /**
75
     * @param string|null $orderDirection
76
     * @return RaListingSearchQuery
77
     */
78 View Code Duplication
    public function setOrderDirection($orderDirection)
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...
79
    {
80
        Assert\that($orderDirection)->choice(
81
            ['asc', 'desc', '', null],
82
            "Invalid order direction, must be one of 'asc', 'desc'"
83
        );
84
85
        $this->orderDirection = $orderDirection ?: null;
86
87
        return $this;
88
    }
89
90 View Code Duplication
    private function assertNonEmptyString($value, $parameterName)
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...
91
    {
92
        $message = sprintf(
93
            '"%s" must be a non-empty string, "%s" given',
94
            $parameterName,
95
            (is_object($value) ? get_class($value) : gettype($value))
96
        );
97
98
        Assert\that($value)->string($message)->notEmpty($message);
99
    }
100
101
    public function toHttpQuery()
102
    {
103
        return '?' . http_build_query(
104
            array_filter(
105
                [
106
                    'institution'    => $this->institution,
107
                    'orderBy'        => $this->orderBy,
108
                    'orderDirection' => $this->orderDirection,
109
                    'p'              => $this->pageNumber,
110
                ],
111
                function ($value) {
112
                    return !is_null($value);
113
                }
114
            )
115
        );
116
    }
117
}
118