mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-14 19:31:17 +00:00
7451a5df33
Change-Id: I2d2a917e5a22f88dc644eb3c33f775642728e1f4
28 lines
758 B
PHP
28 lines
758 B
PHP
<?php
|
|
|
|
use MediaWiki\Auth\AuthenticationRequest;
|
|
|
|
/**
|
|
* AuthManager value object for the TOTP second factor of an authentication:
|
|
* a pseudorandom token that is generated from the current time independently
|
|
* by the server and the client.
|
|
*/
|
|
class TOTPAuthenticationRequest extends AuthenticationRequest {
|
|
public $OATHToken;
|
|
|
|
public function describeCredentials() {
|
|
return [
|
|
'provider' => wfMessage( 'oathauth-describe-provider' ),
|
|
'account' => new \RawMessage( '$1', [ $this->username ] ),
|
|
] + parent::describeCredentials();
|
|
}
|
|
|
|
public function getFieldInfo() {
|
|
return [
|
|
'OATHToken' => [
|
|
'type' => 'string',
|
|
'label' => wfMessage( 'oathauth-auth-token-label' ),
|
|
'help' => wfMessage( 'oathauth-auth-token-help' ), ], ];
|
|
}
|
|
}
|