50 parent::__construct();
53 throw new \InvalidArgumentException(
54 'Trying to wrap AuthManagerAuthPlugin in AuthPluginPrimaryAuthenticationProvider ' .
65 throw new \InvalidArgumentException(
"$requestType is not a $need" );
74 $this->authoritative = $auth->
strict();
90 if ( $this->hasDomain ) {
91 return new $class( $this->auth->domainList() );
102 if ( $this->hasDomain ) {
103 $domain =
$req->domain;
106 $domainList = $this->auth->domainList();
107 $domain = reset( $domainList );
111 if ( !$this->auth->validDomain( $domain ) ) {
112 $domain = $this->auth->getDomain();
114 $this->auth->setDomain( $domain );
124 $this->auth->updateExternalDB(
$user );
135 $this->auth->updateExternalDBGroups(
$user, $added, $removed );
145 $this->auth->updateUser( $hookUser );
146 if ( $hookUser !==
$user ) {
147 throw new \UnexpectedValueException(
148 get_class( $this->auth ) .
'::updateUser() tried to replace $user!'
160 if ( !$autocreated ) {
163 $this->auth->initUser( $hookUser, $autocreated );
164 if ( $hookUser !==
$user ) {
165 throw new \UnexpectedValueException(
166 get_class( $this->auth ) .
'::initUser() tried to replace $user!'
173 return parent::getUniqueId() .
':' . get_class( $this->auth );
185 return $this->auth->allowPasswordChange() ? [ $this->
makeAuthReq() ] : [];
194 if ( !
$req ||
$req->username === null ||
$req->password === null ||
195 ( $this->hasDomain &&
$req->domain === null )
211 $this->authoritative = $this->auth->strict() || $this->auth->strictUserAuth(
$username );
225 $curDomain = $this->auth->getDomain();
226 $domains = $this->auth->domainList() ?: [
'' ];
227 foreach ( $domains
as $domain ) {
228 $this->auth->setDomain( $domain );
230 $this->auth->setDomain( $curDomain );
234 $this->auth->setDomain( $curDomain );
245 if ( $this->auth->userExists(
$user->getName() ) ) {
246 return !$this->auth->getUserInstance(
$user )->isLocked();
260 $curDomain = $this->auth->getDomain();
261 $domains = $this->auth->domainList() ?: [
'' ];
263 foreach ( $domains
as $domain ) {
264 $this->auth->setDomain( $domain );
266 !$this->auth->setPassword(
$user, null )
268 $failed[] = $domain ===
'' ?
'(default)' : $domain;
271 $this->auth->setDomain( $curDomain );
273 throw new \UnexpectedValueException(
274 "AuthPlugin failed to reset password for $username in the following domains: "
275 . join(
' ', $failed )
290 $curDomain = $this->auth->getDomain();
291 $domains = $this->auth->domainList() ?: [
'' ];
292 foreach ( $domains
as $domain ) {
293 $this->auth->setDomain( $domain );
294 if ( $this->auth->userExists(
$username ) ) {
295 $this->auth->setDomain( $curDomain );
299 $this->auth->setDomain( $curDomain );
305 return $this->auth->allowPropChange(
$property );
311 if ( get_class( $req ) !== $this->requestType ) {
312 return \StatusValue::newGood(
'ignored' );
316 $curDomain = $this->auth->getDomain();
320 if ( !$this->auth->allowPasswordChange() ) {
321 return \StatusValue::newFatal(
'authmanager-authplugin-setpass-denied' );
325 return \StatusValue::newGood();
328 if ( $this->hasDomain ) {
329 if ( $req->domain === null ) {
330 return \StatusValue::newGood(
'ignored' );
332 if ( !$this->auth->validDomain( $req->domain ) ) {
333 return \StatusValue::newFatal(
'authmanager-authplugin-setpass-bad-domain' );
340 if ( $req->password !== null ) {
341 if ( $req->password !== $req->retype ) {
342 $sv->fatal(
'badretype' );
349 return \StatusValue::newGood(
'ignored' );
352 $this->auth->setDomain( $curDomain );
357 if ( get_class( $req ) === $this->requestType ) {
363 if ( $this->hasDomain && $req->domain === null ) {
369 if ( !$this->auth->setPassword(
$user, $req->password ) ) {
373 throw new \ErrorPageError(
374 'authmanager-authplugin-setpass-failed-title',
375 'authmanager-authplugin-setpass-failed-message'
383 return $this->auth->canCreateAccounts() ? self::TYPE_CREATE : self::TYPE_NONE;
387 return \StatusValue::newGood();
392 throw new \BadMethodCallException(
'Shouldn\'t call this when accountCreationType() is NONE' );
396 if ( !
$req ||
$req->username === null ||
$req->password === null ||
397 ( $this->hasDomain &&
$req->domain === null )
408 if ( $this->auth->addUser(
414 new \
Message(
'authmanager-authplugin-create-fail' )
422 $this->auth->initUser( $hookUser,
true );
423 if ( $hookUser !==
$user ) {
424 throw new \UnexpectedValueException(
425 get_class( $this->auth ) .
'::initUser() tried to replace $user!'
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
the array() calling protocol came about after MediaWiki 1.4rc1.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static getCanonicalName($name, $validate= 'valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid...
strict()
Return true to prevent logins that don't authenticate here from being checked against the local datab...
it s the revision text itself In either if gzip is the revision text is gzipped $flags
static register($name, $callback)
Attach an event handler to a given hook.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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
static newGood($value=null)
Factory function for good results.
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
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
domainList()
Get a list of domains (in HTMLForm options format) used.
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
this hook is for auditing only $req
this hook is for auditing only or null if authentication failed before getting that far $username
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