Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
95.00% |
19 / 20 |
|
92.31% |
12 / 13 |
CRAP | |
0.00% |
0 / 1 |
SearchQuery | |
95.00% |
19 / 20 |
|
92.31% |
12 / 13 |
13 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
8 / 8 |
|
100.00% |
1 / 1 |
1 | |||
getStructure | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
setStructure | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getTerm | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
setTerm | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
isEmptySearch | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getRootClass | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getParentClass | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getStartRow | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getRows | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getPage | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getSortBy | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getSortOrder | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2020-2022 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\tao\model\search; |
24 | |
25 | class SearchQuery |
26 | { |
27 | /** @var string */ |
28 | private $term; |
29 | |
30 | /** @var string */ |
31 | private $rootClass; |
32 | |
33 | /** @var string */ |
34 | private $parentClass; |
35 | |
36 | /** @var int */ |
37 | private $startRow; |
38 | |
39 | /** @var int */ |
40 | private $rows; |
41 | |
42 | /** @var int */ |
43 | private $page; |
44 | |
45 | /** @var string */ |
46 | private $structure; |
47 | |
48 | /** @var string */ |
49 | private $sortBy = 'id'; |
50 | |
51 | /** @var array */ |
52 | private $sortOrder = 'DESC'; |
53 | |
54 | public function __construct( |
55 | string $term, |
56 | string $rootClass, |
57 | string $parentClass, |
58 | int $startRow, |
59 | int $rows = null, |
60 | int $page = null, |
61 | string $sortBy = null, |
62 | string $sortOrder = null |
63 | ) { |
64 | $this->term = $term; |
65 | $this->rootClass = $rootClass; |
66 | $this->parentClass = $parentClass; |
67 | $this->startRow = $startRow; |
68 | $this->rows = $rows; |
69 | $this->page = $page; |
70 | $this->sortBy = $sortBy ?? $this->sortBy; |
71 | $this->sortOrder = $sortOrder ?? $this->sortOrder; |
72 | } |
73 | |
74 | public function getStructure(): ?string |
75 | { |
76 | return $this->structure; |
77 | } |
78 | |
79 | public function setStructure(string $structure): void |
80 | { |
81 | $this->structure = $structure; |
82 | } |
83 | |
84 | public function getTerm(): string |
85 | { |
86 | return $this->term; |
87 | } |
88 | |
89 | public function setTerm(string $term): void |
90 | { |
91 | $this->term = $term; |
92 | } |
93 | |
94 | public function isEmptySearch(): bool |
95 | { |
96 | return empty($this->term); |
97 | } |
98 | |
99 | public function getRootClass(): string |
100 | { |
101 | return $this->rootClass; |
102 | } |
103 | |
104 | public function getParentClass(): string |
105 | { |
106 | return $this->parentClass; |
107 | } |
108 | |
109 | public function getStartRow(): int |
110 | { |
111 | return $this->startRow; |
112 | } |
113 | |
114 | public function getRows(): ?int |
115 | { |
116 | return $this->rows; |
117 | } |
118 | |
119 | public function getPage(): ?int |
120 | { |
121 | return $this->page; |
122 | } |
123 | |
124 | public function getSortBy(): string |
125 | { |
126 | return $this->sortBy; |
127 | } |
128 | |
129 | public function getSortOrder(): string |
130 | { |
131 | return $this->sortOrder; |
132 | } |
133 | } |