50 parent::__construct();
53 throw new \InvalidArgumentException(
54 'Trying to wrap AuthManagerAuthPlugin in AuthPluginPrimaryAuthenticationProvider ' .
59 $need = count(
$auth->domainList() ) > 1
60 ? PasswordDomainAuthenticationRequest::class
61 : PasswordAuthenticationRequest::class;
65 throw new \InvalidArgumentException(
"$requestType is not a $need" );
71 $requestType === PasswordDomainAuthenticationRequest::class ||
72 is_subclass_of(
$requestType, PasswordDomainAuthenticationRequest::class )
74 $this->authoritative =
$auth->strict();
78 \Hooks::register(
'UserSaveSettings', [ $this,
'onUserSaveSettings' ] );
79 \Hooks::register(
'UserGroupsChanged', [ $this,
'onUserGroupsChanged' ] );
80 \Hooks::register(
'UserLoggedIn', [ $this,
'onUserLoggedIn' ] );
81 \Hooks::register(
'LocalUserCreated', [ $this,
'onLocalUserCreated' ] );
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 . implode(
' ', $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' );
339 $sv = \StatusValue::newGood();
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'
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!'
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Authentication plugin interface.
The Message class provides methods which fulfil two basic services:
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
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
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
this hook is for auditing only or null if authentication failed before getting that far $username
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
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
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))