MediaWiki  1.29.1
PasswordDomainAuthenticationRequest.php
Go to the documentation of this file.
1 <?php
22 namespace MediaWiki\Auth;
23 
31  private $domainList;
32 
34  public $domain = null;
35 
39  public function __construct( array $domainList ) {
40  $this->domainList = $domainList;
41  }
42 
43  public function getFieldInfo() {
44  $ret = parent::getFieldInfo();
45 
46  // Only add a domain field if we have the username field included
47  if ( isset( $ret['username'] ) ) {
48  $ret['domain'] = [
49  'type' => 'select',
50  'options' => [],
51  'label' => wfMessage( 'yourdomainname' ),
52  'help' => wfMessage( 'authmanager-domain-help' ),
53  ];
54  foreach ( $this->domainList as $domain ) {
55  $ret['domain']['options'][$domain] = new \RawMessage( '$1', [ $domain ] );
56  }
57  }
58 
59  return $ret;
60  }
61 
62  public function describeCredentials() {
63  return [
64  'provider' => wfMessage( 'authmanager-provider-password-domain' ),
65  'account' => wfMessage(
66  'authmanager-account-password-domain', [ $this->username, $this->domain ]
67  ),
68  ];
69  }
70 
76  public static function __set_state( $data ) {
77  $ret = new static( $data['domainList'] );
78  foreach ( $data as $k => $v ) {
79  if ( $k !== 'domainList' ) {
80  $ret->$k = $v;
81  }
82  }
83  return $ret;
84  }
85 }
MediaWiki\Auth\PasswordDomainAuthenticationRequest\getFieldInfo
getFieldInfo()
Fetch input field info.
Definition: PasswordDomainAuthenticationRequest.php:43
MediaWiki\Auth\PasswordDomainAuthenticationRequest\describeCredentials
describeCredentials()
Describe the credentials represented by this request.
Definition: PasswordDomainAuthenticationRequest.php:62
MediaWiki\Auth\PasswordDomainAuthenticationRequest\__construct
__construct(array $domainList)
Definition: PasswordDomainAuthenticationRequest.php:39
MediaWiki\Auth\PasswordDomainAuthenticationRequest
This is a value object for authentication requests with a username, password, and domain.
Definition: PasswordDomainAuthenticationRequest.php:29
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
MediaWiki\Auth\PasswordDomainAuthenticationRequest\$domain
string $domain
Domain.
Definition: PasswordDomainAuthenticationRequest.php:34
MediaWiki\Auth\PasswordAuthenticationRequest
This is a value object for authentication requests with a username and password.
Definition: PasswordAuthenticationRequest.php:29
MediaWiki\Auth\PasswordDomainAuthenticationRequest\$domainList
string[] $domainList
Domains available.
Definition: PasswordDomainAuthenticationRequest.php:31
MediaWiki\Auth\PasswordDomainAuthenticationRequest\__set_state
static __set_state( $data)
Definition: PasswordDomainAuthenticationRequest.php:76
$ret
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:1956
as
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
Definition: distributors.txt:9
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
MediaWiki\Auth
Definition: AbstractAuthenticationProvider.php:22
array
the array() calling protocol came about after MediaWiki 1.4rc1.