MediaWiki  master
ApiCreateAccount.php
Go to the documentation of this file.
1 <?php
25 
32 class ApiCreateAccount extends ApiBase {
33  public function execute() {
34  // If we're in a mode that breaks the same-origin policy, no tokens can
35  // be obtained
36  if ( $this->lacksSameOriginSecurity() ) {
37  $this->dieUsage(
38  'Cannot create account when the same-origin policy is not applied', 'aborted'
39  );
40  }
41 
42  // $loginForm->addNewaccountInternal will throw exceptions
43  // if wiki is read only (already handled by api), user is blocked or does not have rights.
44  // Use userCan in order to hit GlobalBlock checks (according to Special:userlogin)
45  $loginTitle = SpecialPage::getTitleFor( 'Userlogin' );
46  if ( !$loginTitle->userCan( 'createaccount', $this->getUser() ) ) {
47  $this->dieUsage(
48  'You do not have the right to create a new account',
49  'permdenied-createaccount'
50  );
51  }
52  if ( $this->getUser()->isBlockedFromCreateAccount() ) {
53  $this->dieUsage(
54  'You cannot create a new account because you are blocked',
55  'blocked',
56  0,
57  [ 'blockinfo' => ApiQueryUserInfo::getBlockInfo( $this->getUser()->getBlock() ) ]
58  );
59  }
60 
61  $params = $this->extractRequestParams();
62 
63  // Make sure session is persisted
65 
66  if ( $params['mailpassword'] && !$params['email'] ) {
67  $this->dieUsageMsg( 'noemail' );
68  }
69 
70  if ( $params['language'] && !Language::isSupportedLanguage( $params['language'] ) ) {
71  $this->dieUsage( 'Invalid language parameter', 'langinvalid' );
72  }
73 
74  $context = new DerivativeContext( $this->getContext() );
75  $context->setRequest( new DerivativeRequest(
76  $this->getContext()->getRequest(),
77  [
78  'type' => 'signup',
79  'uselang' => $params['language'],
80  'wpName' => $params['name'],
81  'wpPassword' => $params['password'],
82  'wpRetype' => $params['password'],
83  'wpDomain' => $params['domain'],
84  'wpEmail' => $params['email'],
85  'wpRealName' => $params['realname'],
86  'wpCreateaccountToken' => $params['token'],
87  'wpCreateaccount' => $params['mailpassword'] ? null : '1',
88  'wpCreateaccountMail' => $params['mailpassword'] ? '1' : null
89  ]
90  ) );
91 
92  $loginForm = new LoginForm();
93  $loginForm->setContext( $context );
94  Hooks::run( 'AddNewAccountApiForm', [ $this, $loginForm ] );
95  $loginForm->load();
96 
97  $status = $loginForm->addNewAccountInternal();
98  LoggerFactory::getInstance( 'authmanager' )->info( 'Account creation attempt via API', [
99  'event' => 'accountcreation',
100  'status' => $status,
101  ] );
102  $result = [];
103  if ( $status->isGood() ) {
104  // Success!
105  $user = $status->getValue();
106 
107  if ( $params['language'] ) {
108  $user->setOption( 'language', $params['language'] );
109  }
110 
111  if ( $params['mailpassword'] ) {
112  // If mailpassword was set, disable the password and send an email.
113  $user->setPassword( null );
114  $status->merge( $loginForm->mailPasswordInternal(
115  $user,
116  false,
117  'createaccount-title',
118  'createaccount-text'
119  ) );
120  } elseif ( $this->getConfig()->get( 'EmailAuthentication' ) &&
121  Sanitizer::validateEmail( $user->getEmail() )
122  ) {
123  // Send out an email authentication message if needed
124  $status->merge( $user->sendConfirmationMail() );
125  }
126 
127  // Save settings (including confirmation token)
128  $user->saveSettings();
129 
130  Hooks::run( 'AddNewAccount', [ $user, $params['mailpassword'] ] );
131 
132  if ( $params['mailpassword'] ) {
133  $logAction = 'byemail';
134  } elseif ( $this->getUser()->isLoggedIn() ) {
135  $logAction = 'create2';
136  } else {
137  $logAction = 'create';
138  }
139  $user->addNewUserLogEntry( $logAction, (string)$params['reason'] );
140 
141  // Add username, id, and token to result.
142  $result['username'] = $user->getName();
143  $result['userid'] = $user->getId();
144  $result['token'] = $user->getToken();
145  }
146 
147  $apiResult = $this->getResult();
148 
149  if ( $status->hasMessage( 'sessionfailure' ) || $status->hasMessage( 'nocookiesfornew' ) ) {
150  // Token was incorrect, so add it to result, but don't throw an exception
151  // since not having the correct token is part of the normal
152  // flow of events.
153  $result['token'] = LoginForm::getCreateaccountToken()->toString();
154  $result['result'] = 'NeedToken';
155  $this->setWarning( 'Fetching a token via action=createaccount is deprecated. ' .
156  'Use action=query&meta=tokens&type=createaccount instead.' );
157  $this->logFeatureUsage( 'action=createaccount&!token' );
158  } elseif ( !$status->isOK() ) {
159  // There was an error. Die now.
160  $this->dieStatus( $status );
161  } elseif ( !$status->isGood() ) {
162  // Status is not good, but OK. This means warnings.
163  $result['result'] = 'Warning';
164 
165  // Add any warnings to the result
166  $warnings = $status->getErrorsByType( 'warning' );
167  if ( $warnings ) {
168  foreach ( $warnings as &$warning ) {
169  ApiResult::setIndexedTagName( $warning['params'], 'param' );
170  }
171  ApiResult::setIndexedTagName( $warnings, 'warning' );
172  $result['warnings'] = $warnings;
173  }
174  } else {
175  // Everything was fine.
176  $result['result'] = 'Success';
177  }
178 
179  // Give extensions a chance to modify the API result data
180  Hooks::run( 'AddNewAccountApiResult', [ $this, $loginForm, &$result ] );
181 
182  $apiResult->addValue( null, 'createaccount', $result );
183  }
184 
185  public function mustBePosted() {
186  return true;
187  }
188 
189  public function isReadMode() {
190  return false;
191  }
192 
193  public function isWriteMode() {
194  return true;
195  }
196 
197  public function getAllowedParams() {
198  return [
199  'name' => [
200  ApiBase::PARAM_TYPE => 'user',
202  ],
203  'password' => [
204  ApiBase::PARAM_TYPE => 'password',
205  ],
206  'domain' => null,
207  'token' => [
208  ApiBase::PARAM_TYPE => 'string',
209  ApiBase::PARAM_REQUIRED => false, // for BC
210  ApiBase::PARAM_HELP_MSG => [ 'api-help-param-token', 'createaccount' ],
211  ],
212  'email' => [
213  ApiBase::PARAM_TYPE => 'string',
214  ApiBase::PARAM_REQUIRED => $this->getConfig()->get( 'EmailConfirmToEdit' ),
215  ],
216  'realname' => null,
217  'mailpassword' => [
218  ApiBase::PARAM_TYPE => 'boolean',
220  ],
221  'reason' => null,
222  'language' => null
223  ];
224  }
225 
226  protected function getExamplesMessages() {
227  return [
228  'action=createaccount&name=testuser&password=test123'
229  => 'apihelp-createaccount-example-pass',
230  'action=createaccount&name=testmailuser&mailpassword=true&reason=MyReason'
231  => 'apihelp-createaccount-example-mail',
232  ];
233  }
234 
235  public function getHelpUrls() {
236  return 'https://www.mediawiki.org/wiki/API:Account_creation';
237  }
238 }
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below...
Definition: ApiBase.php:88
getResult()
Get the result object.
Definition: ApiBase.php:577
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name.
Definition: SpecialPage.php:80
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:50
An IContextSource implementation which will inherit context from another source but allow individual ...
Similar to FauxRequest, but only fakes URL parameters and method (POST or GET) and use the base reque...
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition: ApiBase.php:112
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
Definition: ApiBase.php:505
extractRequestParams($parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user...
Definition: ApiBase.php:678
IContextSource $context
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
Definition: ApiResult.php:618
static getBlockInfo(Block $block)
Get basic info about a given block.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1814
getRequest()
Get the WebRequest object.
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 just before the function returns a value If you return true
Definition: hooks.txt:1816
getConfig()
Get the Config object.
getContext()
Get the base IContextSource object.
Unit to authenticate account registration attempts to the current wiki.
$params
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
setWarning($warning)
Set warning section for this module.
Definition: ApiBase.php:1450
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
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter...
Definition: ApiBase.php:125
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
static getGlobalSession()
Get the "global" session.
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
A horrible hack to handle AuthManager's feature flag.
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 hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1020
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
This abstract class implements many basic API functions, and is the base of all API classes...
Definition: ApiBase.php:39
static validateEmail($addr)
Does a string look like an e-mail address?
Definition: Sanitizer.php:1941
logFeatureUsage($feature)
Write logging information for API features to a debug log, for usage analysis.
Definition: ApiBase.php:2200
dieStatus($status)
Throw a UsageException based on the errors in the Status object.
Definition: ApiBase.php:1570
getUser()
Get the User object.
static isSupportedLanguage($code)
Checks whether any localisation is available for that language tag in MediaWiki (MessagesXx.php exists).
Definition: Language.php:251
dieUsageMsg($error)
Output the error message related to a certain array.
Definition: ApiBase.php:2099