3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
22 namespace MediaWiki\Auth
;
25 * This transfers state between the login and account creation flows.
27 * AuthManager::getAuthenticationRequests() won't return this type, but it
28 * may be passed to AuthManager::beginAuthentication() or
29 * AuthManager::beginAccountCreation() anyway.
35 class CreateFromLoginAuthenticationRequest
extends AuthenticationRequest
{
37 public $required = self
::OPTIONAL
;
39 /** @var AuthenticationRequest|null */
40 public $createRequest;
42 /** @var AuthenticationRequest[] */
43 public $maybeLink = [];
47 * @param AuthenticationRequest|null $createRequest A request to use to
48 * begin creating the account
49 * @param AuthenticationRequest[] $maybeLink Additional accounts to link
52 public function __construct(
53 ?AuthenticationRequest
$createRequest = null, array $maybeLink = []
55 $this->createRequest
= $createRequest;
56 $this->maybeLink
= $maybeLink;
57 $this->username
= $createRequest ?
$createRequest->username
: null;
64 public function getFieldInfo() {
72 public function loadFromSubmission( array $data ) {
77 * Indicate whether this request contains any state for the specified
80 * @param string $action One of the AuthManager::ACTION_* constants
83 public function hasStateForAction( $action ) {
85 case AuthManager
::ACTION_LOGIN
:
86 return (bool)$this->maybeLink
;
87 case AuthManager
::ACTION_CREATE
:
88 return $this->maybeLink ||
$this->createRequest
;
95 * Indicate whether this request contains state for the specified
96 * action sufficient to replace other primary-required requests.
98 * @param string $action One of the AuthManager::ACTION_* constants
101 public function hasPrimaryStateForAction( $action ) {
103 case AuthManager
::ACTION_CREATE
:
104 return (bool)$this->createRequest
;