35 global $wgOATHAuthDatabase;
37 static $service =
null;
39 if ( $service ==
null ) {
40 $factory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
42 $factory->getMainLB( $wgOATHAuthDatabase ),
64 array
$requests, array $fieldInfo, array &$formDescriptor, $action
66 if ( isset( $fieldInfo[
'OATHToken'] ) ) {
67 $formDescriptor[
'OATHToken'] += [
68 'cssClass' =>
'loginText',
69 'id' =>
'wpOATHToken',
72 'persistent' =>
false,
73 'autocomplete' =>
false,
74 'spellcheck' =>
false,
94 if ( $user && $user->getKey() !==
null ) {
96 # This two-factor extension is enabled by the user,
97 # we don't need to check others.
101 # This two-factor extension isn't enabled by the user,
119 if ( $oathUser->getKey() ===
null && !$user->isAllowed(
'oathauth-enable' ) ) {
123 $title = SpecialPage::getTitleFor(
'OATH' );
124 $msg = $oathUser->getKey() !==
null ?
'oathauth-disable' :
'oathauth-enable';
126 $preferences[$msg] = [
133 [
'returnto' => SpecialPage::getTitleFor(
'Preferences' )->getPrefixedText() ]
135 'label-message' =>
'oathauth-prefs-label',
136 'section' =>
'personal/info', ];
146 $base = dirname( __DIR__ );
147 switch ( $updater->getDB()->getType() ) {
150 $updater->addExtensionTable(
'oathauth_users',
"$base/sql/mysql/tables.sql" );
151 $updater->addExtensionUpdate( [ [ __CLASS__,
'schemaUpdateOldUsersFromInstaller' ] ] );
152 $updater->dropExtensionField(
155 "$base/sql/mysql/patch-remove_reset.sql"
160 $updater->addExtensionTable(
'oathauth_users',
"$base/sql/oracle/tables.sql" );
164 $updater->addExtensionTable(
'oathauth_users',
"$base/sql/postgres/tables.sql" );
191 if ( !$db->
fieldExists(
'oathauth_users',
'secret_reset' ) ) {
197 [
'id',
'scratch_tokens' ],
198 [
'is_validated != 0' ],
202 foreach (
$res as $row ) {
203 Wikimedia\suppressWarnings();
204 $scratchTokens =
unserialize( base64_decode( $row->scratch_tokens ) );
205 Wikimedia\restoreWarnings();
206 if ( $scratchTokens ) {
209 [
'scratch_tokens' => implode(
',', $scratchTokens ) ],
210 [
'id' => $row->id ],
217 $db->
delete(
'oathauth_users', [
'is_validated' => 0 ], __METHOD__ );
unserialize( $serialized)
Class for handling database updates.
Simple store for keeping values in an associative array for the current process.
static link( $target, $html=null, $customAttribs=[], $query=[], $options=[])
This function returns an HTML link to the given target.
Hooks for Extension:OATHAuth.
static onTwoFactorIsEnabled(&$isEnabled)
Determine if two-factor authentication is enabled for $wgUser.
static onLoadExtensionSchemaUpdates( $updater)
static getOATHUserRepository()
Get the singleton OATH user repository.
static schemaUpdateOldUsers(IDatabase $db)
Helper function for converting old users to the new schema.
static onAuthChangeFormFields(array $requests, array $fieldInfo, array &$formDescriptor, $action)
static onGetPreferences(User $user, array &$preferences)
Add the necessary user preferences for OATHAuth.
static schemaUpdateOldUsersFromInstaller(DatabaseUpdater $updater)
Helper function for converting old users to the new schema.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead. & $feedLinks hooks can tweak the array to change how login etc forms should look $requests