3 * Copyright © 2016 Brad Jorsch <bjorsch@wikimedia.org>
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.
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.
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
23 use MediaWiki\Auth\AuthManager
;
24 use MediaWiki\Auth\AuthenticationResponse
;
27 * Create an account with AuthManager
31 class ApiAMCreateAccount
extends ApiBase
{
33 public function __construct( ApiMain
$main, $action ) {
34 parent
::__construct( $main, $action, 'create' );
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
,
50 public function execute() {
51 $params = $this->extractRequestParams();
53 $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
55 if ( $params['returnurl'] !== null ) {
56 $bits = wfParseUrl( $params['returnurl'] );
57 if ( !$bits ||
$bits['scheme'] === '' ) {
58 $encParamName = $this->encodeParamName( 'returnurl' );
60 "Invalid value '{$params['returnurl']}' for url parameter $encParamName",
61 "badurl_{$encParamName}"
66 $helper = new ApiAuthManagerHelper( $this );
67 $manager = AuthManager
::singleton();
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
)
79 // Perform the create step
80 if ( $params['continue'] ) {
81 $reqs = $helper->loadAuthenticationRequests( AuthManager
::ACTION_CREATE_CONTINUE
);
82 $res = $manager->continueAccountCreation( $reqs );
84 $reqs = $helper->loadAuthenticationRequests( AuthManager
::ACTION_CREATE
);
85 if ( $params['preservestate'] ) {
86 $req = $helper->getPreservedRequest();
91 $res = $manager->beginAccountCreation( $this->getUser(), $reqs, $params['returnurl'] );
94 $this->getResult()->addValue( null, 'createaccount',
95 $helper->formatAuthenticationResponse( $res ) );
98 public function isReadMode() {
102 public function isWriteMode() {
106 public function needsToken() {
107 return 'createaccount';
110 public function getAllowedParams() {
111 $ret = ApiAuthManagerHelper
::getStandardParams( AuthManager
::ACTION_CREATE
,
112 'requests', 'messageformat', 'mergerequestfields', 'preservestate', 'returnurl', 'continue'
114 $ret['preservestate'][ApiBase
::PARAM_HELP_MSG_APPEND
][] =
115 'apihelp-createaccount-param-preservestate';
119 public function dynamicParameterDocumentation() {
120 return [ 'api-help-authmanagerhelper-additional-params', AuthManager
::ACTION_CREATE
];
123 protected function getExamplesMessages() {
125 'action=createaccount&username=Example&password=ExamplePassword&retype=ExamplePassword'
126 . '&createreturnurl=http://example.org/&createtoken=123ABC'
127 => 'apihelp-createaccount-example-create',
131 public function getHelpUrls() {
132 return 'https://www.mediawiki.org/wiki/API:Account_creation';