MediaWiki  1.29.2
ApiErrorFormatterTest.php
Go to the documentation of this file.
1 <?php
2 
3 use Wikimedia\TestingAccessWrapper;
4 
9 
13  public function testErrorFormatterBasics() {
14  $result = new ApiResult( 8388608 );
15  $formatter = new ApiErrorFormatter( $result, Language::factory( 'de' ), 'wikitext', false );
16  $this->assertSame( 'de', $formatter->getLanguage()->getCode() );
17 
18  $formatter->addMessagesFromStatus( null, Status::newGood() );
19  $this->assertSame(
20  [ ApiResult::META_TYPE => 'assoc' ],
21  $result->getResultData()
22  );
23 
24  $this->assertSame( [], $formatter->arrayFromStatus( Status::newGood() ) );
25 
26  $wrappedFormatter = TestingAccessWrapper::newFromObject( $formatter );
27  $this->assertSame(
28  'Blah "kbd" <X> 😊',
29  $wrappedFormatter->stripMarkup( 'Blah <kbd>kbd</kbd> <b>&lt;X&gt;</b> &#x1f60a;' ),
30  'stripMarkup'
31  );
32  }
33 
38  public function testErrorFormatter( $format, $lang, $useDB,
39  $expect1, $expect2, $expect3
40  ) {
41  $result = new ApiResult( 8388608 );
42  $formatter = new ApiErrorFormatter( $result, Language::factory( $lang ), $format, $useDB );
43 
44  // Add default type
45  $expect1[ApiResult::META_TYPE] = 'assoc';
46  $expect2[ApiResult::META_TYPE] = 'assoc';
47  $expect3[ApiResult::META_TYPE] = 'assoc';
48 
49  $formatter->addWarning( 'string', 'mainpage' );
50  $formatter->addError( 'err', 'mainpage' );
51  $this->assertEquals( $expect1, $result->getResultData(), 'Simple test' );
52 
53  $result->reset();
54  $formatter->addWarning( 'foo', 'mainpage' );
55  $formatter->addWarning( 'foo', 'mainpage' );
56  $formatter->addWarning( 'foo', [ 'parentheses', 'foobar' ] );
57  $msg1 = wfMessage( 'mainpage' );
58  $formatter->addWarning( 'message', $msg1 );
59  $msg2 = new ApiMessage( 'mainpage', 'overriddenCode', [ 'overriddenData' => true ] );
60  $formatter->addWarning( 'messageWithData', $msg2 );
61  $formatter->addError( 'errWithData', $msg2 );
62  $this->assertSame( $expect2, $result->getResultData(), 'Complex test' );
63 
64  $this->assertEquals(
65  $this->removeModuleTag( $expect2['warnings'][2] ),
66  $formatter->formatMessage( $msg1 ),
67  'formatMessage test 1'
68  );
69  $this->assertEquals(
70  $this->removeModuleTag( $expect2['warnings'][3] ),
71  $formatter->formatMessage( $msg2 ),
72  'formatMessage test 2'
73  );
74 
75  $result->reset();
77  $status->warning( 'mainpage' );
78  $status->warning( 'parentheses', 'foobar' );
79  $status->warning( $msg1 );
80  $status->warning( $msg2 );
81  $status->error( 'mainpage' );
82  $status->error( 'parentheses', 'foobar' );
83  $formatter->addMessagesFromStatus( 'status', $status );
84  $this->assertSame( $expect3, $result->getResultData(), 'Status test' );
85 
86  $this->assertSame(
87  array_map( [ $this, 'removeModuleTag' ], $expect3['errors'] ),
88  $formatter->arrayFromStatus( $status, 'error' ),
89  'arrayFromStatus test for error'
90  );
91  $this->assertSame(
92  array_map( [ $this, 'removeModuleTag' ], $expect3['warnings'] ),
93  $formatter->arrayFromStatus( $status, 'warning' ),
94  'arrayFromStatus test for warning'
95  );
96  }
97 
98  private function removeModuleTag( $s ) {
99  if ( is_array( $s ) ) {
100  unset( $s['module'] );
101  }
102  return $s;
103  }
104 
105  public static function provideErrorFormatter() {
106  $mainpageText = wfMessage( 'mainpage' )->inLanguage( 'de' )->useDatabase( false )->text();
107  $parensText = wfMessage( 'parentheses', 'foobar' )->inLanguage( 'de' )
108  ->useDatabase( false )->text();
109  $mainpageHTML = wfMessage( 'mainpage' )->inLanguage( 'en' )->parse();
110  $parensHTML = wfMessage( 'parentheses', 'foobar' )->inLanguage( 'en' )->parse();
113  $overriddenData = [ 'overriddenData' => true, ApiResult::META_TYPE => 'assoc' ];
114 
115  return [
116  $tmp = [ 'wikitext', 'de', false,
117  [
118  'errors' => [
119  [ 'code' => 'mainpage', 'text' => $mainpageText, 'module' => 'err', $C => 'text' ],
120  $I => 'error',
121  ],
122  'warnings' => [
123  [ 'code' => 'mainpage', 'text' => $mainpageText, 'module' => 'string', $C => 'text' ],
124  $I => 'warning',
125  ],
126  ],
127  [
128  'errors' => [
129  [ 'code' => 'overriddenCode', 'text' => $mainpageText,
130  'data' => $overriddenData, 'module' => 'errWithData', $C => 'text' ],
131  $I => 'error',
132  ],
133  'warnings' => [
134  [ 'code' => 'mainpage', 'text' => $mainpageText, 'module' => 'foo', $C => 'text' ],
135  [ 'code' => 'parentheses', 'text' => $parensText, 'module' => 'foo', $C => 'text' ],
136  [ 'code' => 'mainpage', 'text' => $mainpageText, 'module' => 'message', $C => 'text' ],
137  [ 'code' => 'overriddenCode', 'text' => $mainpageText,
138  'data' => $overriddenData, 'module' => 'messageWithData', $C => 'text' ],
139  $I => 'warning',
140  ],
141  ],
142  [
143  'errors' => [
144  [ 'code' => 'mainpage', 'text' => $mainpageText, 'module' => 'status', $C => 'text' ],
145  [ 'code' => 'parentheses', 'text' => $parensText, 'module' => 'status', $C => 'text' ],
146  $I => 'error',
147  ],
148  'warnings' => [
149  [ 'code' => 'mainpage', 'text' => $mainpageText, 'module' => 'status', $C => 'text' ],
150  [ 'code' => 'parentheses', 'text' => $parensText, 'module' => 'status', $C => 'text' ],
151  [ 'code' => 'overriddenCode', 'text' => $mainpageText,
152  'data' => $overriddenData, 'module' => 'status', $C => 'text' ],
153  $I => 'warning',
154  ],
155  ],
156  ],
157  [ 'plaintext' ] + $tmp, // For these messages, plaintext and wikitext are the same
158  [ 'html', 'en', true,
159  [
160  'errors' => [
161  [ 'code' => 'mainpage', 'html' => $mainpageHTML, 'module' => 'err', $C => 'html' ],
162  $I => 'error',
163  ],
164  'warnings' => [
165  [ 'code' => 'mainpage', 'html' => $mainpageHTML, 'module' => 'string', $C => 'html' ],
166  $I => 'warning',
167  ],
168  ],
169  [
170  'errors' => [
171  [ 'code' => 'overriddenCode', 'html' => $mainpageHTML,
172  'data' => $overriddenData, 'module' => 'errWithData', $C => 'html' ],
173  $I => 'error',
174  ],
175  'warnings' => [
176  [ 'code' => 'mainpage', 'html' => $mainpageHTML, 'module' => 'foo', $C => 'html' ],
177  [ 'code' => 'parentheses', 'html' => $parensHTML, 'module' => 'foo', $C => 'html' ],
178  [ 'code' => 'mainpage', 'html' => $mainpageHTML, 'module' => 'message', $C => 'html' ],
179  [ 'code' => 'overriddenCode', 'html' => $mainpageHTML,
180  'data' => $overriddenData, 'module' => 'messageWithData', $C => 'html' ],
181  $I => 'warning',
182  ],
183  ],
184  [
185  'errors' => [
186  [ 'code' => 'mainpage', 'html' => $mainpageHTML, 'module' => 'status', $C => 'html' ],
187  [ 'code' => 'parentheses', 'html' => $parensHTML, 'module' => 'status', $C => 'html' ],
188  $I => 'error',
189  ],
190  'warnings' => [
191  [ 'code' => 'mainpage', 'html' => $mainpageHTML, 'module' => 'status', $C => 'html' ],
192  [ 'code' => 'parentheses', 'html' => $parensHTML, 'module' => 'status', $C => 'html' ],
193  [ 'code' => 'overriddenCode', 'html' => $mainpageHTML,
194  'data' => $overriddenData, 'module' => 'status', $C => 'html' ],
195  $I => 'warning',
196  ],
197  ],
198  ],
199  [ 'raw', 'fr', true,
200  [
201  'errors' => [
202  [
203  'code' => 'mainpage',
204  'key' => 'mainpage',
205  'params' => [ $I => 'param' ],
206  'module' => 'err',
207  ],
208  $I => 'error',
209  ],
210  'warnings' => [
211  [
212  'code' => 'mainpage',
213  'key' => 'mainpage',
214  'params' => [ $I => 'param' ],
215  'module' => 'string',
216  ],
217  $I => 'warning',
218  ],
219  ],
220  [
221  'errors' => [
222  [
223  'code' => 'overriddenCode',
224  'key' => 'mainpage',
225  'params' => [ $I => 'param' ],
226  'data' => $overriddenData,
227  'module' => 'errWithData',
228  ],
229  $I => 'error',
230  ],
231  'warnings' => [
232  [
233  'code' => 'mainpage',
234  'key' => 'mainpage',
235  'params' => [ $I => 'param' ],
236  'module' => 'foo',
237  ],
238  [
239  'code' => 'parentheses',
240  'key' => 'parentheses',
241  'params' => [ 'foobar', $I => 'param' ],
242  'module' => 'foo',
243  ],
244  [
245  'code' => 'mainpage',
246  'key' => 'mainpage',
247  'params' => [ $I => 'param' ],
248  'module' => 'message',
249  ],
250  [
251  'code' => 'overriddenCode',
252  'key' => 'mainpage',
253  'params' => [ $I => 'param' ],
254  'data' => $overriddenData,
255  'module' => 'messageWithData',
256  ],
257  $I => 'warning',
258  ],
259  ],
260  [
261  'errors' => [
262  [
263  'code' => 'mainpage',
264  'key' => 'mainpage',
265  'params' => [ $I => 'param' ],
266  'module' => 'status',
267  ],
268  [
269  'code' => 'parentheses',
270  'key' => 'parentheses',
271  'params' => [ 'foobar', $I => 'param' ],
272  'module' => 'status',
273  ],
274  $I => 'error',
275  ],
276  'warnings' => [
277  [
278  'code' => 'mainpage',
279  'key' => 'mainpage',
280  'params' => [ $I => 'param' ],
281  'module' => 'status',
282  ],
283  [
284  'code' => 'parentheses',
285  'key' => 'parentheses',
286  'params' => [ 'foobar', $I => 'param' ],
287  'module' => 'status',
288  ],
289  [
290  'code' => 'overriddenCode',
291  'key' => 'mainpage',
292  'params' => [ $I => 'param' ],
293  'data' => $overriddenData,
294  'module' => 'status',
295  ],
296  $I => 'warning',
297  ],
298  ],
299  ],
300  [ 'none', 'fr', true,
301  [
302  'errors' => [
303  [ 'code' => 'mainpage', 'module' => 'err' ],
304  $I => 'error',
305  ],
306  'warnings' => [
307  [ 'code' => 'mainpage', 'module' => 'string' ],
308  $I => 'warning',
309  ],
310  ],
311  [
312  'errors' => [
313  [ 'code' => 'overriddenCode', 'data' => $overriddenData,
314  'module' => 'errWithData' ],
315  $I => 'error',
316  ],
317  'warnings' => [
318  [ 'code' => 'mainpage', 'module' => 'foo' ],
319  [ 'code' => 'parentheses', 'module' => 'foo' ],
320  [ 'code' => 'mainpage', 'module' => 'message' ],
321  [ 'code' => 'overriddenCode', 'data' => $overriddenData,
322  'module' => 'messageWithData' ],
323  $I => 'warning',
324  ],
325  ],
326  [
327  'errors' => [
328  [ 'code' => 'mainpage', 'module' => 'status' ],
329  [ 'code' => 'parentheses', 'module' => 'status' ],
330  $I => 'error',
331  ],
332  'warnings' => [
333  [ 'code' => 'mainpage', 'module' => 'status' ],
334  [ 'code' => 'parentheses', 'module' => 'status' ],
335  [ 'code' => 'overriddenCode', 'data' => $overriddenData, 'module' => 'status' ],
336  $I => 'warning',
337  ],
338  ],
339  ],
340  ];
341  }
342 
346  public function testErrorFormatterBC() {
347  $mainpagePlain = wfMessage( 'mainpage' )->useDatabase( false )->plain();
348  $parensPlain = wfMessage( 'parentheses', 'foobar' )->useDatabase( false )->plain();
349 
350  $result = new ApiResult( 8388608 );
351  $formatter = new ApiErrorFormatter_BackCompat( $result );
352 
353  $this->assertSame( 'en', $formatter->getLanguage()->getCode() );
354 
355  $this->assertSame( [], $formatter->arrayFromStatus( Status::newGood() ) );
356 
357  $formatter->addWarning( 'string', 'mainpage' );
358  $formatter->addWarning( 'raw',
359  new RawMessage( 'Blah <kbd>kbd</kbd> <b>&lt;X&gt;</b> &#x1f61e;' )
360  );
361  $formatter->addError( 'err', 'mainpage' );
362  $this->assertSame( [
363  'error' => [
364  'code' => 'mainpage',
365  'info' => $mainpagePlain,
366  ],
367  'warnings' => [
368  'raw' => [
369  'warnings' => 'Blah "kbd" <X> 😞',
370  ApiResult::META_CONTENT => 'warnings',
371  ],
372  'string' => [
373  'warnings' => $mainpagePlain,
374  ApiResult::META_CONTENT => 'warnings',
375  ],
376  ],
377  ApiResult::META_TYPE => 'assoc',
378  ], $result->getResultData(), 'Simple test' );
379 
380  $result->reset();
381  $formatter->addWarning( 'foo', 'mainpage' );
382  $formatter->addWarning( 'foo', 'mainpage' );
383  $formatter->addWarning( 'xxx+foo', [ 'parentheses', 'foobar' ] );
384  $msg1 = wfMessage( 'mainpage' );
385  $formatter->addWarning( 'message', $msg1 );
386  $msg2 = new ApiMessage( 'mainpage', 'overriddenCode', [ 'overriddenData' => true ] );
387  $formatter->addWarning( 'messageWithData', $msg2 );
388  $formatter->addError( 'errWithData', $msg2 );
389  $formatter->addWarning( null, 'mainpage' );
390  $this->assertSame( [
391  'error' => [
392  'code' => 'overriddenCode',
393  'info' => $mainpagePlain,
394  'overriddenData' => true,
395  ],
396  'warnings' => [
397  'unknown' => [
398  'warnings' => $mainpagePlain,
399  ApiResult::META_CONTENT => 'warnings',
400  ],
401  'messageWithData' => [
402  'warnings' => $mainpagePlain,
403  ApiResult::META_CONTENT => 'warnings',
404  ],
405  'message' => [
406  'warnings' => $mainpagePlain,
407  ApiResult::META_CONTENT => 'warnings',
408  ],
409  'foo' => [
410  'warnings' => "$mainpagePlain\n$parensPlain",
411  ApiResult::META_CONTENT => 'warnings',
412  ],
413  ],
414  ApiResult::META_TYPE => 'assoc',
415  ], $result->getResultData(), 'Complex test' );
416 
417  $this->assertSame(
418  [
419  'code' => 'mainpage',
420  'info' => 'Main Page',
421  ],
422  $formatter->formatMessage( $msg1 )
423  );
424  $this->assertSame(
425  [
426  'code' => 'overriddenCode',
427  'info' => 'Main Page',
428  'overriddenData' => true,
429  ],
430  $formatter->formatMessage( $msg2 )
431  );
432 
433  $result->reset();
435  $status->warning( 'mainpage' );
436  $status->warning( 'parentheses', 'foobar' );
437  $status->warning( $msg1 );
438  $status->warning( $msg2 );
439  $status->error( 'mainpage' );
440  $status->error( 'parentheses', 'foobar' );
441  $formatter->addMessagesFromStatus( 'status', $status );
442  $this->assertSame( [
443  'error' => [
444  'code' => 'mainpage',
445  'info' => $mainpagePlain,
446  ],
447  'warnings' => [
448  'status' => [
449  'warnings' => "$mainpagePlain\n$parensPlain",
450  ApiResult::META_CONTENT => 'warnings',
451  ],
452  ],
453  ApiResult::META_TYPE => 'assoc',
454  ], $result->getResultData(), 'Status test' );
455 
457  $this->assertSame(
458  [
459  [
460  'message' => 'mainpage',
461  'params' => [ $I => 'param' ],
462  'code' => 'mainpage',
463  'type' => 'error',
464  ],
465  [
466  'message' => 'parentheses',
467  'params' => [ 'foobar', $I => 'param' ],
468  'code' => 'parentheses',
469  'type' => 'error',
470  ],
471  $I => 'error',
472  ],
473  $formatter->arrayFromStatus( $status, 'error' ),
474  'arrayFromStatus test for error'
475  );
476  $this->assertSame(
477  [
478  [
479  'message' => 'mainpage',
480  'params' => [ $I => 'param' ],
481  'code' => 'mainpage',
482  'type' => 'warning',
483  ],
484  [
485  'message' => 'parentheses',
486  'params' => [ 'foobar', $I => 'param' ],
487  'code' => 'parentheses',
488  'type' => 'warning',
489  ],
490  [
491  'message' => 'mainpage',
492  'params' => [ $I => 'param' ],
493  'code' => 'mainpage',
494  'type' => 'warning',
495  ],
496  [
497  'message' => 'mainpage',
498  'params' => [ $I => 'param' ],
499  'code' => 'overriddenCode',
500  'type' => 'warning',
501  ],
502  $I => 'warning',
503  ],
504  $formatter->arrayFromStatus( $status, 'warning' ),
505  'arrayFromStatus test for warning'
506  );
507 
508  $result->reset();
509  $result->addValue( null, 'error', [ 'bogus' ] );
510  $formatter->addError( 'err', 'mainpage' );
511  $this->assertSame( [
512  'error' => [
513  'code' => 'mainpage',
514  'info' => $mainpagePlain,
515  ],
516  ApiResult::META_TYPE => 'assoc',
517  ], $result->getResultData(), 'Overwrites bogus "error" value with real error' );
518  }
519 
528  public function testGetMessageFromException( $exception, $options, $expect ) {
529  $result = new ApiResult( 8388608 );
530  $formatter = new ApiErrorFormatter( $result, Language::factory( 'en' ), 'html', false );
531 
532  $msg = $formatter->getMessageFromException( $exception, $options );
533  $this->assertInstanceOf( Message::class, $msg );
534  $this->assertInstanceOf( IApiMessage::class, $msg );
535  $this->assertSame( $expect, [
536  'text' => $msg->parse(),
537  'code' => $msg->getApiCode(),
538  'data' => $msg->getApiData(),
539  ] );
540 
541  $expectFormatted = $formatter->formatMessage( $msg );
542  $formatted = $formatter->formatException( $exception, $options );
543  $this->assertSame( $expectFormatted, $formatted );
544  }
545 
553  public function testGetMessageFromException_BC( $exception, $options, $expect ) {
554  $result = new ApiResult( 8388608 );
555  $formatter = new ApiErrorFormatter_BackCompat( $result );
556 
557  $msg = $formatter->getMessageFromException( $exception, $options );
558  $this->assertInstanceOf( Message::class, $msg );
559  $this->assertInstanceOf( IApiMessage::class, $msg );
560  $this->assertSame( $expect, [
561  'text' => $msg->parse(),
562  'code' => $msg->getApiCode(),
563  'data' => $msg->getApiData(),
564  ] );
565 
566  $expectFormatted = $formatter->formatMessage( $msg );
567  $formatted = $formatter->formatException( $exception, $options );
568  $this->assertSame( $expectFormatted, $formatted );
569  $formatted = $formatter->formatException( $exception, $options + [ 'bc' => true ] );
570  $this->assertSame( $expectFormatted['info'], $formatted );
571  }
572 
573  public static function provideGetMessageFromException() {
574  return [
575  'Normal exception' => [
576  new RuntimeException( '<b>Something broke!</b>' ),
577  [],
578  [
579  'text' => '&#60;b&#62;Something broke!&#60;/b&#62;',
580  'code' => 'internal_api_error_RuntimeException',
581  'data' => [],
582  ]
583  ],
584  'Normal exception, wrapped' => [
585  new RuntimeException( '<b>Something broke!</b>' ),
586  [ 'wrap' => 'parentheses', 'code' => 'some-code', 'data' => [ 'foo' => 'bar', 'baz' => 42 ] ],
587  [
588  'text' => '(&#60;b&#62;Something broke!&#60;/b&#62;)',
589  'code' => 'some-code',
590  'data' => [ 'foo' => 'bar', 'baz' => 42 ],
591  ]
592  ],
593  'UsageException' => [
594  new UsageException( '<b>Something broke!</b>', 'ue-code', 0, [ 'xxx' => 'yyy', 'baz' => 23 ] ),
595  [],
596  [
597  'text' => '&#60;b&#62;Something broke!&#60;/b&#62;',
598  'code' => 'ue-code',
599  'data' => [ 'xxx' => 'yyy', 'baz' => 23 ],
600  ]
601  ],
602  'UsageException, wrapped' => [
603  new UsageException( '<b>Something broke!</b>', 'ue-code', 0, [ 'xxx' => 'yyy', 'baz' => 23 ] ),
604  [ 'wrap' => 'parentheses', 'code' => 'some-code', 'data' => [ 'foo' => 'bar', 'baz' => 42 ] ],
605  [
606  'text' => '(&#60;b&#62;Something broke!&#60;/b&#62;)',
607  'code' => 'some-code',
608  'data' => [ 'xxx' => 'yyy', 'baz' => 42, 'foo' => 'bar' ],
609  ]
610  ],
611  'LocalizedException' => [
612  new LocalizedException( [ 'returnto', '<b>FooBar</b>' ] ),
613  [],
614  [
615  'text' => 'Return to <b>FooBar</b>.',
616  'code' => 'returnto',
617  'data' => [],
618  ]
619  ],
620  'LocalizedException, wrapped' => [
621  new LocalizedException( [ 'returnto', '<b>FooBar</b>' ] ),
622  [ 'wrap' => 'parentheses', 'code' => 'some-code', 'data' => [ 'foo' => 'bar', 'baz' => 42 ] ],
623  [
624  'text' => 'Return to <b>FooBar</b>.',
625  'code' => 'some-code',
626  'data' => [ 'foo' => 'bar', 'baz' => 42 ],
627  ]
628  ],
629  ];
630  }
631 
632 }
ApiErrorFormatter_BackCompat
Format errors and warnings in the old style, for backwards compatibility.
Definition: ApiErrorFormatter.php:362
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
ApiResult\META_TYPE
const META_TYPE
Key for the 'type' metadata item.
Definition: ApiResult.php:108
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1954
ApiErrorFormatterTest\testGetMessageFromException_BC
testGetMessageFromException_BC( $exception, $options, $expect)
provideGetMessageFromException ApiErrorFormatter_BackCompat::formatException
Definition: ApiErrorFormatterTest.php:553
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1049
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
ApiErrorFormatterTest\testGetMessageFromException
testGetMessageFromException( $exception, $options, $expect)
provideGetMessageFromException ApiErrorFormatter::getMessageFromException ApiErrorFormatter::formatEx...
Definition: ApiErrorFormatterTest.php:528
$s
$s
Definition: mergeMessageFileList.php:188
ApiErrorFormatterTest
API.
Definition: ApiErrorFormatterTest.php:8
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ApiMessage
Extension of Message implementing IApiMessage.
Definition: ApiMessage.php:198
ApiResult\META_INDEXED_TAG_NAME
const META_INDEXED_TAG_NAME
Key for the 'indexed tag name' metadata item.
Definition: ApiResult.php:70
ApiResult
This class represents the result of the API operations.
Definition: ApiResult.php:33
UsageException
This exception will be thrown when dieUsage is called to stop module execution.
Definition: ApiUsageException.php:28
ApiErrorFormatterTest\provideErrorFormatter
static provideErrorFormatter()
Definition: ApiErrorFormatterTest.php:105
ApiErrorFormatterTest\testErrorFormatterBasics
testErrorFormatterBasics()
ApiErrorFormatter.
Definition: ApiErrorFormatterTest.php:13
ApiErrorFormatterTest\provideGetMessageFromException
static provideGetMessageFromException()
Definition: ApiErrorFormatterTest.php:573
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:76
MediaWikiLangTestCase
Base class that store and restore the Language objects.
Definition: MediaWikiLangTestCase.php:6
ApiErrorFormatterTest\testErrorFormatterBC
testErrorFormatterBC()
ApiErrorFormatter_BackCompat.
Definition: ApiErrorFormatterTest.php:346
ApiErrorFormatterTest\testErrorFormatter
testErrorFormatter( $format, $lang, $useDB, $expect1, $expect2, $expect3)
ApiErrorFormatter provideErrorFormatter.
Definition: ApiErrorFormatterTest.php:38
ApiErrorFormatter
Formats errors and warnings for the API, and add them to the associated ApiResult.
Definition: ApiErrorFormatter.php:30
LocalizedException
Basic localized exception.
Definition: LocalizedException.php:42
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
ApiResult\META_CONTENT
const META_CONTENT
Key for the 'content' metadata item.
Definition: ApiResult.php:88
$options
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1049
ApiErrorFormatterTest\removeModuleTag
removeModuleTag( $s)
Definition: ApiErrorFormatterTest.php:98