MediaWiki  master
ApiAMCreateAccount.php
Go to the documentation of this file.
1 <?php
25 
31 class ApiAMCreateAccount extends ApiBase {
32 
33  public function __construct( ApiMain $main, $action ) {
34  parent::__construct( $main, $action, 'create' );
35  }
36 
37  public function getFinalDescription() {
38  // A bit of a hack to append 'api-help-authmanager-general-usage'
39  $msgs = parent::getFinalDescription();
40  $msgs[] = ApiBase::makeMessage( 'api-help-authmanager-general-usage', $this->getContext(), [
41  $this->getModulePrefix(),
42  $this->getModuleName(),
43  $this->getModulePath(),
44  AuthManager::ACTION_CREATE,
45  self::needsToken(),
46  ] );
47  return $msgs;
48  }
49 
50  public function execute() {
51  $params = $this->extractRequestParams();
52 
53  $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
54 
55  if ( $params['returnurl'] !== null ) {
56  $bits = wfParseUrl( $params['returnurl'] );
57  if ( !$bits || $bits['scheme'] === '' ) {
58  $encParamName = $this->encodeParamName( 'returnurl' );
59  $this->dieUsage(
60  "Invalid value '{$params['returnurl']}' for url parameter $encParamName",
61  "badurl_{$encParamName}"
62  );
63  }
64  }
65 
66  $helper = new ApiAuthManagerHelper( $this );
67  $manager = AuthManager::singleton();
68 
69  // Make sure it's possible to log in
70  if ( !$manager->canCreateAccounts() ) {
71  $this->getResult()->addValue( null, 'createaccount', $helper->formatAuthenticationResponse(
72  AuthenticationResponse::newFail(
73  $this->msg( 'userlogin-cannot-' . AuthManager::ACTION_CREATE )
74  )
75  ) );
76  return;
77  }
78 
79  // Perform the create step
80  if ( $params['continue'] ) {
81  $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_CREATE_CONTINUE );
82  $res = $manager->continueAccountCreation( $reqs );
83  } else {
84  $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_CREATE );
85  if ( $params['preservestate'] ) {
86  $req = $helper->getPreservedRequest();
87  if ( $req ) {
88  $reqs[] = $req;
89  }
90  }
91  $res = $manager->beginAccountCreation( $this->getUser(), $reqs, $params['returnurl'] );
92  }
93 
94  $this->getResult()->addValue( null, 'createaccount',
95  $helper->formatAuthenticationResponse( $res ) );
96  }
97 
98  public function isReadMode() {
99  return false;
100  }
101 
102  public function isWriteMode() {
103  return true;
104  }
105 
106  public function needsToken() {
107  return 'createaccount';
108  }
109 
110  public function getAllowedParams() {
111  $ret = ApiAuthManagerHelper::getStandardParams( AuthManager::ACTION_CREATE,
112  'requests', 'messageformat', 'mergerequestfields', 'preservestate', 'returnurl', 'continue'
113  );
114  $ret['preservestate'][ApiBase::PARAM_HELP_MSG_APPEND][] =
115  'apihelp-createaccount-param-preservestate';
116  return $ret;
117  }
118 
119  public function dynamicParameterDocumentation() {
120  return [ 'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_CREATE ];
121  }
122 
123  protected function getExamplesMessages() {
124  return [
125  'action=createaccount&username=Example&password=ExamplePassword&retype=ExamplePassword'
126  . '&createreturnurl=http://example.org/&createtoken=123ABC'
127  => 'apihelp-createaccount-example-create',
128  ];
129  }
130 
131  public function getHelpUrls() {
132  return 'https://www.mediawiki.org/wiki/API:Account_creation';
133  }
134 }
static getStandardParams($action, $param)
Fetch the standard parameters this helper recognizes.
getResult()
Get the result object.
Definition: ApiBase.php:577
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
extractRequestParams($parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user...
Definition: ApiBase.php:678
static makeMessage($msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
Definition: ApiBase.php:1418
This is a value object to hold authentication response data.
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
Definition: ApiBase.php:132
$res
Definition: database.txt:21
getModulePath()
Get the path to this module.
Definition: ApiBase.php:521
getContext()
Get the base IContextSource object.
$params
This is the main API class, used for both external and internal processing.
Definition: ApiMain.php:41
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:457
This serves as the entry point to the authentication system.
Definition: AuthManager.php:43
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:1816
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
this hook is for auditing only $req
Definition: hooks.txt:981
Create an account with AuthManager.
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition: ApiBase.php:465
requireAtLeastOneParameter($params, $required)
Die if none of a certain set of parameters is set and not false.
Definition: ApiBase.php:763
dieUsage($description, $errorCode, $httpRespCode=0, $extradata=null)
Throw a UsageException, which will (if uncaught) call the main module's error handler and die with an...
Definition: ApiBase.php:1481
This abstract class implements many basic API functions, and is the base of all API classes...
Definition: ApiBase.php:39
wfParseUrl($url)
parse_url() work-alike, but non-broken.
encodeParamName($paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition: ApiBase.php:665
Helper class for AuthManager-using API modules.
getUser()
Get the User object.
__construct(ApiMain $main, $action)