174 lines
6.6 KiB
PHP
174 lines
6.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the TYPO3 CMS project.
|
|
*
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License, either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
|
|
namespace TYPO3\CMS\Install\Authentication;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Symfony\Component\Mailer\Exception\TransportException;
|
|
use Symfony\Component\Mime\Address;
|
|
use Symfony\Component\Mime\Exception\RfcComplianceException;
|
|
use Symfony\Component\Mime\RawMessage;
|
|
use TYPO3\CMS\Core\Crypto\PasswordHashing\InvalidPasswordHashException;
|
|
use TYPO3\CMS\Core\Crypto\PasswordHashing\PasswordHashFactory;
|
|
use TYPO3\CMS\Core\Log\LogManager;
|
|
use TYPO3\CMS\Core\Mail\MailerInterface;
|
|
use TYPO3\CMS\Core\Mail\TemplatedEmailFactory;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
use TYPO3\CMS\Core\Utility\MailUtility;
|
|
use TYPO3\CMS\Install\Service\SessionService;
|
|
|
|
/**
|
|
* Authenticates a user (currently comparing it through the install tool password, but could be extended)
|
|
* @internal only to be used within EXT:install
|
|
*/
|
|
readonly class AuthenticationService
|
|
{
|
|
public function __construct(
|
|
protected MailerInterface $mailer,
|
|
protected TemplatedEmailFactory $emailFactory,
|
|
) {}
|
|
|
|
/**
|
|
* Checks against a given password
|
|
*
|
|
* @param string|null $password
|
|
* @param ServerRequestInterface $request
|
|
* @return bool if authentication was successful, otherwise false
|
|
*/
|
|
public function loginWithPassword($password, ServerRequestInterface $request, SessionService $session): bool
|
|
{
|
|
$validPassword = false;
|
|
if ($password !== null && $password !== '') {
|
|
$installToolPassword = $GLOBALS['TYPO3_CONF_VARS']['BE']['installToolPassword'];
|
|
$hashFactory = GeneralUtility::makeInstance(PasswordHashFactory::class);
|
|
try {
|
|
$hashInstance = $hashFactory->get($installToolPassword, 'BE');
|
|
// @todo: This code should check required hash updates and update the hash if needed
|
|
$validPassword = $hashInstance->checkPassword($password, $installToolPassword);
|
|
} catch (InvalidPasswordHashException $e) {
|
|
$logger = GeneralUtility::makeInstance(LogManager::class)->getLogger(__CLASS__);
|
|
$logger->error(
|
|
'Invalid install tool password hash specified in "BE/installToolPassword" configuration.',
|
|
['exceptionMessage' => $e->getMessage()]
|
|
);
|
|
}
|
|
}
|
|
if ($validPassword) {
|
|
$session->setAuthorized();
|
|
$this->sendLoginSuccessfulMail($request);
|
|
return true;
|
|
}
|
|
$this->sendLoginFailedMail($request);
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* If install tool login mail is set, send a mail for a successful login.
|
|
*/
|
|
protected function sendLoginSuccessfulMail(ServerRequestInterface $request): void
|
|
{
|
|
$warningEmailAddress = $GLOBALS['TYPO3_CONF_VARS']['BE']['warning_email_addr'];
|
|
if (!$warningEmailAddress) {
|
|
return;
|
|
}
|
|
$email = $this->emailFactory->createWithOverrides(
|
|
[20 => 'EXT:install/Resources/Private/Templates/Email/'],
|
|
[],
|
|
[],
|
|
$request,
|
|
);
|
|
$email
|
|
->to($warningEmailAddress)
|
|
->subject('Install Tool Login at \'' . $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'] . '\'')
|
|
->from(new Address($this->getSenderEmailAddress(), $this->getSenderEmailName()))
|
|
->setTemplate('Security/InstallToolLogin');
|
|
$this->sendEmail($email);
|
|
}
|
|
|
|
/**
|
|
* If install tool login mail is set, send a mail for a failed login.
|
|
*/
|
|
protected function sendLoginFailedMail(ServerRequestInterface $request): void
|
|
{
|
|
$warningEmailAddress = $GLOBALS['TYPO3_CONF_VARS']['BE']['warning_email_addr'];
|
|
if (!$warningEmailAddress) {
|
|
return;
|
|
}
|
|
$formValues = $request->getParsedBody()['install'] ?? $request->getQueryParams()['install'] ?? null;
|
|
$email = $this->emailFactory->createWithOverrides(
|
|
[20 => 'EXT:install/Resources/Private/Templates/Email/'],
|
|
[],
|
|
[],
|
|
$request,
|
|
);
|
|
$email
|
|
->to($warningEmailAddress)
|
|
->subject('Install Tool Login ATTEMPT at \'' . $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'] . '\'')
|
|
->from(new Address($this->getSenderEmailAddress(), $this->getSenderEmailName()))
|
|
->setTemplate('Security/InstallToolLoginAttempt');
|
|
$this->sendEmail($email);
|
|
}
|
|
|
|
/**
|
|
* Sends an email and gracefully logs if the mail could not be sent due to configuration errors.
|
|
*
|
|
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface
|
|
*/
|
|
protected function sendEmail(RawMessage $email): void
|
|
{
|
|
try {
|
|
$this->mailer->send($email);
|
|
} catch (TransportException $e) {
|
|
$logger = GeneralUtility::makeInstance(LogManager::class)->getLogger(__CLASS__);
|
|
$logger->warning('Could not send notification email to ' . $this->getSenderEmailAddress() . ' due to mailer settings error', [
|
|
'recipientList' => $this->getSenderEmailAddress(),
|
|
'exception' => $e,
|
|
]);
|
|
} catch (RfcComplianceException $e) {
|
|
$logger = GeneralUtility::makeInstance(LogManager::class)->getLogger(__CLASS__);
|
|
$logger->warning('Could not send notification email to ' . $this->getSenderEmailAddress() . ' due to invalid email address', [
|
|
'recipientList' => $this->getSenderEmailAddress(),
|
|
'exception' => $e,
|
|
]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get sender address from configuration
|
|
* ['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress']
|
|
* If this setting is empty fall back to 'no-reply@example.com'
|
|
*
|
|
* @return string Returns an email address
|
|
*/
|
|
protected function getSenderEmailAddress()
|
|
{
|
|
return MailUtility::getSystemFromAddress();
|
|
}
|
|
|
|
/**
|
|
* Gets sender name from configuration
|
|
* ['TYPO3_CONF_VARS']['MAIL']['defaultMailFromName']
|
|
* If this setting is empty, it falls back to a default string.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function getSenderEmailName()
|
|
{
|
|
return MailUtility::getSystemFromName() ?: 'TYPO3 CMS install tool';
|
|
}
|
|
}
|