MediaWiki REL1_31
ApiMainTest.php
Go to the documentation of this file.
1<?php
2
3use Wikimedia\TestingAccessWrapper;
4
12class ApiMainTest extends ApiTestCase {
13
17 public function testApi() {
18 $api = new ApiMain(
19 new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] )
20 );
21 $api->execute();
22 $data = $api->getResult()->getResultData();
23 $this->assertInternalType( 'array', $data );
24 $this->assertArrayHasKey( 'query', $data );
25 }
26
27 public function testApiNoParam() {
28 $api = new ApiMain();
29 $api->execute();
30 $data = $api->getResult()->getResultData();
31 $this->assertInternalType( 'array', $data );
32 }
33
47 private function getNonInternalApiMain( array $requestData, array $headers = [] ) {
48 $req = $this->getMockBuilder( WebRequest::class )
49 ->setMethods( [ 'response', 'getRawIP' ] )
50 ->getMock();
51 $response = new FauxResponse();
52 $req->method( 'response' )->willReturn( $response );
53 $req->method( 'getRawIP' )->willReturn( '127.0.0.1' );
54
55 $wrapper = TestingAccessWrapper::newFromObject( $req );
56 $wrapper->data = $requestData;
57 if ( $headers ) {
58 $wrapper->headers = $headers;
59 }
60
61 return new ApiMain( $req );
62 }
63
64 public function testUselang() {
66
67 $api = $this->getNonInternalApiMain( [
68 'action' => 'query',
69 'meta' => 'siteinfo',
70 'uselang' => 'fr',
71 ] );
72
73 ob_start();
74 $api->execute();
75 ob_end_clean();
76
77 $this->assertSame( 'fr', $wgLang->getCode() );
78 }
79
81 $logFile = $this->getNewTempFile();
82
83 $this->mergeMwGlobalArrayValue( '_COOKIE', [ 'forceHTTPS' => '1' ] );
84 $logger = new TestLogger( true );
85 $this->setLogger( 'cors', $logger );
86
87 $api = $this->getNonInternalApiMain( [
88 'action' => 'query',
89 'meta' => 'siteinfo',
90 // For some reason multiple origins (which are not allowed in the
91 // WHATWG Fetch spec that supersedes the RFC) are always considered to
92 // be problematic.
93 ], [ 'ORIGIN' => 'https://www.example.com https://www.com.example' ] );
94
95 $this->assertSame(
96 [ [ Psr\Log\LogLevel::WARNING, 'Non-whitelisted CORS request with session cookies' ] ],
97 $logger->getBuffer()
98 );
99 }
100
101 public function testSuppressedLogin() {
103 $origUser = $wgUser;
104
105 $api = $this->getNonInternalApiMain( [
106 'action' => 'query',
107 'meta' => 'siteinfo',
108 'origin' => '*',
109 ] );
110
111 ob_start();
112 $api->execute();
113 ob_end_clean();
114
115 $this->assertNotSame( $origUser, $wgUser );
116 $this->assertSame( 'true', $api->getContext()->getRequest()->response()
117 ->getHeader( 'MediaWiki-Login-Suppressed' ) );
118 }
119
120 public function testSetContinuationManager() {
121 $api = new ApiMain();
122 $manager = $this->createMock( ApiContinuationManager::class );
123 $api->setContinuationManager( $manager );
124 $this->assertTrue( true, 'No exception' );
125 return [ $api, $manager ];
126 }
127
132 $this->setExpectedException( UnexpectedValueException::class,
133 'ApiMain::setContinuationManager: tried to set manager from ' .
134 'when a manager is already set from ' );
135
136 list( $api, $manager ) = $args;
137 $api->setContinuationManager( $manager );
138 }
139
141 $api = new ApiMain();
142 $api->setCacheMode( 'unrecognized' );
143 $this->assertSame(
144 'private',
145 TestingAccessWrapper::newFromObject( $api )->mCacheMode,
146 'Unrecognized params must be silently ignored'
147 );
148 }
149
150 public function testSetCacheModePrivateWiki() {
151 $this->setGroupPermissions( '*', 'read', false );
152
153 $wrappedApi = TestingAccessWrapper::newFromObject( new ApiMain() );
154 $wrappedApi->setCacheMode( 'public' );
155 $this->assertSame( 'private', $wrappedApi->mCacheMode );
156 $wrappedApi->setCacheMode( 'anon-public-user-private' );
157 $this->assertSame( 'private', $wrappedApi->mCacheMode );
158 }
159
161 $req = new FauxRequest( [
162 'action' => 'query',
163 'meta' => 'siteinfo',
164 'requestid' => '123456',
165 ] );
166 $api = new ApiMain( $req );
167 $api->execute();
168 $this->assertSame( '123456', $api->getResult()->getResultData()['requestid'] );
169 }
170
172 $req = new FauxRequest( [
173 'action' => 'query',
174 'meta' => 'siteinfo',
175 'curtimestamp' => '',
176 ] );
177 $api = new ApiMain( $req );
178 $api->execute();
179 $timestamp = $api->getResult()->getResultData()['curtimestamp'];
180 $this->assertLessThanOrEqual( 1, abs( strtotime( $timestamp ) - time() ) );
181 }
182
184 $req = new FauxRequest( [
185 'action' => 'query',
186 'meta' => 'siteinfo',
187 // errorlang is ignored if errorformat is not specified
188 'errorformat' => 'plaintext',
189 'uselang' => 'FR',
190 'errorlang' => 'ja',
191 'responselanginfo' => '',
192 ] );
193 $api = new ApiMain( $req );
194 $api->execute();
195 $data = $api->getResult()->getResultData();
196 $this->assertSame( 'fr', $data['uselang'] );
197 $this->assertSame( 'ja', $data['errorlang'] );
198 }
199
200 public function testSetupModuleUnknown() {
201 $this->setExpectedException( ApiUsageException::class,
202 'Unrecognized value for parameter "action": unknownaction.' );
203
204 $req = new FauxRequest( [ 'action' => 'unknownaction' ] );
205 $api = new ApiMain( $req );
206 $api->execute();
207 }
208
210 $this->setExpectedException( ApiUsageException::class,
211 'The "token" parameter must be set.' );
212
213 $req = new FauxRequest( [
214 'action' => 'edit',
215 'title' => 'New page',
216 'text' => 'Some text',
217 ] );
218 $api = new ApiMain( $req );
219 $api->execute();
220 }
221
223 $this->setExpectedException( ApiUsageException::class, 'Invalid CSRF token.' );
224
225 $req = new FauxRequest( [
226 'action' => 'edit',
227 'title' => 'New page',
228 'text' => 'Some text',
229 'token' => "This isn't a real token!",
230 ] );
231 $api = new ApiMain( $req );
232 $api->execute();
233 }
234
236 $this->setExpectedException( MWException::class,
237 "Module 'testmodule' must be updated for the new token handling. " .
238 "See documentation for ApiBase::needsToken for details." );
239
240 $mock = $this->createMock( ApiBase::class );
241 $mock->method( 'getModuleName' )->willReturn( 'testmodule' );
242 $mock->method( 'needsToken' )->willReturn( true );
243
244 $api = new ApiMain( new FauxRequest( [ 'action' => 'testmodule' ] ) );
245 $api->getModuleManager()->addModule( 'testmodule', 'action', get_class( $mock ),
246 function () use ( $mock ) {
247 return $mock;
248 }
249 );
250 $api->execute();
251 }
252
254 $this->setExpectedException( MWException::class,
255 "Module 'testmodule' must require POST to use tokens." );
256
257 $mock = $this->createMock( ApiBase::class );
258 $mock->method( 'getModuleName' )->willReturn( 'testmodule' );
259 $mock->method( 'needsToken' )->willReturn( 'csrf' );
260 $mock->method( 'mustBePosted' )->willReturn( false );
261
262 $api = new ApiMain( new FauxRequest( [ 'action' => 'testmodule' ] ) );
263 $api->getModuleManager()->addModule( 'testmodule', 'action', get_class( $mock ),
264 function () use ( $mock ) {
265 return $mock;
266 }
267 );
268 $api->execute();
269 }
270
271 public function testCheckMaxLagFailed() {
272 // It's hard to mock the LoadBalancer properly, so instead we'll mock
273 // checkMaxLag (which is tested directly in other tests below).
274 $req = new FauxRequest( [
275 'action' => 'query',
276 'meta' => 'siteinfo',
277 ] );
278
279 $mock = $this->getMockBuilder( ApiMain::class )
280 ->setConstructorArgs( [ $req ] )
281 ->setMethods( [ 'checkMaxLag' ] )
282 ->getMock();
283 $mock->method( 'checkMaxLag' )->willReturn( false );
284
285 $mock->execute();
286
287 $this->assertArrayNotHasKey( 'query', $mock->getResult()->getResultData() );
288 }
289
291 // The detailed checking of all cases of checkConditionalRequestHeaders
292 // is below in testCheckConditionalRequestHeaders(), which calls the
293 // method directly. Here we just check that it will stop execution if
294 // it does fail.
295 $now = time();
296
297 $this->setMwGlobals( 'wgCacheEpoch', '20030516000000' );
298
299 $mock = $this->createMock( ApiBase::class );
300 $mock->method( 'getModuleName' )->willReturn( 'testmodule' );
301 $mock->method( 'getConditionalRequestData' )
302 ->willReturn( wfTimestamp( TS_MW, $now - 3600 ) );
303 $mock->expects( $this->exactly( 0 ) )->method( 'execute' );
304
305 $req = new FauxRequest( [
306 'action' => 'testmodule',
307 ] );
308 $req->setHeader( 'If-Modified-Since', wfTimestamp( TS_RFC2822, $now - 3600 ) );
309 $req->setRequestURL( "http://localhost" );
310
311 $api = new ApiMain( $req );
312 $api->getModuleManager()->addModule( 'testmodule', 'action', get_class( $mock ),
313 function () use ( $mock ) {
314 return $mock;
315 }
316 );
317
318 $wrapper = TestingAccessWrapper::newFromObject( $api );
319 $wrapper->mInternalMode = false;
320
321 ob_start();
322 $api->execute();
323 ob_end_clean();
324 }
325
326 private function doTestCheckMaxLag( $lag ) {
327 $mockLB = $this->getMockBuilder( LoadBalancer::class )
328 ->disableOriginalConstructor()
329 ->setMethods( [ 'getMaxLag', '__destruct' ] )
330 ->getMock();
331 $mockLB->method( 'getMaxLag' )->willReturn( [ 'somehost', $lag ] );
332 $this->setService( 'DBLoadBalancer', $mockLB );
333
334 $req = new FauxRequest();
335
336 $api = new ApiMain( $req );
337 $wrapper = TestingAccessWrapper::newFromObject( $api );
338
339 $mockModule = $this->createMock( ApiBase::class );
340 $mockModule->method( 'shouldCheckMaxLag' )->willReturn( true );
341
342 try {
343 $wrapper->checkMaxLag( $mockModule, [ 'maxlag' => 3 ] );
344 } finally {
345 if ( $lag > 3 ) {
346 $this->assertSame( '5', $req->response()->getHeader( 'Retry-After' ) );
347 $this->assertSame( (string)$lag, $req->response()->getHeader( 'X-Database-Lag' ) );
348 }
349 }
350 }
351
352 public function testCheckMaxLagOkay() {
353 $this->doTestCheckMaxLag( 3 );
354
355 // No exception, we're happy
356 $this->assertTrue( true );
357 }
358
359 public function testCheckMaxLagExceeded() {
360 $this->setExpectedException( ApiUsageException::class,
361 'Waiting for a database server: 4 seconds lagged.' );
362
363 $this->setMwGlobals( 'wgShowHostnames', false );
364
365 $this->doTestCheckMaxLag( 4 );
366 }
367
369 $this->setExpectedException( ApiUsageException::class,
370 'Waiting for somehost: 4 seconds lagged.' );
371
372 $this->setMwGlobals( 'wgShowHostnames', true );
373
374 $this->doTestCheckMaxLag( 4 );
375 }
376
377 public static function provideAssert() {
378 return [
379 [ false, [], 'user', 'assertuserfailed' ],
380 [ true, [], 'user', false ],
381 [ true, [], 'bot', 'assertbotfailed' ],
382 [ true, [ 'bot' ], 'user', false ],
383 [ true, [ 'bot' ], 'bot', false ],
384 ];
385 }
386
396 public function testAssert( $registered, $rights, $assert, $error ) {
397 if ( $registered ) {
398 $user = $this->getMutableTestUser()->getUser();
399 $user->load(); // load before setting mRights
400 } else {
401 $user = new User();
402 }
403 $user->mRights = $rights;
404 try {
405 $this->doApiRequest( [
406 'action' => 'query',
407 'assert' => $assert,
408 ], null, null, $user );
409 $this->assertFalse( $error ); // That no error was expected
410 } catch ( ApiUsageException $e ) {
411 $this->assertTrue( self::apiExceptionHasCode( $e, $error ),
412 "Error '{$e->getMessage()}' matched expected '$error'" );
413 }
414 }
415
419 public function testAssertUser() {
420 $user = $this->getTestUser()->getUser();
421 $this->doApiRequest( [
422 'action' => 'query',
423 'assertuser' => $user->getName(),
424 ], null, null, $user );
425
426 try {
427 $this->doApiRequest( [
428 'action' => 'query',
429 'assertuser' => $user->getName() . 'X',
430 ], null, null, $user );
431 $this->fail( 'Expected exception not thrown' );
432 } catch ( ApiUsageException $e ) {
433 $this->assertTrue( self::apiExceptionHasCode( $e, 'assertnameduserfailed' ) );
434 }
435 }
436
441 $api = new ApiMain(
442 new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] )
443 );
444 $modules = $api->getModuleManager()->getNamesWithClasses();
445
446 foreach ( $modules as $name => $class ) {
447 $this->assertTrue(
448 class_exists( $class ),
449 'Class ' . $class . ' for api module ' . $name . ' does not exist (with exact case)'
450 );
451 }
452 }
453
466 $headers, $conditions, $status, $options = []
467 ) {
468 $request = new FauxRequest(
469 [ 'action' => 'query', 'meta' => 'siteinfo' ],
470 !empty( $options['post'] )
471 );
472 $request->setHeaders( $headers );
473 $request->response()->statusHeader( 200 ); // Why doesn't it default?
474
475 $context = $this->apiContext->newTestContext( $request, null );
476 $api = new ApiMain( $context );
477 $priv = TestingAccessWrapper::newFromObject( $api );
478 $priv->mInternalMode = false;
479
480 if ( !empty( $options['cdn'] ) ) {
481 $this->setMwGlobals( 'wgUseSquid', true );
482 }
483
484 // Can't do this in TestSetup.php because Setup.php will override it
485 $this->setMwGlobals( 'wgCacheEpoch', '20030516000000' );
486
487 $module = $this->getMockBuilder( ApiBase::class )
488 ->setConstructorArgs( [ $api, 'mock' ] )
489 ->setMethods( [ 'getConditionalRequestData' ] )
490 ->getMockForAbstractClass();
491 $module->expects( $this->any() )
492 ->method( 'getConditionalRequestData' )
493 ->will( $this->returnCallback( function ( $condition ) use ( $conditions ) {
494 return isset( $conditions[$condition] ) ? $conditions[$condition] : null;
495 } ) );
496
497 $ret = $priv->checkConditionalRequestHeaders( $module );
498
499 $this->assertSame( $status, $request->response()->getStatusCode() );
500 $this->assertSame( $status === 200, $ret );
501 }
502
503 public static function provideCheckConditionalRequestHeaders() {
505 $now = time();
506
507 return [
508 // Non-existing from module is ignored
509 'If-None-Match' => [ [ 'If-None-Match' => '"foo", "bar"' ], [], 200 ],
510 'If-Modified-Since' =>
511 [ [ 'If-Modified-Since' => 'Tue, 18 Aug 2015 00:00:00 GMT' ], [], 200 ],
512
513 // No headers
514 'No headers' => [ [], [ 'etag' => '""', 'last-modified' => '20150815000000', ], 200 ],
515
516 // Basic If-None-Match
517 'If-None-Match with matching etag' =>
518 [ [ 'If-None-Match' => '"foo", "bar"' ], [ 'etag' => '"bar"' ], 304 ],
519 'If-None-Match with non-matching etag' =>
520 [ [ 'If-None-Match' => '"foo", "bar"' ], [ 'etag' => '"baz"' ], 200 ],
521 'Strong If-None-Match with weak matching etag' =>
522 [ [ 'If-None-Match' => '"foo"' ], [ 'etag' => 'W/"foo"' ], 304 ],
523 'Weak If-None-Match with strong matching etag' =>
524 [ [ 'If-None-Match' => 'W/"foo"' ], [ 'etag' => '"foo"' ], 304 ],
525 'Weak If-None-Match with weak matching etag' =>
526 [ [ 'If-None-Match' => 'W/"foo"' ], [ 'etag' => 'W/"foo"' ], 304 ],
527
528 // Pointless for GET, but supported
529 'If-None-Match: *' => [ [ 'If-None-Match' => '*' ], [], 304 ],
530
531 // Basic If-Modified-Since
532 'If-Modified-Since, modified one second earlier' =>
533 [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
534 [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 304 ],
535 'If-Modified-Since, modified now' =>
536 [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
537 [ 'last-modified' => wfTimestamp( TS_MW, $now ) ], 304 ],
538 'If-Modified-Since, modified one second later' =>
539 [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
540 [ 'last-modified' => wfTimestamp( TS_MW, $now + 1 ) ], 200 ],
541
542 // If-Modified-Since ignored when If-None-Match is given too
543 'Non-matching If-None-Match and matching If-Modified-Since' =>
544 [ [ 'If-None-Match' => '""',
545 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
546 [ 'etag' => '"x"', 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 200 ],
547 'Non-matching If-None-Match and matching If-Modified-Since with no ETag' =>
548 [
549 [
550 'If-None-Match' => '""',
551 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now )
552 ],
553 [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ],
554 304
555 ],
556
557 // Ignored for POST
558 'Matching If-None-Match with POST' =>
559 [ [ 'If-None-Match' => '"foo", "bar"' ], [ 'etag' => '"bar"' ], 200,
560 [ 'post' => true ] ],
561 'Matching If-Modified-Since with POST' =>
562 [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
563 [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 200,
564 [ 'post' => true ] ],
565
566 // Other date formats allowed by the RFC
567 'If-Modified-Since with alternate date format 1' =>
568 [ [ 'If-Modified-Since' => gmdate( 'l, d-M-y H:i:s', $now ) . ' GMT' ],
569 [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 304 ],
570 'If-Modified-Since with alternate date format 2' =>
571 [ [ 'If-Modified-Since' => gmdate( 'D M j H:i:s Y', $now ) ],
572 [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 304 ],
573
574 // Old browser extension to HTTP/1.0
575 'If-Modified-Since with length' =>
576 [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) . '; length=123' ],
577 [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 304 ],
578
579 // Invalid date formats should be ignored
580 'If-Modified-Since with invalid date format' =>
581 [ [ 'If-Modified-Since' => gmdate( 'Y-m-d H:i:s', $now ) . ' GMT' ],
582 [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 200 ],
583 'If-Modified-Since with entirely unparseable date' =>
584 [ [ 'If-Modified-Since' => 'a potato' ],
585 [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 200 ],
586
587 // Anything before $wgSquidMaxage seconds ago should be considered
588 // expired.
589 'If-Modified-Since with CDN post-expiry' =>
590 [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now - $wgSquidMaxage * 2 ) ],
591 [ 'last-modified' => wfTimestamp( TS_MW, $now - $wgSquidMaxage * 3 ) ],
592 200, [ 'cdn' => true ] ],
593 'If-Modified-Since with CDN pre-expiry' =>
594 [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now - $wgSquidMaxage / 2 ) ],
595 [ 'last-modified' => wfTimestamp( TS_MW, $now - $wgSquidMaxage * 3 ) ],
596 304, [ 'cdn' => true ] ],
597 ];
598 }
599
609 $conditions, $headers, $isError = false, $post = false
610 ) {
611 $request = new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ], $post );
612 $response = $request->response();
613
614 $api = new ApiMain( $request );
615 $priv = TestingAccessWrapper::newFromObject( $api );
616 $priv->mInternalMode = false;
617
618 $module = $this->getMockBuilder( ApiBase::class )
619 ->setConstructorArgs( [ $api, 'mock' ] )
620 ->setMethods( [ 'getConditionalRequestData' ] )
621 ->getMockForAbstractClass();
622 $module->expects( $this->any() )
623 ->method( 'getConditionalRequestData' )
624 ->will( $this->returnCallback( function ( $condition ) use ( $conditions ) {
625 return isset( $conditions[$condition] ) ? $conditions[$condition] : null;
626 } ) );
627 $priv->mModule = $module;
628
629 $priv->sendCacheHeaders( $isError );
630
631 foreach ( [ 'Last-Modified', 'ETag' ] as $header ) {
632 $this->assertEquals(
633 isset( $headers[$header] ) ? $headers[$header] : null,
634 $response->getHeader( $header ),
635 $header
636 );
637 }
638 }
639
640 public static function provideConditionalRequestHeadersOutput() {
641 return [
642 [
643 [],
644 []
645 ],
646 [
647 [ 'etag' => '"foo"' ],
648 [ 'ETag' => '"foo"' ]
649 ],
650 [
651 [ 'last-modified' => '20150818000102' ],
652 [ 'Last-Modified' => 'Tue, 18 Aug 2015 00:01:02 GMT' ]
653 ],
654 [
655 [ 'etag' => '"foo"', 'last-modified' => '20150818000102' ],
656 [ 'ETag' => '"foo"', 'Last-Modified' => 'Tue, 18 Aug 2015 00:01:02 GMT' ]
657 ],
658 [
659 [ 'etag' => '"foo"', 'last-modified' => '20150818000102' ],
660 [],
661 true,
662 ],
663 [
664 [ 'etag' => '"foo"', 'last-modified' => '20150818000102' ],
665 [],
666 false,
667 true,
668 ],
669 ];
670 }
671
673 $this->setExpectedException( ApiUsageException::class,
674 'You need read permission to use this module.' );
675
676 $this->setGroupPermissions( '*', 'read', false );
677
678 $main = new ApiMain( new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] ) );
679 $main->execute();
680 }
681
683 $this->setExpectedException( ApiUsageException::class,
684 'Editing of this wiki through the API is disabled. Make sure the ' .
685 '"$wgEnableWriteAPI=true;" statement is included in the wiki\'s ' .
686 '"LocalSettings.php" file.' );
687 $main = new ApiMain( new FauxRequest( [
688 'action' => 'edit',
689 'title' => 'Some page',
690 'text' => 'Some text',
691 'token' => '+\\',
692 ] ) );
693 $main->execute();
694 }
695
697 $this->setExpectedException( ApiUsageException::class,
698 "You're not allowed to edit this wiki through the API." );
699 $this->setGroupPermissions( '*', 'writeapi', false );
700
701 $main = new ApiMain( new FauxRequest( [
702 'action' => 'edit',
703 'title' => 'Some page',
704 'text' => 'Some text',
705 'token' => '+\\',
706 ] ), /* enableWrite = */ true );
707 $main->execute();
708 }
709
711 $this->setExpectedException( ApiUsageException::class,
712 'The "Promise-Non-Write-API-Action" HTTP header cannot be sent ' .
713 'to write-mode API modules.' );
714
715 $req = new FauxRequest( [
716 'action' => 'edit',
717 'title' => 'Some page',
718 'text' => 'Some text',
719 'token' => '+\\',
720 ] );
721 $req->setHeaders( [ 'Promise-Non-Write-API-Action' => '1' ] );
722 $main = new ApiMain( $req, /* enableWrite = */ true );
723 $main->execute();
724 }
725
727 $this->setExpectedException( ApiUsageException::class, 'Main Page' );
728
729 $this->setTemporaryHook( 'ApiCheckCanExecute', function ( $unused1, $unused2, &$message ) {
730 $message = 'mainpage';
731 return false;
732 } );
733
734 $main = new ApiMain( new FauxRequest( [
735 'action' => 'edit',
736 'title' => 'Some page',
737 'text' => 'Some text',
738 'token' => '+\\',
739 ] ), /* enableWrite = */ true );
740 $main->execute();
741 }
742
743 public function testGetValUnsupportedArray() {
744 $main = new ApiMain( new FauxRequest( [
745 'action' => 'query',
746 'meta' => 'siteinfo',
747 'siprop' => [ 'general', 'namespaces' ],
748 ] ) );
749 $this->assertSame( 'myDefault', $main->getVal( 'siprop', 'myDefault' ) );
750 $main->execute();
751 $this->assertSame( 'Parameter "siprop" uses unsupported PHP array syntax.',
752 $main->getResult()->getResultData()['warnings']['main']['warnings'] );
753 }
754
755 public function testReportUnusedParams() {
756 $main = new ApiMain( new FauxRequest( [
757 'action' => 'query',
758 'meta' => 'siteinfo',
759 'unusedparam' => 'unusedval',
760 'anotherunusedparam' => 'anotherval',
761 ] ) );
762 $main->execute();
763 $this->assertSame( 'Unrecognized parameters: unusedparam, anotherunusedparam.',
764 $main->getResult()->getResultData()['warnings']['main']['warnings'] );
765 }
766
767 public function testLacksSameOriginSecurity() {
768 // Basic test
769 $main = new ApiMain( new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] ) );
770 $this->assertFalse( $main->lacksSameOriginSecurity(), 'Basic test, should have security' );
771
772 // JSONp
773 $main = new ApiMain(
774 new FauxRequest( [ 'action' => 'query', 'format' => 'xml', 'callback' => 'foo' ] )
775 );
776 $this->assertTrue( $main->lacksSameOriginSecurity(), 'JSONp, should lack security' );
777
778 // Header
779 $request = new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] );
780 $request->setHeader( 'TrEaT-As-UnTrUsTeD', '' ); // With falsey value!
781 $main = new ApiMain( $request );
782 $this->assertTrue( $main->lacksSameOriginSecurity(), 'Header supplied, should lack security' );
783
784 // Hook
785 $this->mergeMwGlobalArrayValue( 'wgHooks', [
786 'RequestHasSameOriginSecurity' => [ function () {
787 return false;
788 } ]
789 ] );
790 $main = new ApiMain( new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] ) );
791 $this->assertTrue( $main->lacksSameOriginSecurity(), 'Hook, should lack security' );
792 }
793
806 public function testApiErrorFormatterCreation( array $request, array $expect ) {
807 $context = new RequestContext();
808 $context->setRequest( new FauxRequest( $request ) );
809 $context->setLanguage( 'ru' );
810
811 $main = new ApiMain( $context );
812 $formatter = $main->getErrorFormatter();
813 $wrappedFormatter = TestingAccessWrapper::newFromObject( $formatter );
814
815 $this->assertSame( $expect['uselang'], $main->getLanguage()->getCode() );
816 $this->assertInstanceOf( $expect['class'], $formatter );
817 $this->assertSame( $expect['lang'], $formatter->getLanguage()->getCode() );
818 $this->assertSame( $expect['format'], $wrappedFormatter->format );
819 $this->assertSame( $expect['usedb'], $wrappedFormatter->useDB );
820 }
821
822 public static function provideApiErrorFormatterCreation() {
823 return [
824 'Default (BC)' => [ [], [
825 'uselang' => 'ru',
826 'class' => ApiErrorFormatter_BackCompat::class,
827 'lang' => 'en',
828 'format' => 'none',
829 'usedb' => false,
830 ] ],
831 'BC ignores fields' => [ [ 'errorlang' => 'de', 'errorsuselocal' => 1 ], [
832 'uselang' => 'ru',
833 'class' => ApiErrorFormatter_BackCompat::class,
834 'lang' => 'en',
835 'format' => 'none',
836 'usedb' => false,
837 ] ],
838 'Explicit BC' => [ [ 'errorformat' => 'bc' ], [
839 'uselang' => 'ru',
840 'class' => ApiErrorFormatter_BackCompat::class,
841 'lang' => 'en',
842 'format' => 'none',
843 'usedb' => false,
844 ] ],
845 'Basic' => [ [ 'errorformat' => 'wikitext' ], [
846 'uselang' => 'ru',
847 'class' => ApiErrorFormatter::class,
848 'lang' => 'ru',
849 'format' => 'wikitext',
850 'usedb' => false,
851 ] ],
852 'Follows uselang' => [ [ 'uselang' => 'fr', 'errorformat' => 'plaintext' ], [
853 'uselang' => 'fr',
854 'class' => ApiErrorFormatter::class,
855 'lang' => 'fr',
856 'format' => 'plaintext',
857 'usedb' => false,
858 ] ],
859 'Explicitly follows uselang' => [
860 [ 'uselang' => 'fr', 'errorlang' => 'uselang', 'errorformat' => 'plaintext' ],
861 [
862 'uselang' => 'fr',
863 'class' => ApiErrorFormatter::class,
864 'lang' => 'fr',
865 'format' => 'plaintext',
866 'usedb' => false,
867 ]
868 ],
869 'uselang=content' => [
870 [ 'uselang' => 'content', 'errorformat' => 'plaintext' ],
871 [
872 'uselang' => 'en',
873 'class' => ApiErrorFormatter::class,
874 'lang' => 'en',
875 'format' => 'plaintext',
876 'usedb' => false,
877 ]
878 ],
879 'errorlang=content' => [
880 [ 'errorlang' => 'content', 'errorformat' => 'plaintext' ],
881 [
882 'uselang' => 'ru',
883 'class' => ApiErrorFormatter::class,
884 'lang' => 'en',
885 'format' => 'plaintext',
886 'usedb' => false,
887 ]
888 ],
889 'Explicit parameters' => [
890 [ 'errorlang' => 'de', 'errorformat' => 'html', 'errorsuselocal' => 1 ],
891 [
892 'uselang' => 'ru',
893 'class' => ApiErrorFormatter::class,
894 'lang' => 'de',
895 'format' => 'html',
896 'usedb' => true,
897 ]
898 ],
899 'Explicit parameters override uselang' => [
900 [ 'errorlang' => 'de', 'uselang' => 'fr', 'errorformat' => 'raw' ],
901 [
902 'uselang' => 'fr',
903 'class' => ApiErrorFormatter::class,
904 'lang' => 'de',
905 'format' => 'raw',
906 'usedb' => false,
907 ]
908 ],
909 'Bogus language doesn\'t explode' => [
910 [ 'errorlang' => '<bogus1>', 'uselang' => '<bogus2>', 'errorformat' => 'none' ],
911 [
912 'uselang' => 'en',
913 'class' => ApiErrorFormatter::class,
914 'lang' => 'en',
915 'format' => 'none',
916 'usedb' => false,
917 ]
918 ],
919 'Bogus format doesn\'t explode' => [ [ 'errorformat' => 'bogus' ], [
920 'uselang' => 'ru',
921 'class' => ApiErrorFormatter_BackCompat::class,
922 'lang' => 'en',
923 'format' => 'none',
924 'usedb' => false,
925 ] ],
926 ];
927 }
928
935 public function testExceptionErrors( $error, $expectReturn, $expectResult ) {
936 $context = new RequestContext();
937 $context->setRequest( new FauxRequest( [ 'errorformat' => 'plaintext' ] ) );
938 $context->setLanguage( 'en' );
939 $context->setConfig( new MultiConfig( [
940 new HashConfig( [
941 'ShowHostnames' => true, 'ShowSQLErrors' => false,
942 'ShowExceptionDetails' => true, 'ShowDBErrorBacktrace' => true,
943 ] ),
944 $context->getConfig()
945 ] ) );
946
947 $main = new ApiMain( $context );
948 $main->addWarning( new RawMessage( 'existing warning' ), 'existing-warning' );
949 $main->addError( new RawMessage( 'existing error' ), 'existing-error' );
950
951 $ret = TestingAccessWrapper::newFromObject( $main )->substituteResultWithError( $error );
952 $this->assertSame( $expectReturn, $ret );
953
954 // PHPUnit sometimes adds some SplObjectStorage garbage to the arrays,
955 // so let's try ->assertEquals().
956 $this->assertEquals(
957 $expectResult,
958 $main->getResult()->getResultData( [], [ 'Strip' => 'all' ] )
959 );
960 }
961
962 // Not static so $this can be used
963 public function provideExceptionErrors() {
964 $reqId = WebRequest::getRequestId();
965 $doclink = wfExpandUrl( wfScript( 'api' ) );
966
967 $ex = new InvalidArgumentException( 'Random exception' );
968 $trace = wfMessage( 'api-exception-trace',
969 get_class( $ex ),
970 $ex->getFile(),
971 $ex->getLine(),
972 MWExceptionHandler::getRedactedTraceAsString( $ex )
973 )->inLanguage( 'en' )->useDatabase( false )->text();
974
975 $dbex = new DBQueryError(
976 $this->createMock( \Wikimedia\Rdbms\IDatabase::class ),
977 'error', 1234, 'SELECT 1', __METHOD__ );
978 $dbtrace = wfMessage( 'api-exception-trace',
979 get_class( $dbex ),
980 $dbex->getFile(),
981 $dbex->getLine(),
982 MWExceptionHandler::getRedactedTraceAsString( $dbex )
983 )->inLanguage( 'en' )->useDatabase( false )->text();
984
985 Wikimedia\suppressWarnings();
986 $usageEx = new UsageException( 'Usage exception!', 'ue', 0, [ 'foo' => 'bar' ] );
987 Wikimedia\restoreWarnings();
988
989 $apiEx1 = new ApiUsageException( null,
990 StatusValue::newFatal( new ApiRawMessage( 'An error', 'sv-error1' ) ) );
991 TestingAccessWrapper::newFromObject( $apiEx1 )->modulePath = 'foo+bar';
992 $apiEx1->getStatusValue()->warning( new ApiRawMessage( 'A warning', 'sv-warn1' ) );
993 $apiEx1->getStatusValue()->warning( new ApiRawMessage( 'Another warning', 'sv-warn2' ) );
994 $apiEx1->getStatusValue()->fatal( new ApiRawMessage( 'Another error', 'sv-error2' ) );
995
996 return [
997 [
998 $ex,
999 [ 'existing-error', 'internal_api_error_InvalidArgumentException' ],
1000 [
1001 'warnings' => [
1002 [ 'code' => 'existing-warning', 'text' => 'existing warning', 'module' => 'main' ],
1003 ],
1004 'errors' => [
1005 [ 'code' => 'existing-error', 'text' => 'existing error', 'module' => 'main' ],
1006 [
1007 'code' => 'internal_api_error_InvalidArgumentException',
1008 'text' => "[$reqId] Exception caught: Random exception",
1009 ]
1010 ],
1011 'trace' => $trace,
1012 'servedby' => wfHostname(),
1013 ]
1014 ],
1015 [
1016 $dbex,
1017 [ 'existing-error', 'internal_api_error_DBQueryError' ],
1018 [
1019 'warnings' => [
1020 [ 'code' => 'existing-warning', 'text' => 'existing warning', 'module' => 'main' ],
1021 ],
1022 'errors' => [
1023 [ 'code' => 'existing-error', 'text' => 'existing error', 'module' => 'main' ],
1024 [
1025 'code' => 'internal_api_error_DBQueryError',
1026 'text' => "[$reqId] Database query error.",
1027 ]
1028 ],
1029 'trace' => $dbtrace,
1030 'servedby' => wfHostname(),
1031 ]
1032 ],
1033 [
1034 $usageEx,
1035 [ 'existing-error', 'ue' ],
1036 [
1037 'warnings' => [
1038 [ 'code' => 'existing-warning', 'text' => 'existing warning', 'module' => 'main' ],
1039 ],
1040 'errors' => [
1041 [ 'code' => 'existing-error', 'text' => 'existing error', 'module' => 'main' ],
1042 [ 'code' => 'ue', 'text' => "Usage exception!", 'data' => [ 'foo' => 'bar' ] ]
1043 ],
1044 'docref' => "See $doclink for API usage. Subscribe to the mediawiki-api-announce mailing " .
1045 "list at &lt;https://lists.wikimedia.org/mailman/listinfo/mediawiki-api-announce&gt; " .
1046 "for notice of API deprecations and breaking changes.",
1047 'servedby' => wfHostname(),
1048 ]
1049 ],
1050 [
1051 $apiEx1,
1052 [ 'existing-error', 'sv-error1', 'sv-error2' ],
1053 [
1054 'warnings' => [
1055 [ 'code' => 'existing-warning', 'text' => 'existing warning', 'module' => 'main' ],
1056 [ 'code' => 'sv-warn1', 'text' => 'A warning', 'module' => 'foo+bar' ],
1057 [ 'code' => 'sv-warn2', 'text' => 'Another warning', 'module' => 'foo+bar' ],
1058 ],
1059 'errors' => [
1060 [ 'code' => 'existing-error', 'text' => 'existing error', 'module' => 'main' ],
1061 [ 'code' => 'sv-error1', 'text' => 'An error', 'module' => 'foo+bar' ],
1062 [ 'code' => 'sv-error2', 'text' => 'Another error', 'module' => 'foo+bar' ],
1063 ],
1064 'docref' => "See $doclink for API usage. Subscribe to the mediawiki-api-announce mailing " .
1065 "list at &lt;https://lists.wikimedia.org/mailman/listinfo/mediawiki-api-announce&gt; " .
1066 "for notice of API deprecations and breaking changes.",
1067 'servedby' => wfHostname(),
1068 ]
1069 ],
1070 ];
1071 }
1072}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgSquidMaxage
Cache TTL for the CDN sent as s-maxage (without ESI) or Surrogate-Control (with ESI).
wfHostname()
Fetch server name for use in error reporting etc.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
$wgUser
Definition Setup.php:902
if( $line===false) $args
Definition cdb.php:64
API Database medium.
testLacksSameOriginSecurity()
testCheckConditionalRequestHeadersFailed()
testGetValUnsupportedArray()
testSetupModuleNeedsTokenNeedntBePosted()
testClassNamesInModuleManager()
Test if all classes in the main module manager exists.
testApi()
Test that the API will accept a FauxRequest and execute.
testConditionalRequestHeadersOutput( $conditions, $headers, $isError=false, $post=false)
Test conditional headers output provideConditionalRequestHeadersOutput.
getNonInternalApiMain(array $requestData, array $headers=[])
ApiMain behaves differently if passed a FauxRequest (mInternalMode set to true) or a proper WebReques...
testCheckMaxLagExceeded()
doTestCheckMaxLag( $lag)
static provideApiErrorFormatterCreation()
static provideAssert()
testCheckExecutePermissionHookAbort()
testCheckMaxLagExceededWithHostNames()
testCheckExecutePermissionPromiseNonWrite()
static provideConditionalRequestHeadersOutput()
testApiErrorFormatterCreation(array $request, array $expect)
Test proper creation of the ApiErrorFormatter.
testSetCacheModeUnrecognized()
testAddRequestedFieldsResponseLangInfo()
testSetContinuationManager()
testAddRequestedFieldsRequestId()
testNonWhitelistedCorsWithCookies()
testCheckExecutePermissionsReadProhibited()
testCheckExecutePermissionWriteDisabled()
testAssert( $registered, $rights, $assert, $error)
Tests the assert={user|bot} functionality.
testSetupModuleNeedsTokenTrue()
testCheckExecutePermissionWriteApiProhibited()
testSetCacheModePrivateWiki()
testAddRequestedFieldsCurTimestamp()
testSetContinuationManagerTwice( $args)
@depends testSetContinuationManager
testSetupModuleInvalidTokenProvided()
testCheckConditionalRequestHeaders( $headers, $conditions, $status, $options=[])
Test HTTP precondition headers.
testAssertUser()
Tests the assertuser= functionality.
testSetupModuleNoTokenProvided()
static provideCheckConditionalRequestHeaders()
testExceptionErrors( $error, $expectReturn, $expectResult)
provideExceptionErrors
This is the main API class, used for both external and internal processing.
Definition ApiMain.php:43
Extension of RawMessage implementing IApiMessage.
doApiRequest(array $params, array $session=null, $appendModule=false, User $user=null, $tokenType=null)
Does the API request and returns the result.
Exception used to abort API execution with an error.
WebRequest clone which takes values from a provided array.
A Config instance which stores all settings as a member variable.
getNewTempFile()
Obtains a new temporary file name.
static getMutableTestUser( $groups=[])
Convenience method for getting a mutable test user.
setGroupPermissions( $newPerms, $newKey=null, $newValue=null)
Alters $wgGroupPermissions for the duration of the test.
setLogger( $channel, LoggerInterface $logger)
Sets the logger for a specified channel, for the duration of the test.
mergeMwGlobalArrayValue( $name, $values)
Merges the given values into a MW global array variable.
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
setService( $name, $object)
Sets a service, maintaining a stashed version of the previous service to be restored in tearDown.
static getTestUser( $groups=[])
Convenience method for getting an immutable test user.
setTemporaryHook( $hookName, $handler)
Create a temporary hook handler which will be reset by tearDown.
Provides a fallback sequence for Config objects.
Variant of the Message class.
Group all the pieces relevant to the context of a request into one instance.
A logger that may be configured to either buffer logs or to print them to the output where PHPUnit wi...
This exception will be thrown when dieUsage is called to stop module execution.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition design.txt:56
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
this hook is for auditing only $req
Definition hooks.txt:990
the array() calling protocol came about after MediaWiki 1.4rc1.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2806
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition hooks.txt:2811
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;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:2006
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2005
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1255
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
this hook is for auditing only $response
Definition hooks.txt:783
processing should stop and the error should be shown to the user * false
Definition hooks.txt:187
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:247
returning false will NOT prevent logging $e
Definition hooks.txt:2176
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:37
$header