Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 17 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
tao_actions_ResourceRelations | |
0.00% |
0 / 17 |
|
0.00% |
0 / 2 |
20 | |
0.00% |
0 / 1 |
index | |
0.00% |
0 / 16 |
|
0.00% |
0 / 1 |
12 | |||
getResourceRelationService | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
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 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | use oat\generis\model\OntologyAwareTrait; |
24 | use oat\tao\model\http\Controller; |
25 | use oat\tao\model\http\HttpJsonResponseTrait; |
26 | use oat\tao\model\resources\relation\exception\NestedClassLimitExceededException; |
27 | use oat\tao\model\resources\relation\FindAllQuery; |
28 | use oat\tao\model\resources\relation\service\ResourceRelationServiceInterface; |
29 | use oat\tao\model\resources\relation\service\ResourceRelationServiceProxy; |
30 | use Zend\ServiceManager\ServiceLocatorAwareInterface; |
31 | use Zend\ServiceManager\ServiceLocatorAwareTrait; |
32 | |
33 | class tao_actions_ResourceRelations extends Controller implements ServiceLocatorAwareInterface |
34 | { |
35 | use ServiceLocatorAwareTrait; |
36 | use HttpJsonResponseTrait; |
37 | use OntologyAwareTrait; |
38 | |
39 | public function index(): void |
40 | { |
41 | $queryParams = $this->getPsrRequest()->getQueryParams(); |
42 | |
43 | try { |
44 | $this->setSuccessJsonResponse( |
45 | [ |
46 | 'relations' => $this->getResourceRelationService()->findRelations( |
47 | new FindAllQuery( |
48 | $queryParams['sourceId'] ?? null, |
49 | $queryParams['classId'] ?? null, |
50 | $queryParams['type'] ?? null |
51 | ) |
52 | )->jsonSerialize() |
53 | ] |
54 | ); |
55 | } catch (NestedClassLimitExceededException $exception) { |
56 | $this->setErrorJsonResponse($exception->getMessage(), $exception->getCode()); |
57 | } catch (Throwable $exception) { |
58 | $this->setErrorJsonResponse($exception->getMessage()); |
59 | } |
60 | } |
61 | |
62 | private function getResourceRelationService(): ResourceRelationServiceInterface |
63 | { |
64 | return $this->getServiceLocator()->get(ResourceRelationServiceProxy::SERVICE_ID); |
65 | } |
66 | } |