MediaWiki  1.33.0
ConfirmLinkAuthenticationRequest.php
Go to the documentation of this file.
1 <?php
22 namespace MediaWiki\Auth;
23 
26  protected $linkRequests;
27 
29  public $confirmedLinkIDs = [];
30 
35  public function __construct( array $linkRequests ) {
36  if ( !$linkRequests ) {
37  throw new \InvalidArgumentException( '$linkRequests must not be empty' );
38  }
39  $this->linkRequests = $linkRequests;
40  }
41 
42  public function getFieldInfo() {
43  $options = [];
44  foreach ( $this->linkRequests as $req ) {
45  $description = $req->describeCredentials();
46  $options[$req->getUniqueId()] = wfMessage(
47  'authprovider-confirmlink-option',
48  $description['provider']->text(), $description['account']->text()
49  );
50  }
51  return [
52  'confirmedLinkIDs' => [
53  'type' => 'multiselect',
54  'options' => $options,
55  'label' => wfMessage( 'authprovider-confirmlink-request-label' ),
56  'help' => wfMessage( 'authprovider-confirmlink-request-help' ),
57  'optional' => true,
58  ]
59  ];
60  }
61 
62  public function getUniqueId() {
63  return parent::getUniqueId() . ':' . implode( '|', array_map( function ( $req ) {
64  return $req->getUniqueId();
65  }, $this->linkRequests ) );
66  }
67 
73  public static function __set_state( $data ) {
74  $ret = new static( $data['linkRequests'] );
75  foreach ( $data as $k => $v ) {
76  $ret->$k = $v;
77  }
78  return $ret;
79  }
80 }
$req
this hook is for auditing only $req
Definition: hooks.txt:979
MediaWiki\Auth\ConfirmLinkAuthenticationRequest\__construct
__construct(array $linkRequests)
Definition: ConfirmLinkAuthenticationRequest.php:35
MediaWiki\Auth\ConfirmLinkAuthenticationRequest\getFieldInfo
getFieldInfo()
Fetch input field info.
Definition: ConfirmLinkAuthenticationRequest.php:42
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
$data
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
Definition: generatePhpCharToUpperMappings.php:13
array
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))
MediaWiki\Auth\ConfirmLinkAuthenticationRequest\__set_state
static __set_state( $data)
Implementing this mainly for use from the unit tests.
Definition: ConfirmLinkAuthenticationRequest.php:73
$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:1985
MediaWiki\Auth\ConfirmLinkAuthenticationRequest\$linkRequests
AuthenticationRequest[] $linkRequests
Definition: ConfirmLinkAuthenticationRequest.php:26
text
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
Definition: All_system_messages.txt:1267
$options
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:1985
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
MediaWiki\Auth\ConfirmLinkAuthenticationRequest\$confirmedLinkIDs
string[] $confirmedLinkIDs
List of unique IDs of the confirmed accounts.
Definition: ConfirmLinkAuthenticationRequest.php:29
MediaWiki\Auth\ConfirmLinkAuthenticationRequest\getUniqueId
getUniqueId()
Supply a unique key for deduplication.
Definition: ConfirmLinkAuthenticationRequest.php:62
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 use $formDescriptor instead 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
MediaWiki\Auth\ConfirmLinkAuthenticationRequest
Definition: ConfirmLinkAuthenticationRequest.php:24
MediaWiki\Auth\AuthenticationRequest
This is a value object for authentication requests.
Definition: AuthenticationRequest.php:37