Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 20
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
LtiPlatformFactory
0.00% covered (danger)
0.00%
0 / 20
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 createFromResource
0.00% covered (danger)
0.00%
0 / 20
0.00% covered (danger)
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) 2021 (original work) Open Assessment Technologies SA
19 */
20
21declare(strict_types=1);
22
23namespace oat\taoLti\models\classes\Platform\Repository;
24
25use core_kernel_classes_Resource;
26use oat\oatbox\service\ConfigurableService;
27use oat\taoLti\models\classes\Platform\LtiPlatformRegistration;
28
29class LtiPlatformFactory extends ConfigurableService
30{
31    public function createFromResource(core_kernel_classes_Resource $resource): LtiPlatformRegistration
32    {
33        $propertiesValues = $resource->getPropertiesValues(
34            [
35                RdfLtiPlatformRepository::LTI_PLATFORM_CLIENT_ID,
36                RdfLtiPlatformRepository::LTI_PLATFORM_DEPLOYMENT_ID,
37                RdfLtiPlatformRepository::LTI_PLATFORM_AUDIENCE,
38                RdfLtiPlatformRepository::LTI_PLATFORM_OAUTH2_ACCESS_TOKEN_URL,
39                RdfLtiPlatformRepository::LTI_PLATFORM_OIDC_URL,
40                RdfLtiPlatformRepository::LTI_PLATFORM_JWKS_URL,
41            ]
42        );
43
44        return new LtiPlatformRegistration(
45            $resource->getUri(),
46            $resource->getLabel(),
47            (string)reset($propertiesValues[RdfLtiPlatformRepository::LTI_PLATFORM_AUDIENCE]),
48            (string)reset($propertiesValues[RdfLtiPlatformRepository::LTI_PLATFORM_OAUTH2_ACCESS_TOKEN_URL]),
49            (string)reset($propertiesValues[RdfLtiPlatformRepository::LTI_PLATFORM_OIDC_URL]),
50            (string)reset($propertiesValues[RdfLtiPlatformRepository::LTI_PLATFORM_JWKS_URL]),
51            (string)reset($propertiesValues[RdfLtiPlatformRepository::LTI_PLATFORM_CLIENT_ID]),
52            (string)reset($propertiesValues[RdfLtiPlatformRepository::LTI_PLATFORM_DEPLOYMENT_ID])
53        );
54    }
55}