Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
95.65% |
22 / 23 |
|
75.00% |
3 / 4 |
CRAP | |
0.00% |
0 / 1 |
IdentifierSearcher | |
95.65% |
22 / 23 |
|
75.00% |
3 / 4 |
11 | |
0.00% |
0 / 1 |
withLocalNamespace | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
search | |
100.00% |
14 / 14 |
|
100.00% |
1 / 1 |
4 | |||
isUriSearch | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
3 | |||
getLocalNamespace | |
66.67% |
2 / 3 |
|
0.00% |
0 / 1 |
3.33 |
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) 2021 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | namespace oat\tao\model\search; |
22 | |
23 | use oat\generis\model\OntologyAwareTrait; |
24 | use oat\oatbox\service\ConfigurableService; |
25 | |
26 | class IdentifierSearcher extends ConfigurableService |
27 | { |
28 | use OntologyAwareTrait; |
29 | |
30 | /** @var string */ |
31 | private $localNamespace; |
32 | |
33 | public function withLocalNamespace(string $localNameSpace): self |
34 | { |
35 | $this->localNamespace = $localNameSpace; |
36 | |
37 | return $this; |
38 | } |
39 | |
40 | public function search(SearchQuery $query): ResultSet |
41 | { |
42 | if ($this->isUriSearch($query->getTerm())) { |
43 | $resource = $this->getResource($query->getTerm()); |
44 | $class = $this->getClass($query->getParentClass()); |
45 | |
46 | if ($resource->exists() && $resource->isInstanceOf($class)) { |
47 | return new ResultSet( |
48 | [ |
49 | [ |
50 | 'id' => $resource->getUri(), |
51 | 'label' => $resource->getLabel(), |
52 | ], |
53 | ], |
54 | 1 |
55 | ); |
56 | } |
57 | } |
58 | |
59 | return new ResultSet([], 0); |
60 | } |
61 | |
62 | private function isUriSearch(string $queryString): bool |
63 | { |
64 | $localNameSpace = $this->getLocalNamespace(); |
65 | |
66 | if (!empty($localNameSpace) && strpos($queryString, $localNameSpace) === 0) { |
67 | return true; |
68 | } |
69 | |
70 | return filter_var($queryString, FILTER_VALIDATE_URL) !== false; |
71 | } |
72 | |
73 | private function getLocalNamespace(): ?string |
74 | { |
75 | return empty($this->localNamespace) && defined('LOCAL_NAMESPACE') |
76 | ? LOCAL_NAMESPACE |
77 | : $this->localNamespace; |
78 | } |
79 | } |