Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
75.00% covered (warning)
75.00%
12 / 16
50.00% covered (danger)
50.00%
3 / 6
CRAP
0.00% covered (danger)
0.00%
0 / 1
ValidationService
75.00% covered (warning)
75.00%
12 / 16
50.00% covered (danger)
50.00%
3 / 6
12.89
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
7 / 7
100.00% covered (success)
100.00%
1 / 1
5
 getContentValidationSchema
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 getManifestValidationSchema
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getSchemas
66.67% covered (warning)
66.67%
2 / 3
0.00% covered (danger)
0.00%
0 / 1
2.15
 getContentValidation
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getManifestValidation
0.00% covered (danger)
0.00%
0 / 1
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) 2015-2024 (original work) Open Assessment Technologies SA;
19 */
20
21namespace oat\taoQtiItem\model;
22
23use oat\oatbox\service\ConfigurableService;
24
25class ValidationService extends ConfigurableService
26{
27    public const SERVICE_ID = 'taoQtiItem/validation';
28
29    private $contentValidation = [
30        'http://www.imsglobal.org/xsd/imsqti_v2p0' => [
31            '/qti/data/qtiv2p0/imsqti_v2p0.xsd'
32        ],
33        'http://www.imsglobal.org/xsd/apip/apipv1p0/qtiitem/imsqti_v2p1' => [
34            '/qti/data/apipv1p0/Core_Level/Package/apipv1p0_qtiitemv2p1_v1p0.xsd'
35        ],
36        'http://www.imsglobal.org/xsd/apip/apipv1p0/qtiitem/imsqti_v2p2' => [
37            '/qti/data/apipv1p0final/Core_Level/Package/apipv1p0_qtiitemv2p2_v1p0.xsd'
38        ],
39        'http://www.imsglobal.org/xsd/imsqti_v2p2' => [
40            '/qti/data/qtiv2p2p4/imsqti_v2p2p4.xsd'
41        ],
42        'http://www.imsglobal.org/xsd/imsqtiasi_v3p0' => [
43            '/qti/data/qtiv3p0/imsqti_asiv3p0_v1p0.xsd'
44        ],
45        'http://www.imsglobal.org/xsd/qti/qtiv3p0/imscp_v1p1' => [
46            '/qti/data/qtiv3p0/imsqtiv3p0_imscpv1p2_v1p0.xsd'
47        ],
48        'http://www.imsglobal.org/xsd/imscp_v1p1' => [
49            '/qti/data/imscp_v1p1.xsd'
50        ],
51        'default' => [
52            '/qti/data/qtiv2p1p1/imsqti_v2p1p1.xsd'
53        ]
54    ];
55
56    private $manifestValidation = [
57        'http://www.imsglobal.org/xsd/qti/qtiv3p0/imscp_v1p1' => [
58            '/qti/data/imscp_v1p1.xsd',
59            '/qti/data/qtiv3p0/imsqtiv3p0_imscpv1p2_v1p0.xsd'
60        ],
61        'default' => [
62            '/qti/data/imscp_v1p1.xsd',
63            '/qti/data/qtiv2p2/qtiv2p2_imscpv1p2_v1p0.xsd',
64            '/qti/data/apipv1p0/Core_Level/Package/apipv1p0_imscpv1p2_v1p0.xsd',
65            '/qti/data/apipv1p0final/Core_Level/Package/apipv1p0_imscpv1p2_v1p0.xsd',
66            '/qti/data/qtiv3p0/imsqtiv3p0_imscpv1p2_v1p0.xsd'
67        ],
68        'http://www.imsglobal.org/xsd/imscp_v1p1' => [
69            '/qti/data/imscp_v1p1.xsd'
70        ],
71    ];
72
73    public function __construct(array $options = [])
74    {
75        parent::__construct($options);
76        foreach ($this->contentValidation as $key => &$array) {
77            foreach ($array as &$value) {
78                $value = __DIR__ . $value;
79            }
80        }
81        foreach ($this->manifestValidation as $key => &$array) {
82            foreach ($array as &$value) {
83                $value = __DIR__ . $value;
84            }
85        }
86    }
87
88    /**
89     * @param string $key the namespace of content to validate
90     * @return array of schema for content validation
91     */
92    public function getContentValidationSchema($key)
93    {
94        $validationArray = $this->getContentValidation();
95
96        return $this->getSchemas($validationArray, $key);
97    }
98
99    /**
100     * @param string $key the namespace of manifest to validate
101     * @return array of schema for manifest validation
102     */
103    public function getManifestValidationSchema($key)
104    {
105        $validationArray = $this->getManifestValidation();
106
107        return $this->getSchemas($validationArray, $key);
108    }
109
110    /**
111     * @param array $validationArray list of xsds for namespaces
112     * @param string $key the namespace
113     * @return array schemas for validation
114     */
115    protected function getSchemas($validationArray, $key)
116    {
117        if (isset($validationArray[$key])) {
118            return $validationArray[$key];
119        }
120
121        return $validationArray['default'];
122    }
123
124    /**
125     * @return array
126     */
127    protected function getContentValidation()
128    {
129        return $this->contentValidation;
130    }
131
132    /**
133     * @return array
134     */
135    protected function getManifestValidation()
136    {
137        return $this->manifestValidation;
138    }
139}