forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidator.php
264 lines (231 loc) · 6.96 KB
/
validator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Provides validation classes used by the imscc converters
*
* @package backup-convert
* @copyright 2011 Darko Miletic <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
final class error_messages {
/**
*
* @static error_messages
*/
private static $instance = null;
private function __construct(){}
private function __clone(){}
/**
* @return error_messages
*/
public static function instance() {
if (empty(self::$instance)) {
$c = __CLASS__;
self::$instance = new $c();
}
return self::$instance;
}
/**
* @var array
*/
private $items = array();
/**
* @param string $msg
*/
public function add($msg) {
if (!empty($msg)) {
$this->items[] = $msg;
}
}
/**
* @return array
*/
public function errors() {
$this->items;
}
/**
* Empties the error content
*/
public function reset() {
$this->items = array();
}
/**
* @param boolean $web
* @return string
*/
public function to_string($web = false) {
$result = '';
if ($web) {
$result .= '<ol>'.PHP_EOL;
}
foreach ($this->items as $error) {
if ($web) {
$result .= '<li>';
}
$result .= $error.PHP_EOL;
if ($web) {
$result .= '</li>'.PHP_EOL;
}
}
if ($web) {
$result .= '</ol>'.PHP_EOL;
}
return $result;
}
/**
* Casting to string method
* @return string
*/
public function __toString() {
return $this->to_string(false);
}
}
final class libxml_errors_mgr {
/**
* @var boolean
*/
private $previous = false;
/**
* @param boolean $reset
*/
public function __construct($reset=false){
if ($reset) {
error_messages::instance()->reset();
}
$this->previous = libxml_use_internal_errors(true);
libxml_clear_errors();
}
private function collect_errors ($filename=''){
$errors = libxml_get_errors();
static $error_types = array(
LIBXML_ERR_ERROR => 'Error'
,LIBXML_ERR_FATAL => 'Fatal Error'
,LIBXML_ERR_WARNING => 'Warning'
);
$result = array();
foreach($errors as $error){
$add = '';
if (!empty($filename)) {
$add = " in {$filename}";
} elseif (!empty($error->file)) {
$add = " in {$error->file}";
}
$line = '';
if (!empty($error->line)) {
$line = " at line {$error->line}";
}
$err = "{$error_types[$error->level]}{$add}: {$error->message}{$line}";
error_messages::instance()->add($err);
}
libxml_clear_errors();
return $result;
}
public function __destruct(){
$this->collect_errors();
if (!$this->previous) {
libxml_use_internal_errors($this->previous);
}
}
public function collect() {
$this->collect_errors();
}
}
function validate_xml($xml, $schema){
$result = false;
$manifest_file = realpath($xml);
$schema_file = realpath($schema);
if (empty($manifest_file) || empty($schema_file)) {
return false;
}
$xml_error = new libxml_errors_mgr();
$manifest = new DOMDocument();
$doc->validateOnParse = false;
$result = $manifest->load($manifest_file, LIBXML_NONET) &&
$manifest->schemaValidate($schema_file);
return $result;
}
class cc_validate_type {
const manifest_validator1 = 'cclibxml2validator.xsd' ;
const assesment_validator1 = '/domainProfile_4/ims_qtiasiv1p2_localised.xsd';
const discussion_validator1 = '/domainProfile_6/imsdt_v1p0_localised.xsd' ;
const weblink_validator1 = '/domainProfile_5/imswl_v1p0_localised.xsd' ;
const manifest_validator11 = 'cc11libxml2validator.xsd' ;
const blti_validator11 = 'imslticc_v1p0p1.xsd' ;
const assesment_validator11 = 'ccv1p1_qtiasiv1p2p1_v1p0.xsd';
const discussion_validator11 = 'ccv1p1_imsdt_v1p1.xsd' ;
const weblink_validator11 = 'ccv1p1_imswl_v1p1.xsd' ;
/**
* @var string
*/
protected $type = null;
/**
* @var string
*/
protected $location = null;
public function __construct($type, $location){
$this->type = $type;
$this->location = $location;
}
/**
* Validates the item
* @param string $element - File path for the xml
* @return boolean
*/
public function validate($element) {
$this->last_error = null;
$celement = realpath($element);
$cvalidator = realpath($this->location.DIRECTORY_SEPARATOR.$this->type);
$result = (empty($celement) || empty($cvalidator));
if (!$result) {
$xml_error = new libxml_errors_mgr();
$doc = new DOMDocument();
$doc->validateOnParse = false;
$result = $doc->load($celement, LIBXML_NONET) &&
$doc->schemaValidate($cvalidator);
}
return $result;
}
}
class manifest_validator extends cc_validate_type {
public function __construct($location){
parent::__construct(self::manifest_validator11, $location);
}
}
class manifest10_validator extends cc_validate_type {
public function __construct($location){
parent::__construct(self::manifest_validator1, $location);
}
}
class blti_validator extends cc_validate_type {
public function __construct($location){
parent::__construct(self::blti_validator11, $location);
}
}
class assesment_validator extends cc_validate_type {
public function __construct($location){
parent::__construct(self::assesment_validator11, $location);
}
}
class discussion_validator extends cc_validate_type {
public function __construct($location){
parent::__construct(self::discussion_validator11, $location);
}
}
class weblink_validator extends cc_validate_type {
public function __construct($location){
parent::__construct(self::weblink_validator11, $location);
}
}