wiki.techinc.nl/includes/auth/EmailNotificationSecondaryAuthenticationProvider.php
DannyS712 c1db64b808 Make use of ??= in more places
New feature from PHP 7.4

Change-Id: Ifa7a9bc7b2ec415ad7ecb23f4c1776f51f58fd6b
2022-12-17 01:10:13 +00:00

72 lines
2.2 KiB
PHP

<?php
namespace MediaWiki\Auth;
use MediaWiki\MainConfigNames;
use Wikimedia\Rdbms\ILoadBalancer;
/**
* Handles email notification / email address confirmation for account creation.
*
* Set 'no-email' to true (via AuthManager::setAuthenticationSessionData) to skip this provider.
* Primary providers doing so are expected to take care of email address confirmation.
*/
class EmailNotificationSecondaryAuthenticationProvider
extends AbstractSecondaryAuthenticationProvider
{
/** @var bool */
protected $sendConfirmationEmail;
/** @var ILoadBalancer */
private $loadBalancer;
/**
* @param ILoadBalancer $loadBalancer
* @param array $params
* - sendConfirmationEmail: (bool) send an email asking the user to confirm their email
* address after a successful registration
*/
public function __construct( ILoadBalancer $loadBalancer, $params = [] ) {
if ( isset( $params['sendConfirmationEmail'] ) ) {
$this->sendConfirmationEmail = (bool)$params['sendConfirmationEmail'];
}
$this->loadBalancer = $loadBalancer;
}
protected function postInitSetup() {
$this->sendConfirmationEmail ??= $this->config->get( MainConfigNames::EnableEmail )
&& $this->config->get( MainConfigNames::EmailAuthentication );
}
public function getAuthenticationRequests( $action, array $options ) {
return [];
}
public function beginSecondaryAuthentication( $user, array $reqs ) {
return AuthenticationResponse::newAbstain();
}
public function beginSecondaryAccountCreation( $user, $creator, array $reqs ) {
if (
$this->sendConfirmationEmail
&& $user->getEmail()
&& !$this->manager->getAuthenticationSessionData( 'no-email' )
) {
// TODO show 'confirmemail_oncreate'/'confirmemail_sendfailed' message
$this->loadBalancer->getConnectionRef( DB_PRIMARY )->onTransactionCommitOrIdle(
function () use ( $user ) {
$user = $user->getInstanceForUpdate();
$status = $user->sendConfirmationMail();
$user->saveSettings();
if ( !$status->isGood() ) {
$this->logger->warning( 'Could not send confirmation email: ' .
$status->getWikiText( false, false, 'en' ) );
}
},
__METHOD__
);
}
return AuthenticationResponse::newPass();
}
}