3 use MediaWiki\Auth\AuthenticationRequest
;
4 use MediaWiki\Auth\AuthenticationResponse
;
5 use MediaWiki\Auth\AuthManager
;
6 use MediaWiki\Session\SessionManager
;
9 * Special change to change credentials (such as the password).
11 * Also does most of the work for SpecialRemoveCredentials.
13 class SpecialChangeCredentials
extends AuthManagerSpecialPage
{
14 protected static $allowedActions = [ AuthManager
::ACTION_CHANGE
];
16 protected static $messagePrefix = 'changecredentials';
18 /** Change action needs user data; remove action does not */
19 protected static $loadUserData = true;
21 public function __construct( $name = 'ChangeCredentials' ) {
22 parent
::__construct( $name, 'editmyprivateinfo' );
25 protected function getGroupName() {
29 public function isListed() {
30 $this->loadAuth( '' );
31 return (bool)$this->authRequests
;
34 public function doesWrites() {
38 protected function getDefaultAction( $subPage ) {
39 return AuthManager
::ACTION_CHANGE
;
42 protected function getPreservedParams( $withToken = false ) {
43 $request = $this->getRequest();
44 $params = parent
::getPreservedParams( $withToken );
46 'returnto' => $request->getVal( 'returnto' ),
47 'returntoquery' => $request->getVal( 'returntoquery' ),
52 public function onAuthChangeFormFields(
53 array $requests, array $fieldInfo, array &$formDescriptor, $action
55 // This method is never called for remove actions.
58 Hooks
::run( 'ChangePasswordForm', [ &$extraFields ], '1.27' );
59 foreach ( $extraFields as $extra ) {
60 list( $name, $label, $type, $default ) = $extra;
61 $formDescriptor[$name] = [
64 'label-message' => $label,
65 'default' => $default,
70 return parent
::onAuthChangeFormFields( $requests, $fieldInfo, $formDescriptor, $action );
73 public function execute( $subPage ) {
75 $this->outputHeader();
77 $this->loadAuth( $subPage );
80 $this->showSubpageList();
84 if ( !$this->authRequests
) {
85 // messages used: changecredentials-invalidsubpage, removecredentials-invalidsubpage
86 $this->showSubpageList( $this->msg( static::$messagePrefix . '-invalidsubpage', $subPage ) );
90 $status = $this->trySubmit();
92 if ( $status === false ||
!$status->isOK() ) {
93 $this->displayForm( $status );
97 $response = $status->getValue();
99 switch ( $response->status
) {
100 case AuthenticationResponse
::PASS
:
103 case AuthenticationResponse
::FAIL
:
104 $this->displayForm( Status
::newFatal( $response->message
) );
107 throw new LogicException( 'invalid AuthenticationResponse' );
111 protected function loadAuth( $subPage, $authAction = null, $reset = false ) {
112 parent
::loadAuth( $subPage, $authAction );
114 $this->authRequests
= array_filter( $this->authRequests
, function ( $req ) use ( $subPage ) {
115 return $req->getUniqueId() === $subPage;
117 if ( count( $this->authRequests
) > 1 ) {
118 throw new LogicException( 'Multiple AuthenticationRequest objects with same ID!' );
123 protected function getAuthFormDescriptor( $requests, $action ) {
124 if ( !static::$loadUserData ) {
127 return parent
::getAuthFormDescriptor( $requests, $action );
131 protected function getAuthForm( array $requests, $action ) {
132 $form = parent
::getAuthForm( $requests, $action );
133 $req = reset( $requests );
134 $info = $req->describeCredentials();
137 Html
::openElement( 'dl' )
138 . Html
::element( 'dt', [], wfMessage( 'credentialsform-provider' ) )
139 . Html
::element( 'dd', [], $info['provider'] )
140 . Html
::element( 'dt', [], wfMessage( 'credentialsform-account' ) )
141 . Html
::element( 'dd', [], $info['account'] )
142 . Html
::closeElement( 'dl' )
145 // messages used: changecredentials-submit removecredentials-submit
146 $form->setSubmitTextMsg( static::$messagePrefix . '-submit' );
147 $form->showCancel()->setCancelTarget( $this->getReturnUrl() ?
: Title
::newMainPage() );
152 protected function needsSubmitButton( $formDescriptor ) {
153 // Change/remove forms show are built from a single AuthenticationRequest and do not allow
154 // for redirect flow; they always need a submit button.
158 public function handleFormSubmit( $data ) {
159 // remove requests do not accept user input
160 $requests = $this->authRequests
;
161 if ( static::$loadUserData ) {
162 $requests = AuthenticationRequest
::loadRequestsFromSubmission( $this->authRequests
, $data );
165 $response = $this->performAuthenticationStep( $this->authAction
, $requests );
167 // we can't handle FAIL or similar as failure here since it might require changing the form
168 return Status
::newGood( $response );
172 * @param Message|null $error
174 protected function showSubpageList( $error = null ) {
175 $out = $this->getOutput();
178 $out->addHTML( $error->parse() );
181 $groupedRequests = [];
182 foreach ( $this->authRequests
as $req ) {
183 $info = $req->describeCredentials();
184 $groupedRequests[(string)$info['provider']][] = $req;
187 $out->addHTML( Html
::openElement( 'dl' ) );
188 foreach ( $groupedRequests as $group => $members ) {
189 $out->addHTML( Html
::element( 'dt', [], $group ) );
190 foreach ( $members as $req ) {
191 /** @var AuthenticationRequest $req */
192 $info = $req->describeCredentials();
193 $out->addHTML( Html
::rawElement( 'dd', [],
194 Linker
::link( $this->getPageTitle( $req->getUniqueId() ),
195 htmlspecialchars( $info['account'], ENT_QUOTES
) )
199 $out->addHTML( Html
::closeElement( 'dl' ) );
202 protected function success() {
203 $session = $this->getRequest()->getSession();
204 $user = $this->getUser();
205 $out = $this->getOutput();
206 $returnUrl = $this->getReturnUrl();
208 // change user token and update the session
209 SessionManager
::singleton()->invalidateSessionsForUser( $user );
210 $session->setUser( $user );
214 $out->redirect( $returnUrl );
216 // messages used: changecredentials-success removecredentials-success
217 $out->wrapWikiMsg( "<div class=\"successbox\">\n$1\n</div>", static::$messagePrefix
219 $out->returnToMain();
224 * @return string|null
226 protected function getReturnUrl() {
227 $request = $this->getRequest();
228 $returnTo = $request->getText( 'returnto' );
229 $returnToQuery = $request->getText( 'returntoquery', '' );
235 $title = Title
::newFromText( $returnTo );
236 return $title->getFullURL( $returnToQuery );
239 protected function getRequestBlacklist() {
240 return $this->getConfig()->get( 'ChangeCredentialsBlacklist' );