MediaWiki REL1_33
CaptchaAuthenticationRequest.php
Go to the documentation of this file.
1<?php
2
5
12 public $captchaId;
13
17
20
21 public function __construct( $id, $data ) {
22 $this->captchaId = $id;
23 $this->captchaData = $data;
24 }
25
26 public function loadFromSubmission( array $data ) {
27 $success = parent::loadFromSubmission( $data );
28 if ( $success ) {
29 // captchaId and captchaWord was set from the submission but captchaData was not.
31 $this->captchaData = $captcha->retrieveCaptcha( $this->captchaId );
32 if ( !$this->captchaData ) {
33 return false;
34 }
35 }
36 return $success;
37 }
38
43 public function getFieldInfo() {
45
46 // doesn't actually exist but *Captcha::getMessage will handle that
47 $action = 'generic';
48 switch ( $this->action ) {
49 case AuthManager::ACTION_LOGIN:
50 $action = 'badlogin';
51 break;
52 case AuthManager::ACTION_CREATE:
53 $action = 'createaccount';
54 break;
55 }
56
57 $fields = [
58 'captchaId' => [
59 'type' => 'hidden',
60 'value' => $this->captchaId,
61 'label' => wfMessage( 'captcha-id-label' ),
62 'help' => wfMessage( 'captcha-id-help' ),
63 ],
64 'captchaInfo' => [
65 'type' => 'null',
66 'label' => $captcha->getMessage( $action ),
67 'value' => $captcha->getCaptchaInfo( $this->captchaData, $this->captchaId ),
68 'help' => wfMessage( 'captcha-info-help' ),
69 ],
70 'captchaWord' => [
71 'type' => 'string',
72 'label' => wfMessage( 'captcha-label' ),
73 'help' => wfMessage( 'captcha-help' ),
74 ],
75 ];
76
77 return $fields;
78 }
79
80 public function getMetadata() {
82 return $captcha->describeCaptchaType();
83 }
84
85 public static function __set_state( $data ) {
86 $ret = new static( null, null );
87 foreach ( $data as $k => $v ) {
88 $ret->$k = $v;
89 }
90 return $ret;
91 }
92}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Generic captcha authentication request class.
string $captchaWord
Captcha solution submitted by the user.
string $captchaId
Identifier of the captcha.
getMetadata()
Returns metadata about this request.
getFieldInfo()
@inheritDoc @suppress SecurityCheck-DoubleEscaped T202112
static __set_state( $data)
Implementing this mainly for use from the unit tests.
array $captchaData
Information about the captcha (e.g.
loadFromSubmission(array $data)
Initialize form submitted form data.
static getInstance()
Get the global Captcha instance.
This serves as the entry point to the authentication system.
This is a value object for authentication requests.
string null $action
The AuthManager::ACTION_* constant this request was created to be used for.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition hooks.txt:783
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:2003
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;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
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))