Merge "Add support for PHP7 random_bytes in favor of mcrypt_create_iv"
[lhc/web/wiklou.git] / includes / api / ApiErrorFormatter.php
1 <?php
2 /**
3 * This file contains the ApiErrorFormatter definition, plus implementations of
4 * specific formatters.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @file
22 */
23
24 /**
25 * Formats errors and warnings for the API, and add them to the associated
26 * ApiResult.
27 * @since 1.25
28 * @ingroup API
29 */
30 class ApiErrorFormatter {
31 /** @var Title Dummy title to silence warnings from MessageCache::parse() */
32 private static $dummyTitle = null;
33
34 /** @var ApiResult */
35 protected $result;
36
37 /** @var Language */
38 protected $lang;
39 protected $useDB = false;
40 protected $format = 'none';
41
42 /**
43 * @param ApiResult $result Into which data will be added
44 * @param Language $lang Used for i18n
45 * @param string $format
46 * - plaintext: Error message as something vaguely like plaintext
47 * (it's basically wikitext with HTML tags stripped and entities decoded)
48 * - wikitext: Error message as wikitext
49 * - html: Error message as HTML
50 * - raw: Raw message key and parameters, no human-readable text
51 * - none: Code and data only, no human-readable text
52 * @param bool $useDB Whether to use local translations for errors and warnings.
53 */
54 public function __construct( ApiResult $result, Language $lang, $format, $useDB = false ) {
55 $this->result = $result;
56 $this->lang = $lang;
57 $this->useDB = $useDB;
58 $this->format = $format;
59 }
60
61 /**
62 * Fetch the Language for this formatter
63 * @since 1.29
64 * @return Language
65 */
66 public function getLanguage() {
67 return $this->lang;
68 }
69
70 /**
71 * Fetch a dummy title to set on Messages
72 * @return Title
73 */
74 protected function getDummyTitle() {
75 if ( self::$dummyTitle === null ) {
76 self::$dummyTitle = Title::makeTitle( NS_SPECIAL, 'Badtitle/' . __METHOD__ );
77 }
78 return self::$dummyTitle;
79 }
80
81 /**
82 * Add a warning to the result
83 * @param string|null $modulePath
84 * @param Message|array|string $msg Warning message. See ApiMessage::create().
85 * @param string|null $code See ApiMessage::create().
86 * @param array|null $data See ApiMessage::create().
87 */
88 public function addWarning( $modulePath, $msg, $code = null, $data = null ) {
89 $msg = ApiMessage::create( $msg, $code, $data )
90 ->inLanguage( $this->lang )
91 ->title( $this->getDummyTitle() )
92 ->useDatabase( $this->useDB );
93 $this->addWarningOrError( 'warning', $modulePath, $msg );
94 }
95
96 /**
97 * Add an error to the result
98 * @param string|null $modulePath
99 * @param Message|array|string $msg Warning message. See ApiMessage::create().
100 * @param string|null $code See ApiMessage::create().
101 * @param array|null $data See ApiMessage::create().
102 */
103 public function addError( $modulePath, $msg, $code = null, $data = null ) {
104 $msg = ApiMessage::create( $msg, $code, $data )
105 ->inLanguage( $this->lang )
106 ->title( $this->getDummyTitle() )
107 ->useDatabase( $this->useDB );
108 $this->addWarningOrError( 'error', $modulePath, $msg );
109 }
110
111 /**
112 * Add warnings and errors from a StatusValue object to the result
113 * @param string|null $modulePath
114 * @param StatusValue $status
115 * @param string[] $types 'warning' and/or 'error'
116 */
117 public function addMessagesFromStatus(
118 $modulePath, StatusValue $status, $types = [ 'warning', 'error' ]
119 ) {
120 if ( $status->isGood() || !$status->getErrors() ) {
121 return;
122 }
123
124 $types = (array)$types;
125 foreach ( $status->getErrors() as $error ) {
126 if ( !in_array( $error['type'], $types, true ) ) {
127 continue;
128 }
129
130 if ( $error['type'] === 'error' ) {
131 $tag = 'error';
132 } else {
133 // Assume any unknown type is a warning
134 $tag = 'warning';
135 }
136
137 $msg = ApiMessage::create( $error )
138 ->inLanguage( $this->lang )
139 ->title( $this->getDummyTitle() )
140 ->useDatabase( $this->useDB );
141 $this->addWarningOrError( $tag, $modulePath, $msg );
142 }
143 }
144
145 /**
146 * Get an ApiMessage from an exception
147 * @since 1.29
148 * @param Exception|Throwable $exception
149 * @param array $options
150 * - wrap: (string|array|MessageSpecifier) Used to wrap the exception's
151 * message if it's not an ILocalizedException. The exception's message
152 * will be added as the final parameter.
153 * - code: (string) Default code
154 * - data: (array) Default extra data
155 * @return IApiMessage
156 */
157 public function getMessageFromException( $exception, array $options = [] ) {
158 $options += [ 'code' => null, 'data' => [] ];
159
160 if ( $exception instanceof ILocalizedException ) {
161 $msg = $exception->getMessageObject();
162 $params = [];
163 } else {
164 // Extract code and data from the exception, if applicable
165 if ( $exception instanceof UsageException ) {
166 $data = $exception->getMessageArray();
167 if ( !$options['code'] ) {
168 $options['code'] = $data['code'];
169 }
170 unset( $data['code'], $data['info'] );
171 $options['data'] = array_merge( $data, $options['data'] );
172 }
173
174 if ( isset( $options['wrap'] ) ) {
175 $msg = $options['wrap'];
176 } else {
177 $msg = new RawMessage( '$1' );
178 if ( !isset( $options['code'] ) ) {
179 $options['code'] = 'internal_api_error_' . get_class( $exception );
180 }
181 }
182 $params = [ wfEscapeWikiText( $exception->getMessage() ) ];
183 }
184 return ApiMessage::create( $msg, $options['code'], $options['data'] )
185 ->params( $params )
186 ->inLanguage( $this->lang )
187 ->title( $this->getDummyTitle() )
188 ->useDatabase( $this->useDB );
189 }
190
191 /**
192 * Format an exception as an array
193 * @since 1.29
194 * @param Exception|Throwable $exception
195 * @param array $options See self::getMessageFromException(), plus
196 * - format: (string) Format override
197 * @return array
198 */
199 public function formatException( $exception, array $options = [] ) {
200 return $this->formatMessage(
201 $this->getMessageFromException( $exception, $options ),
202 isset( $options['format'] ) ? $options['format'] : null
203 );
204 }
205
206 /**
207 * Format a message as an array
208 * @param Message|array|string $msg Message. See ApiMessage::create().
209 * @param string|null $format
210 * @return array
211 */
212 public function formatMessage( $msg, $format = null ) {
213 $msg = ApiMessage::create( $msg )
214 ->inLanguage( $this->lang )
215 ->title( $this->getDummyTitle() )
216 ->useDatabase( $this->useDB );
217 return $this->formatMessageInternal( $msg, $format ?: $this->format );
218 }
219
220 /**
221 * Format messages from a StatusValue as an array
222 * @param StatusValue $status
223 * @param string $type 'warning' or 'error'
224 * @param string|null $format
225 * @return array
226 */
227 public function arrayFromStatus( StatusValue $status, $type = 'error', $format = null ) {
228 if ( $status->isGood() || !$status->getErrors() ) {
229 return [];
230 }
231
232 $result = new ApiResult( 1e6 );
233 $formatter = new ApiErrorFormatter(
234 $result, $this->lang, $format ?: $this->format, $this->useDB
235 );
236 $formatter->addMessagesFromStatus( null, $status, [ $type ] );
237 switch ( $type ) {
238 case 'error':
239 return (array)$result->getResultData( [ 'errors' ] );
240 case 'warning':
241 return (array)$result->getResultData( [ 'warnings' ] );
242 }
243 }
244
245 /**
246 * Turn wikitext into something resembling plaintext
247 * @since 1.29
248 * @param string $text
249 * @return string
250 */
251 public static function stripMarkup( $text ) {
252 // Turn semantic quoting tags to quotes
253 $ret = preg_replace( '!</?(var|kbd|samp|code)>!', '"', $text );
254
255 // Strip tags and decode.
256 $ret = html_entity_decode( strip_tags( $ret ), ENT_QUOTES | ENT_HTML5 );
257
258 return $ret;
259 }
260
261 /**
262 * Format a Message object for raw format
263 * @param MessageSpecifier $msg
264 * @return array
265 */
266 private function formatRawMessage( MessageSpecifier $msg ) {
267 $ret = [
268 'key' => $msg->getKey(),
269 'params' => $msg->getParams(),
270 ];
271 ApiResult::setIndexedTagName( $ret['params'], 'param' );
272
273 // Transform Messages as parameters in the style of Message::fooParam().
274 foreach ( $ret['params'] as $i => $param ) {
275 if ( $param instanceof MessageSpecifier ) {
276 $ret['params'][$i] = [ 'message' => $this->formatRawMessage( $param ) ];
277 }
278 }
279 return $ret;
280 }
281
282 /**
283 * Format a message as an array
284 * @since 1.29
285 * @param ApiMessage|ApiRawMessage $msg
286 * @param string|null $format
287 * @return array
288 */
289 protected function formatMessageInternal( $msg, $format ) {
290 $value = [ 'code' => $msg->getApiCode() ];
291 switch ( $format ) {
292 case 'plaintext':
293 $value += [
294 'text' => self::stripMarkup( $msg->text() ),
295 ApiResult::META_CONTENT => 'text',
296 ];
297 break;
298
299 case 'wikitext':
300 $value += [
301 'text' => $msg->text(),
302 ApiResult::META_CONTENT => 'text',
303 ];
304 break;
305
306 case 'html':
307 $value += [
308 'html' => $msg->parse(),
309 ApiResult::META_CONTENT => 'html',
310 ];
311 break;
312
313 case 'raw':
314 $value += $this->formatRawMessage( $msg );
315 break;
316
317 case 'none':
318 break;
319 }
320 $data = $msg->getApiData();
321 if ( $data ) {
322 $value['data'] = $msg->getApiData() + [
323 ApiResult::META_TYPE => 'assoc',
324 ];
325 }
326 return $value;
327 }
328
329 /**
330 * Actually add the warning or error to the result
331 * @param string $tag 'warning' or 'error'
332 * @param string|null $modulePath
333 * @param ApiMessage|ApiRawMessage $msg
334 */
335 protected function addWarningOrError( $tag, $modulePath, $msg ) {
336 $value = $this->formatMessageInternal( $msg, $this->format );
337 if ( $modulePath !== null ) {
338 $value += [ 'module' => $modulePath ];
339 }
340
341 $path = [ $tag . 's' ];
342 $existing = $this->result->getResultData( $path );
343 if ( $existing === null || !in_array( $value, $existing ) ) {
344 $flags = ApiResult::NO_SIZE_CHECK;
345 if ( $existing === null ) {
346 $flags |= ApiResult::ADD_ON_TOP;
347 }
348 $this->result->addValue( $path, null, $value, $flags );
349 $this->result->addIndexedTagName( $path, $tag );
350 }
351 }
352 }
353
354 /**
355 * Format errors and warnings in the old style, for backwards compatibility.
356 * @since 1.25
357 * @deprecated Only for backwards compatibility, do not use
358 * @ingroup API
359 */
360 // @codingStandardsIgnoreStart Squiz.Classes.ValidClassName.NotCamelCaps
361 class ApiErrorFormatter_BackCompat extends ApiErrorFormatter {
362 // @codingStandardsIgnoreEnd
363
364 /**
365 * @param ApiResult $result Into which data will be added
366 */
367 public function __construct( ApiResult $result ) {
368 parent::__construct( $result, Language::factory( 'en' ), 'none', false );
369 }
370
371 public function arrayFromStatus( StatusValue $status, $type = 'error', $format = null ) {
372 if ( $status->isGood() || !$status->getErrors() ) {
373 return [];
374 }
375
376 $result = [];
377 foreach ( $status->getErrorsByType( $type ) as $error ) {
378 $msg = ApiMessage::create( $error );
379 $error = [
380 'message' => $msg->getKey(),
381 'params' => $msg->getParams(),
382 'code' => $msg->getApiCode(),
383 ] + $error;
384 ApiResult::setIndexedTagName( $error['params'], 'param' );
385 $result[] = $error;
386 }
387 ApiResult::setIndexedTagName( $result, $type );
388
389 return $result;
390 }
391
392 protected function formatMessageInternal( $msg, $format ) {
393 return [
394 'code' => $msg->getApiCode(),
395 'info' => $msg->text(),
396 ] + $msg->getApiData();
397 }
398
399 /**
400 * Format an exception as an array
401 * @since 1.29
402 * @param Exception|Throwable $exception
403 * @param array $options See parent::formatException(), plus
404 * - bc: (bool) Return only the string, not an array
405 * @return array|string
406 */
407 public function formatException( $exception, array $options = [] ) {
408 $ret = parent::formatException( $exception, $options );
409 return empty( $options['bc'] ) ? $ret : $ret['info'];
410 }
411
412 protected function addWarningOrError( $tag, $modulePath, $msg ) {
413 $value = self::stripMarkup( $msg->text() );
414
415 if ( $tag === 'error' ) {
416 // In BC mode, only one error
417 $existingError = $this->result->getResultData( [ 'error' ] );
418 if ( !is_array( $existingError ) ||
419 !isset( $existingError['code'] ) || !isset( $existingError['info'] )
420 ) {
421 $value = [
422 'code' => $msg->getApiCode(),
423 'info' => $value,
424 ] + $msg->getApiData();
425 $this->result->addValue( null, 'error', $value,
426 ApiResult::OVERRIDE | ApiResult::ADD_ON_TOP | ApiResult::NO_SIZE_CHECK );
427 }
428 } else {
429 if ( $modulePath === null ) {
430 $moduleName = 'unknown';
431 } else {
432 $i = strrpos( $modulePath, '+' );
433 $moduleName = $i === false ? $modulePath : substr( $modulePath, $i + 1 );
434 }
435
436 // Don't add duplicate warnings
437 $tag .= 's';
438 $path = [ $tag, $moduleName ];
439 $oldWarning = $this->result->getResultData( [ $tag, $moduleName, $tag ] );
440 if ( $oldWarning !== null ) {
441 $warnPos = strpos( $oldWarning, $value );
442 // If $value was found in $oldWarning, check if it starts at 0 or after "\n"
443 if ( $warnPos !== false && ( $warnPos === 0 || $oldWarning[$warnPos - 1] === "\n" ) ) {
444 // Check if $value is followed by "\n" or the end of the $oldWarning
445 $warnPos += strlen( $value );
446 if ( strlen( $oldWarning ) <= $warnPos || $oldWarning[$warnPos] === "\n" ) {
447 return;
448 }
449 }
450 // If there is a warning already, append it to the existing one
451 $value = "$oldWarning\n$value";
452 }
453 $this->result->addContentValue( $path, $tag, $value,
454 ApiResult::OVERRIDE | ApiResult::ADD_ON_TOP | ApiResult::NO_SIZE_CHECK );
455 }
456 }
457 }