Merge "Expose SearchEngine specific profiles"
[lhc/web/wiklou.git] / includes / api / ApiAMCreateAccount.php
1 <?php
2 /**
3 * Copyright © 2016 Brad Jorsch <bjorsch@wikimedia.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 use MediaWiki\Auth\AuthManager;
24 use MediaWiki\Auth\AuthenticationRequest;
25 use MediaWiki\Auth\AuthenticationResponse;
26
27 /**
28 * Create an account with AuthManager
29 *
30 * @ingroup API
31 */
32 class ApiAMCreateAccount extends ApiBase {
33
34 public function __construct( ApiMain $main, $action ) {
35 parent::__construct( $main, $action, 'create' );
36 }
37
38 public function getFinalDescription() {
39 // A bit of a hack to append 'api-help-authmanager-general-usage'
40 $msgs = parent::getFinalDescription();
41 $msgs[] = ApiBase::makeMessage( 'api-help-authmanager-general-usage', $this->getContext(), [
42 $this->getModulePrefix(),
43 $this->getModuleName(),
44 $this->getModulePath(),
45 AuthManager::ACTION_CREATE,
46 self::needsToken(),
47 ] );
48 return $msgs;
49 }
50
51 public function execute() {
52 $params = $this->extractRequestParams();
53
54 $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
55
56 if ( $params['returnurl'] !== null ) {
57 $bits = wfParseUrl( $params['returnurl'] );
58 if ( !$bits || $bits['scheme'] === '' ) {
59 $encParamName = $this->encodeParamName( 'returnurl' );
60 $this->dieUsage(
61 "Invalid value '{$params['returnurl']}' for url parameter $encParamName",
62 "badurl_{$encParamName}"
63 );
64 }
65 }
66
67 $helper = new ApiAuthManagerHelper( $this );
68 $manager = AuthManager::singleton();
69
70 // Make sure it's possible to log in
71 if ( !$manager->canCreateAccounts() ) {
72 $this->getResult()->addValue( null, 'createaccount', $helper->formatAuthenticationResponse(
73 AuthenticationResponse::newFail(
74 $this->msg( 'userlogin-cannot-' . AuthManager::ACTION_CREATE )
75 )
76 ) );
77 return;
78 }
79
80 // Perform the create step
81 if ( $params['continue'] ) {
82 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_CREATE_CONTINUE );
83 $res = $manager->continueAccountCreation( $reqs );
84 } else {
85 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_CREATE );
86 if ( $params['preservestate'] ) {
87 $req = $helper->getPreservedRequest();
88 if ( $req ) {
89 $reqs[] = $req;
90 }
91 }
92 $res = $manager->beginAccountCreation( $this->getUser(), $reqs, $params['returnurl'] );
93 }
94
95 $this->getResult()->addValue( null, 'createaccount',
96 $helper->formatAuthenticationResponse( $res ) );
97 }
98
99 public function isReadMode() {
100 return false;
101 }
102
103 public function isWriteMode() {
104 return true;
105 }
106
107 public function needsToken() {
108 return 'createaccount';
109 }
110
111 public function getAllowedParams() {
112 $ret = ApiAuthManagerHelper::getStandardParams( AuthManager::ACTION_CREATE,
113 'requests', 'messageformat', 'mergerequestfields', 'preservestate', 'returnurl', 'continue'
114 );
115 $ret['preservestate'][ApiBase::PARAM_HELP_MSG_APPEND][] =
116 'apihelp-createaccount-param-preservestate';
117 return $ret;
118 }
119
120 public function dynamicParameterDocumentation() {
121 return [ 'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_CREATE ];
122 }
123
124 protected function getExamplesMessages() {
125 return [
126 'action=createaccount&username=Example&password=ExamplePassword&retype=ExamplePassword'
127 . '&createreturnurl=http://example.org/&createtoken=123ABC'
128 => 'apihelp-createaccount-example-create',
129 ];
130 }
131
132 public function getHelpUrls() {
133 return 'https://www.mediawiki.org/wiki/API:Account_creation';
134 }
135 }