MediaWiki REL1_37
ApiAMCreateAccount.php
Go to the documentation of this file.
1<?php
25
32
34 private $authManager;
35
41 public function __construct(
42 ApiMain $main,
43 $action,
45 ) {
46 parent::__construct( $main, $action, 'create' );
47 $this->authManager = $authManager;
48 }
49
50 public function getFinalDescription() {
51 // A bit of a hack to append 'api-help-authmanager-general-usage'
52 $msgs = parent::getFinalDescription();
53 $msgs[] = ApiBase::makeMessage( 'api-help-authmanager-general-usage', $this->getContext(), [
54 $this->getModulePrefix(),
55 $this->getModuleName(),
56 $this->getModulePath(),
57 AuthManager::ACTION_CREATE,
58 self::needsToken(),
59 ] );
60 return $msgs;
61 }
62
63 public function execute() {
64 $params = $this->extractRequestParams();
65
66 $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
67
68 if ( $params['returnurl'] !== null ) {
69 $bits = wfParseUrl( $params['returnurl'] );
70 if ( !$bits || $bits['scheme'] === '' ) {
71 $encParamName = $this->encodeParamName( 'returnurl' );
72 $this->dieWithError(
73 [ 'apierror-badurl', $encParamName, wfEscapeWikiText( $params['returnurl'] ) ],
74 "badurl_{$encParamName}"
75 );
76 }
77 }
78
79 $helper = new ApiAuthManagerHelper( $this, $this->authManager );
80
81 // Make sure it's possible to create accounts
82 if ( !$this->authManager->canCreateAccounts() ) {
83 $this->getResult()->addValue( null, 'createaccount', $helper->formatAuthenticationResponse(
84 AuthenticationResponse::newFail(
85 $this->msg( 'userlogin-cannot-' . AuthManager::ACTION_CREATE )
86 )
87 ) );
88 $helper->logAuthenticationResult( 'accountcreation',
89 'userlogin-cannot-' . AuthManager::ACTION_CREATE );
90 return;
91 }
92
93 // Perform the create step
94 if ( $params['continue'] ) {
95 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_CREATE_CONTINUE );
96 $res = $this->authManager->continueAccountCreation( $reqs );
97 } else {
98 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_CREATE );
99 if ( $params['preservestate'] ) {
100 $req = $helper->getPreservedRequest();
101 if ( $req ) {
102 $reqs[] = $req;
103 }
104 }
105 $res = $this->authManager->beginAccountCreation(
106 $this->getAuthority(),
107 $reqs,
108 $params['returnurl']
109 );
110 }
111
112 $this->getResult()->addValue( null, 'createaccount',
113 $helper->formatAuthenticationResponse( $res ) );
114 $helper->logAuthenticationResult( 'accountcreation', $res );
115 }
116
117 public function isReadMode() {
118 return false;
119 }
120
121 public function isWriteMode() {
122 return true;
123 }
124
125 public function needsToken() {
126 return 'createaccount';
127 }
128
129 public function getAllowedParams() {
130 $ret = ApiAuthManagerHelper::getStandardParams( AuthManager::ACTION_CREATE,
131 'requests', 'messageformat', 'mergerequestfields', 'preservestate', 'returnurl', 'continue'
132 );
133 $ret['preservestate'][ApiBase::PARAM_HELP_MSG_APPEND][] =
134 'apihelp-createaccount-param-preservestate';
135 return $ret;
136 }
137
139 return [ 'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_CREATE ];
140 }
141
142 protected function getExamplesMessages() {
143 return [
144 'action=createaccount&username=Example&password=ExamplePassword&retype=ExamplePassword'
145 . '&createreturnurl=http://example.org/&createtoken=123ABC'
146 => 'apihelp-createaccount-example-create',
147 ];
148 }
149
150 public function getHelpUrls() {
151 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Account_creation';
152 }
153}
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
Create an account with AuthManager.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
isReadMode()
Indicates whether this module requires read rights.
dynamicParameterDocumentation()
Indicate if the module supports dynamically-determined parameters that cannot be included in self::ge...
getFinalDescription()
Get final module description, after hooks have had a chance to tweak it as needed.
getHelpUrls()
Return links to more detailed help pages about the module.
__construct(ApiMain $main, $action, AuthManager $authManager)
needsToken()
Returns the token type this module requires in order to execute.
getExamplesMessages()
Returns usage examples for this module.
isWriteMode()
Indicates whether this module requires write mode.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Helper class for AuthManager-using API modules.
static getStandardParams( $action,... $wantedParams)
Fetch the standard parameters this helper recognizes.
This abstract class implements many basic API functions, and is the base of all API classes.
Definition ApiBase.php:55
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1436
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition ApiBase.php:505
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition ApiBase.php:742
static makeMessage( $msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
Definition ApiBase.php:1216
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
Definition ApiBase.php:169
requireAtLeastOneParameter( $params,... $required)
Die if none of a certain set of parameters is set and not false.
Definition ApiBase.php:961
getResult()
Get the result object.
Definition ApiBase.php:628
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:764
getModulePath()
Get the path to this module.
Definition ApiBase.php:572
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:497
This is the main API class, used for both external and internal processing.
Definition ApiMain.php:49
getContext()
Get the base IContextSource object.
This serves as the entry point to the authentication system.
This is a value object to hold authentication response data.