MediaWiki REL1_29
LocalPasswordPrimaryAuthenticationProviderTest.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Auth;
4
6use Wikimedia\TestingAccessWrapper;
7
14
15 private $manager = null;
16 private $config = null;
17 private $validity = null;
18
28 protected function getProvider( $loginOnly = false ) {
29 if ( !$this->config ) {
30 $this->config = new \HashConfig();
31 }
32 $config = new \MultiConfig( [
33 $this->config,
34 MediaWikiServices::getInstance()->getMainConfig()
35 ] );
36
37 if ( !$this->manager ) {
38 $this->manager = new AuthManager( new \FauxRequest(), $config );
39 }
40 $this->validity = \Status::newGood();
41
42 $provider = $this->getMockBuilder( LocalPasswordPrimaryAuthenticationProvider::class )
43 ->setMethods( [ 'checkPasswordValidity' ] )
44 ->setConstructorArgs( [ [ 'loginOnly' => $loginOnly ] ] )
45 ->getMock();
46 $provider->expects( $this->any() )->method( 'checkPasswordValidity' )
47 ->will( $this->returnCallback( function () {
48 return $this->validity;
49 } ) );
50 $provider->setConfig( $config );
51 $provider->setLogger( new \Psr\Log\NullLogger() );
52 $provider->setManager( $this->manager );
53
54 return $provider;
55 }
56
57 public function testBasics() {
58 $user = $this->getMutableTestUser()->getUser();
59 $userName = $user->getName();
60 $lowerInitialUserName = mb_strtolower( $userName[0] ) . substr( $userName, 1 );
61
63
64 $this->assertSame(
66 $provider->accountCreationType()
67 );
68
69 $this->assertTrue( $provider->testUserExists( $userName ) );
70 $this->assertTrue( $provider->testUserExists( $lowerInitialUserName ) );
71 $this->assertFalse( $provider->testUserExists( 'DoesNotExist' ) );
72 $this->assertFalse( $provider->testUserExists( '<invalid>' ) );
73
74 $provider = new LocalPasswordPrimaryAuthenticationProvider( [ 'loginOnly' => true ] );
75
76 $this->assertSame(
78 $provider->accountCreationType()
79 );
80
81 $this->assertTrue( $provider->testUserExists( $userName ) );
82 $this->assertFalse( $provider->testUserExists( 'DoesNotExist' ) );
83
86 $req->username = '<invalid>';
87 $provider->providerChangeAuthenticationData( $req );
88 }
89
90 public function testTestUserCanAuthenticate() {
91 $user = $this->getMutableTestUser()->getUser();
92 $userName = $user->getName();
93 $dbw = wfGetDB( DB_MASTER );
94
95 $provider = $this->getProvider();
96
97 $this->assertFalse( $provider->testUserCanAuthenticate( '<invalid>' ) );
98
99 $this->assertFalse( $provider->testUserCanAuthenticate( 'DoesNotExist' ) );
100
101 $this->assertTrue( $provider->testUserCanAuthenticate( $userName ) );
102 $lowerInitialUserName = mb_strtolower( $userName[0] ) . substr( $userName, 1 );
103 $this->assertTrue( $provider->testUserCanAuthenticate( $lowerInitialUserName ) );
104
105 $dbw->update(
106 'user',
107 [ 'user_password' => \PasswordFactory::newInvalidPassword()->toString() ],
108 [ 'user_name' => $userName ]
109 );
110 $this->assertFalse( $provider->testUserCanAuthenticate( $userName ) );
111
112 // Really old format
113 $dbw->update(
114 'user',
115 [ 'user_password' => '0123456789abcdef0123456789abcdef' ],
116 [ 'user_name' => $userName ]
117 );
118 $this->assertTrue( $provider->testUserCanAuthenticate( $userName ) );
119 }
120
121 public function testSetPasswordResetFlag() {
122 // Set instance vars
123 $this->getProvider();
124
126 $this->setMwGlobals( [ 'wgPasswordExpireGrace' => 100 ] );
127
128 $this->config->set( 'PasswordExpireGrace', 100 );
129 $this->config->set( 'InvalidPasswordReset', true );
130
132 $provider->setConfig( $this->config );
133 $provider->setLogger( new \Psr\Log\NullLogger() );
134 $provider->setManager( $this->manager );
135 $providerPriv = TestingAccessWrapper::newFromObject( $provider );
136
137 $user = $this->getMutableTestUser()->getUser();
138 $userName = $user->getName();
139 $dbw = wfGetDB( DB_MASTER );
140 $row = $dbw->selectRow(
141 'user',
142 '*',
143 [ 'user_name' => $userName ],
144 __METHOD__
145 );
146
147 $this->manager->removeAuthenticationSessionData( null );
148 $row->user_password_expires = wfTimestamp( TS_MW, time() + 200 );
149 $providerPriv->setPasswordResetFlag( $userName, \Status::newGood(), $row );
150 $this->assertNull( $this->manager->getAuthenticationSessionData( 'reset-pass' ) );
151
152 $this->manager->removeAuthenticationSessionData( null );
153 $row->user_password_expires = wfTimestamp( TS_MW, time() - 200 );
154 $providerPriv->setPasswordResetFlag( $userName, \Status::newGood(), $row );
155 $ret = $this->manager->getAuthenticationSessionData( 'reset-pass' );
156 $this->assertNotNull( $ret );
157 $this->assertSame( 'resetpass-expired', $ret->msg->getKey() );
158 $this->assertTrue( $ret->hard );
159
160 $this->manager->removeAuthenticationSessionData( null );
161 $row->user_password_expires = wfTimestamp( TS_MW, time() - 1 );
162 $providerPriv->setPasswordResetFlag( $userName, \Status::newGood(), $row );
163 $ret = $this->manager->getAuthenticationSessionData( 'reset-pass' );
164 $this->assertNotNull( $ret );
165 $this->assertSame( 'resetpass-expired-soft', $ret->msg->getKey() );
166 $this->assertFalse( $ret->hard );
167
168 $this->manager->removeAuthenticationSessionData( null );
169 $row->user_password_expires = null;
170 $status = \Status::newGood();
171 $status->error( 'testing' );
172 $providerPriv->setPasswordResetFlag( $userName, $status, $row );
173 $ret = $this->manager->getAuthenticationSessionData( 'reset-pass' );
174 $this->assertNotNull( $ret );
175 $this->assertSame( 'resetpass-validity-soft', $ret->msg->getKey() );
176 $this->assertFalse( $ret->hard );
177 }
178
179 public function testAuthentication() {
180 $testUser = $this->getMutableTestUser();
181 $userName = $testUser->getUser()->getName();
182
183 $dbw = wfGetDB( DB_MASTER );
184 $id = \User::idFromName( $userName );
185
188 $reqs = [ PasswordAuthenticationRequest::class => $req ];
189
190 $provider = $this->getProvider();
191
192 // General failures
193 $this->assertEquals(
195 $provider->beginPrimaryAuthentication( [] )
196 );
197
198 $req->username = 'foo';
199 $req->password = null;
200 $this->assertEquals(
202 $provider->beginPrimaryAuthentication( $reqs )
203 );
204
205 $req->username = null;
206 $req->password = 'bar';
207 $this->assertEquals(
209 $provider->beginPrimaryAuthentication( $reqs )
210 );
211
212 $req->username = '<invalid>';
213 $req->password = 'WhoCares';
214 $ret = $provider->beginPrimaryAuthentication( $reqs );
215 $this->assertEquals(
217 $provider->beginPrimaryAuthentication( $reqs )
218 );
219
220 $req->username = 'DoesNotExist';
221 $req->password = 'DoesNotExist';
222 $ret = $provider->beginPrimaryAuthentication( $reqs );
223 $this->assertEquals(
225 $ret->status
226 );
227 $this->assertEquals(
228 'wrongpassword',
229 $ret->message->getKey()
230 );
231
232 // Validation failure
233 $req->username = $userName;
234 $req->password = $testUser->getPassword();
235 $this->validity = \Status::newFatal( 'arbitrary-failure' );
236 $ret = $provider->beginPrimaryAuthentication( $reqs );
237 $this->assertEquals(
239 $ret->status
240 );
241 $this->assertEquals(
242 'arbitrary-failure',
243 $ret->message->getKey()
244 );
245
246 // Successful auth
247 $this->manager->removeAuthenticationSessionData( null );
248 $this->validity = \Status::newGood();
249 $this->assertEquals(
251 $provider->beginPrimaryAuthentication( $reqs )
252 );
253 $this->assertNull( $this->manager->getAuthenticationSessionData( 'reset-pass' ) );
254
255 // Successful auth after normalizing name
256 $this->manager->removeAuthenticationSessionData( null );
257 $this->validity = \Status::newGood();
258 $req->username = mb_strtolower( $userName[0] ) . substr( $userName, 1 );
259 $this->assertEquals(
261 $provider->beginPrimaryAuthentication( $reqs )
262 );
263 $this->assertNull( $this->manager->getAuthenticationSessionData( 'reset-pass' ) );
264 $req->username = $userName;
265
266 // Successful auth with reset
267 $this->manager->removeAuthenticationSessionData( null );
268 $this->validity->error( 'arbitrary-warning' );
269 $this->assertEquals(
271 $provider->beginPrimaryAuthentication( $reqs )
272 );
273 $this->assertNotNull( $this->manager->getAuthenticationSessionData( 'reset-pass' ) );
274
275 // Wrong password
276 $this->validity = \Status::newGood();
277 $req->password = 'Wrong';
278 $ret = $provider->beginPrimaryAuthentication( $reqs );
279 $this->assertEquals(
281 $ret->status
282 );
283 $this->assertEquals(
284 'wrongpassword',
285 $ret->message->getKey()
286 );
287
288 // Correct handling of legacy encodings
289 $password = ':B:salt:' . md5( 'salt-' . md5( "\xe1\xe9\xed\xf3\xfa" ) );
290 $dbw->update( 'user', [ 'user_password' => $password ], [ 'user_name' => $userName ] );
291 $req->password = 'áéíóú';
292 $ret = $provider->beginPrimaryAuthentication( $reqs );
293 $this->assertEquals(
295 $ret->status
296 );
297 $this->assertEquals(
298 'wrongpassword',
299 $ret->message->getKey()
300 );
301
302 $this->config->set( 'LegacyEncoding', true );
303 $this->assertEquals(
305 $provider->beginPrimaryAuthentication( $reqs )
306 );
307
308 $req->password = 'áéíóú Wrong';
309 $ret = $provider->beginPrimaryAuthentication( $reqs );
310 $this->assertEquals(
312 $ret->status
313 );
314 $this->assertEquals(
315 'wrongpassword',
316 $ret->message->getKey()
317 );
318
319 // Correct handling of really old password hashes
320 $this->config->set( 'PasswordSalt', false );
321 $password = md5( 'FooBar' );
322 $dbw->update( 'user', [ 'user_password' => $password ], [ 'user_name' => $userName ] );
323 $req->password = 'FooBar';
324 $this->assertEquals(
326 $provider->beginPrimaryAuthentication( $reqs )
327 );
328
329 $this->config->set( 'PasswordSalt', true );
330 $password = md5( "$id-" . md5( 'FooBar' ) );
331 $dbw->update( 'user', [ 'user_password' => $password ], [ 'user_name' => $userName ] );
332 $req->password = 'FooBar';
333 $this->assertEquals(
335 $provider->beginPrimaryAuthentication( $reqs )
336 );
337 }
338
348 \StatusValue $expect1, \StatusValue $expect2
349 ) {
350 if ( $type === PasswordAuthenticationRequest::class ) {
351 $req = new $type();
352 } elseif ( $type === PasswordDomainAuthenticationRequest::class ) {
353 $req = new $type( [] );
354 } else {
355 $req = $this->createMock( $type );
356 }
358 $req->username = $user;
359 $req->password = 'NewPassword';
360 $req->retype = 'NewPassword';
361
362 $provider = $this->getProvider();
363 $this->validity = $validity;
364 $this->assertEquals( $expect1, $provider->providerAllowsAuthenticationDataChange( $req, false ) );
365 $this->assertEquals( $expect2, $provider->providerAllowsAuthenticationDataChange( $req, true ) );
366
367 $req->retype = 'BadRetype';
368 $this->assertEquals(
369 $expect1,
370 $provider->providerAllowsAuthenticationDataChange( $req, false )
371 );
372 $this->assertEquals(
373 $expect2->getValue() === 'ignored' ? $expect2 : \StatusValue::newFatal( 'badretype' ),
374 $provider->providerAllowsAuthenticationDataChange( $req, true )
375 );
376
377 $provider = $this->getProvider( true );
378 $this->assertEquals(
379 \StatusValue::newGood( 'ignored' ),
380 $provider->providerAllowsAuthenticationDataChange( $req, true ),
381 'loginOnly mode should claim to ignore all changes'
382 );
383 }
384
386 $err = \StatusValue::newGood();
387 $err->error( 'arbitrary-warning' );
388
389 return [
390 [ AuthenticationRequest::class, 'UTSysop', \Status::newGood(),
391 \StatusValue::newGood( 'ignored' ), \StatusValue::newGood( 'ignored' ) ],
392 [ PasswordAuthenticationRequest::class, 'UTSysop', \Status::newGood(),
393 \StatusValue::newGood(), \StatusValue::newGood() ],
394 [ PasswordAuthenticationRequest::class, 'uTSysop', \Status::newGood(),
395 \StatusValue::newGood(), \StatusValue::newGood() ],
396 [ PasswordAuthenticationRequest::class, 'UTSysop', \Status::wrap( $err ),
397 \StatusValue::newGood(), $err ],
398 [ PasswordAuthenticationRequest::class, 'UTSysop', \Status::newFatal( 'arbitrary-error' ),
399 \StatusValue::newGood(), \StatusValue::newFatal( 'arbitrary-error' ) ],
400 [ PasswordAuthenticationRequest::class, 'DoesNotExist', \Status::newGood(),
401 \StatusValue::newGood(), \StatusValue::newGood( 'ignored' ) ],
402 [ PasswordDomainAuthenticationRequest::class, 'UTSysop', \Status::newGood(),
403 \StatusValue::newGood( 'ignored' ), \StatusValue::newGood( 'ignored' ) ],
404 ];
405 }
406
415 $usernameTransform, $type, $loginOnly, $changed ) {
416 $testUser = $this->getMutableTestUser();
417 $user = $testUser->getUser()->getName();
418 if ( is_callable( $usernameTransform ) ) {
419 $user = call_user_func( $usernameTransform, $user );
420 }
421 $cuser = ucfirst( $user );
422 $oldpass = $testUser->getPassword();
423 $newpass = 'NewPassword';
424
425 $dbw = wfGetDB( DB_MASTER );
426 $oldExpiry = $dbw->selectField( 'user', 'user_password_expires', [ 'user_name' => $cuser ] );
427
428 $this->mergeMwGlobalArrayValue( 'wgHooks', [
429 'ResetPasswordExpiration' => [ function ( $user, &$expires ) {
430 $expires = '30001231235959';
431 } ]
432 ] );
433
434 $provider = $this->getProvider( $loginOnly );
435
436 // Sanity check
437 $loginReq = new PasswordAuthenticationRequest();
438 $loginReq->action = AuthManager::ACTION_LOGIN;
439 $loginReq->username = $user;
440 $loginReq->password = $oldpass;
441 $loginReqs = [ PasswordAuthenticationRequest::class => $loginReq ];
442 $this->assertEquals(
444 $provider->beginPrimaryAuthentication( $loginReqs ),
445 'Sanity check'
446 );
447
448 if ( $type === PasswordAuthenticationRequest::class ) {
449 $changeReq = new $type();
450 } else {
451 $changeReq = $this->createMock( $type );
452 }
453 $changeReq->action = AuthManager::ACTION_CHANGE;
454 $changeReq->username = $user;
455 $changeReq->password = $newpass;
456 $provider->providerChangeAuthenticationData( $changeReq );
457
458 if ( $loginOnly && $changed ) {
459 $old = 'fail';
460 $new = 'fail';
461 $expectExpiry = null;
462 } elseif ( $changed ) {
463 $old = 'fail';
464 $new = 'pass';
465 $expectExpiry = '30001231235959';
466 } else {
467 $old = 'pass';
468 $new = 'fail';
469 $expectExpiry = $oldExpiry;
470 }
471
472 $loginReq->password = $oldpass;
473 $ret = $provider->beginPrimaryAuthentication( $loginReqs );
474 if ( $old === 'pass' ) {
475 $this->assertEquals(
477 $ret,
478 'old password should pass'
479 );
480 } else {
481 $this->assertEquals(
483 $ret->status,
484 'old password should fail'
485 );
486 $this->assertEquals(
487 'wrongpassword',
488 $ret->message->getKey(),
489 'old password should fail'
490 );
491 }
492
493 $loginReq->password = $newpass;
494 $ret = $provider->beginPrimaryAuthentication( $loginReqs );
495 if ( $new === 'pass' ) {
496 $this->assertEquals(
498 $ret,
499 'new password should pass'
500 );
501 } else {
502 $this->assertEquals(
504 $ret->status,
505 'new password should fail'
506 );
507 $this->assertEquals(
508 'wrongpassword',
509 $ret->message->getKey(),
510 'new password should fail'
511 );
512 }
513
514 $this->assertSame(
515 $expectExpiry,
516 $dbw->selectField( 'user', 'user_password_expires', [ 'user_name' => $cuser ] )
517 );
518 }
519
521 return [
522 [ false, AuthenticationRequest::class, false, false ],
523 [ false, PasswordAuthenticationRequest::class, false, true ],
524 [ false, AuthenticationRequest::class, true, false ],
525 [ false, PasswordAuthenticationRequest::class, true, true ],
526 [ 'ucfirst', PasswordAuthenticationRequest::class, false, true ],
527 [ 'ucfirst', PasswordAuthenticationRequest::class, true, true ],
528 ];
529 }
530
531 public function testTestForAccountCreation() {
532 $user = \User::newFromName( 'foo' );
535 $req->username = 'Foo';
536 $req->password = 'Bar';
537 $req->retype = 'Bar';
538 $reqs = [ PasswordAuthenticationRequest::class => $req ];
539
540 $provider = $this->getProvider();
541 $this->assertEquals(
542 \StatusValue::newGood(),
543 $provider->testForAccountCreation( $user, $user, [] ),
544 'No password request'
545 );
546
547 $this->assertEquals(
548 \StatusValue::newGood(),
549 $provider->testForAccountCreation( $user, $user, $reqs ),
550 'Password request, validated'
551 );
552
553 $req->retype = 'Baz';
554 $this->assertEquals(
555 \StatusValue::newFatal( 'badretype' ),
556 $provider->testForAccountCreation( $user, $user, $reqs ),
557 'Password request, bad retype'
558 );
559 $req->retype = 'Bar';
560
561 $this->validity->error( 'arbitrary warning' );
562 $expect = \StatusValue::newGood();
563 $expect->error( 'arbitrary warning' );
564 $this->assertEquals(
565 $expect,
566 $provider->testForAccountCreation( $user, $user, $reqs ),
567 'Password request, not validated'
568 );
569
570 $provider = $this->getProvider( true );
571 $this->validity->error( 'arbitrary warning' );
572 $this->assertEquals(
573 \StatusValue::newGood(),
574 $provider->testForAccountCreation( $user, $user, $reqs ),
575 'Password request, not validated, loginOnly'
576 );
577 }
578
579 public function testAccountCreation() {
580 $user = \User::newFromName( 'Foo' );
581
584 $reqs = [ PasswordAuthenticationRequest::class => $req ];
585
586 $provider = $this->getProvider( true );
587 try {
588 $provider->beginPrimaryAccountCreation( $user, $user, [] );
589 $this->fail( 'Expected exception was not thrown' );
590 } catch ( \BadMethodCallException $ex ) {
591 $this->assertSame(
592 'Shouldn\'t call this when accountCreationType() is NONE', $ex->getMessage()
593 );
594 }
595
596 try {
597 $provider->finishAccountCreation( $user, $user, AuthenticationResponse::newPass() );
598 $this->fail( 'Expected exception was not thrown' );
599 } catch ( \BadMethodCallException $ex ) {
600 $this->assertSame(
601 'Shouldn\'t call this when accountCreationType() is NONE', $ex->getMessage()
602 );
603 }
604
605 $provider = $this->getProvider( false );
606
607 $this->assertEquals(
609 $provider->beginPrimaryAccountCreation( $user, $user, [] )
610 );
611
612 $req->username = 'foo';
613 $req->password = null;
614 $this->assertEquals(
616 $provider->beginPrimaryAccountCreation( $user, $user, $reqs )
617 );
618
619 $req->username = null;
620 $req->password = 'bar';
621 $this->assertEquals(
623 $provider->beginPrimaryAccountCreation( $user, $user, $reqs )
624 );
625
626 $req->username = 'foo';
627 $req->password = 'bar';
628
629 $expect = AuthenticationResponse::newPass( 'Foo' );
630 $expect->createRequest = clone( $req );
631 $expect->createRequest->username = 'Foo';
632 $this->assertEquals( $expect, $provider->beginPrimaryAccountCreation( $user, $user, $reqs ) );
633
634 // We have to cheat a bit to avoid having to add a new user to
635 // the database to test the actual setting of the password works right
636 $dbw = wfGetDB( DB_MASTER );
637
638 $user = \User::newFromName( 'UTSysop' );
639 $req->username = $user->getName();
640 $req->password = 'NewPassword';
641 $expect = AuthenticationResponse::newPass( 'UTSysop' );
642 $expect->createRequest = $req;
643
644 $res2 = $provider->beginPrimaryAccountCreation( $user, $user, $reqs );
645 $this->assertEquals( $expect, $res2, 'Sanity check' );
646
647 $ret = $provider->beginPrimaryAuthentication( $reqs );
648 $this->assertEquals( AuthenticationResponse::FAIL, $ret->status, 'sanity check' );
649
650 $this->assertNull( $provider->finishAccountCreation( $user, $user, $res2 ) );
651 $ret = $provider->beginPrimaryAuthentication( $reqs );
652 $this->assertEquals( AuthenticationResponse::PASS, $ret->status, 'new password is set' );
653 }
654
655}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
WebRequest clone which takes values from a provided array.
static getMutableTestUser( $groups=[])
Convenience method for getting a mutable test user.
mergeMwGlobalArrayValue( $name, $values)
Merges the given values into a MW global array variable.
setMwGlobals( $pairs, $value=null)
This serves as the entry point to the authentication system.
const ACTION_CHANGE
Change a user's credentials.
const ACTION_LOGIN
Log in with an existing (not necessarily local) user.
const ACTION_CREATE
Create a new user.
const FAIL
Indicates that the authentication failed.
const PASS
Indicates that the authentication succeeded.
AuthManager Database MediaWiki\Auth\LocalPasswordPrimaryAuthenticationProvider.
testProviderAllowsAuthenticationDataChange( $type, $user, \Status $validity, \StatusValue $expect1, \StatusValue $expect2)
provideProviderAllowsAuthenticationDataChange
testProviderChangeAuthenticationData( $usernameTransform, $type, $loginOnly, $changed)
provideProviderChangeAuthenticationData
A primary authentication provider that uses the password field in the 'user' table.
This is a value object for authentication requests with a username and password.
MediaWikiServices is the service locator for the application scope of MediaWiki.
static getInstance()
Returns the global default instance of the top level service locator.
static newInvalidPassword()
Create an InvalidPassword.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:40
this hook is for auditing only $req
Definition hooks.txt:990
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:249
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:1967
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition hooks.txt:2604
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:1966
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
processing should stop and the error should be shown to the user * false
Definition hooks.txt:189
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
const TYPE_NONE
Provider cannot create or link to accounts.
const DB_MASTER
Definition defines.php:26