mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-24 08:14:15 +00:00
Merge "Send a notification when 2FA is enabled"
This commit is contained in:
commit
3043b1eb75
|
@ -87,6 +87,10 @@
|
|||
"notification-body-oathauth-disable-other": "If {{GENDER:$2|you}} did not request this, {{GENDER:$2|you}} should contact an administrator.",
|
||||
"oathauth-notifications-disable-help": "Help",
|
||||
"oathauth-notifications-disable-helplink": "mw:Special:MyLanguage/Help:Two-factor authentication",
|
||||
"notification-header-oathauth-enabled": "Two-factor authentication has been enabled on {{GENDER:$2|your account}}.",
|
||||
"notification-body-oathauth-enabled": "If {{GENDER:$2|you}} did not do this, {{GENDER:$2|your account}} may have been compromised.",
|
||||
"oathauth-notifications-enabled-help": "Help",
|
||||
"oathauth-notifications-enabled-helplink": "mw:Special:MyLanguage/Help:Two-factor authentication",
|
||||
"oathauth-verify-enabled": "{{GENDER:$1|$1}} has two-factor authentication enabled.",
|
||||
"oathauth-verify-disabled": "{{GENDER:$1|$1}} does not have two-factor authentication enabled.",
|
||||
"oathauth-prefs-disabledgroups": "Disabled {{PLURAL:$1|group|groups}}:",
|
||||
|
|
|
@ -99,6 +99,10 @@
|
|||
"notification-body-oathauth-disable-other": "Notification body text for when two-factor authentication has been disabled by an administrator or sysadmin.\n$2 - Name of user for GENDER.",
|
||||
"oathauth-notifications-disable-help": "Link text for the help link in the notification\n{{identical|Help}}",
|
||||
"oathauth-notifications-disable-helplink": "{{notranslate}}",
|
||||
"notification-header-oathauth-enabled": "Notification header for when two-factor authentication has been enabled.\n$2 - Name of user for GENDER",
|
||||
"notification-body-oathauth-enabled": "Notification body text for when two-factor authentication has been enabled.\n$2 - Name of user for GENDER",
|
||||
"oathauth-notifications-enabled-help": "Link text for the help link in the notification",
|
||||
"oathauth-notifications-enabled-helplink": "{{notranslate}}",
|
||||
"oathauth-verify-enabled": "Notice that a user has 2FA enabled, shown on success at [[Special:VerifyOATHForUser]].\n$1 - Name of user",
|
||||
"oathauth-verify-disabled": "Notice that a user does not have 2FA enabled, shown on success at [[Special:VerifyOATHForUser]].\n$1 - Name of user",
|
||||
"oathauth-prefs-disabledgroups": "Label on Special:Preferences for groups in which the user's membership has been disabled for a lack of two-factor authentication.\n$1 - Number of groups",
|
||||
|
|
68
src/Notifications/EnablePresentationModel.php
Normal file
68
src/Notifications/EnablePresentationModel.php
Normal file
|
@ -0,0 +1,68 @@
|
|||
<?php
|
||||
/**
|
||||
* Copyright (C) 2022 Kunal Mehta <legoktm@debian.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
* http://www.gnu.org/copyleft/gpl.html
|
||||
*/
|
||||
|
||||
namespace MediaWiki\Extension\OATHAuth\Notifications;
|
||||
|
||||
use EchoEventPresentationModel;
|
||||
use SpecialPage;
|
||||
use Title;
|
||||
|
||||
class EnablePresentationModel extends EchoEventPresentationModel {
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function getIconType() {
|
||||
return 'site';
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function getPrimaryLink() {
|
||||
return [
|
||||
'url' => SpecialPage::getTitleFor( 'Preferences' )->getLocalURL(),
|
||||
'label' => $this->msg( 'oathauth-notifications-enabled-primary' )->text()
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function getSecondaryLinks() {
|
||||
$link = $this->msg( 'oathauth-notifications-enabled-helplink' )->inContentLanguage();
|
||||
$title = Title::newFromText( $link->plain() );
|
||||
if ( !$title ) {
|
||||
// Invalid title, skip
|
||||
return [];
|
||||
}
|
||||
return [ [
|
||||
'url' => $title->getLocalURL(),
|
||||
'label' => $this->msg( 'oathauth-notifications-enabled-help' )->text(),
|
||||
'icon' => 'help',
|
||||
] ];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function getBodyMessage() {
|
||||
return $this->getMessageWithAgent( 'notification-body-oathauth-enabled' );
|
||||
}
|
||||
}
|
|
@ -58,6 +58,22 @@ class Manager {
|
|||
] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a notification that 2FA has been enabled
|
||||
*
|
||||
* @param OATHUser $oUser
|
||||
*/
|
||||
public static function notifyEnabled( OATHUser $oUser ) {
|
||||
if ( !self::isEnabled() ) {
|
||||
return;
|
||||
}
|
||||
EchoEvent::create( [
|
||||
'type' => 'oathauth-enable',
|
||||
'title' => SpecialPage::getTitleFor( 'Preferences' ),
|
||||
'agent' => $oUser->getUser()
|
||||
] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Hook: BeforeCreateEchoEvent
|
||||
*
|
||||
|
@ -75,5 +91,14 @@ class Manager {
|
|||
'canNotifyAgent' => true,
|
||||
'user-locators' => [ 'EchoUserLocator::locateEventAgent' ],
|
||||
];
|
||||
|
||||
$notifications['oathauth-enable'] = [
|
||||
'category' => 'system',
|
||||
'group' => 'positive',
|
||||
'section' => 'alert',
|
||||
'presentation-model' => EnablePresentationModel::class,
|
||||
'canNotifyAgent' => true,
|
||||
'user-locators' => [ 'EchoUserLocator::locateEventAgent' ],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -165,6 +165,7 @@ class OATHUserRepository {
|
|||
'clientip' => $clientInfo,
|
||||
'oathtype' => $user->getModule()->getName(),
|
||||
] );
|
||||
Notifications\Manager::notifyEnabled( $user );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue