mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-24 16:25:23 +00:00
Show the first input as a warning, not as an error box
The first time the extension asks for the code of the mobile phone isn't an error and shouldn't be styles as such (see the depends-on change). Change all other UIs to errors. Bug: T139179 Change-Id: I7cc3333c3e166295e85e91c7b377e53842bdb307 Depends-On: I9a27911613e62b5c4cb86bea40696cb37c4f49c2
This commit is contained in:
parent
d2d3697633
commit
106497dc27
|
@ -39,7 +39,7 @@ class TOTPSecondaryAuthenticationProvider extends AbstractSecondaryAuthenticatio
|
|||
return AuthenticationResponse::newAbstain();
|
||||
} else {
|
||||
return AuthenticationResponse::newUI( array( new TOTPAuthenticationRequest() ),
|
||||
wfMessage( 'oathauth-auth-ui' ) );
|
||||
wfMessage( 'oathauth-auth-ui' ), 'warning' );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -52,14 +52,17 @@ class TOTPSecondaryAuthenticationProvider extends AbstractSecondaryAuthenticatio
|
|||
$request = AuthenticationRequest::getRequestByClass( $reqs, TOTPAuthenticationRequest::class );
|
||||
if ( !$request ) {
|
||||
return AuthenticationResponse::newUI( array( new TOTPAuthenticationRequest() ),
|
||||
wfMessage( 'oathauth-login-failed' ) );
|
||||
wfMessage( 'oathauth-login-failed' ), 'error' );
|
||||
}
|
||||
|
||||
$throttler = new Throttler( null, [ 'type' => 'TOTP' ] );
|
||||
$result = $throttler->increase( $user->getName(), null, __METHOD__ );
|
||||
if ( $result ) {
|
||||
return AuthenticationResponse::newUI( array( new TOTPAuthenticationRequest() ),
|
||||
new Message( 'oathauth-throttled', [ Message::durationParam( $result['wait'] ) ] ) );
|
||||
new Message(
|
||||
'oathauth-throttled',
|
||||
[ Message::durationParam( $result['wait'] ) ]
|
||||
), 'error' );
|
||||
}
|
||||
|
||||
$oathuser = OATHAuthHooks::getOATHUserRepository()->findByUser( $user );
|
||||
|
@ -76,7 +79,7 @@ class TOTPSecondaryAuthenticationProvider extends AbstractSecondaryAuthenticatio
|
|||
return AuthenticationResponse::newPass();
|
||||
} else {
|
||||
return AuthenticationResponse::newUI( array( new TOTPAuthenticationRequest() ),
|
||||
wfMessage( 'oathauth-login-failed' ) );
|
||||
wfMessage( 'oathauth-login-failed' ), 'error' );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue