85 lines
2.7 KiB
PHP
85 lines
2.7 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\Beuser\ViewHelpers;
|
|
|
|
use TYPO3\CMS\Core\Authentication\BackendUserAuthentication;
|
|
use TYPO3\CMS\Core\Authentication\Mfa\MfaProviderRegistry;
|
|
use TYPO3\CMS\Core\Localization\LanguageService;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractTagBasedViewHelper;
|
|
|
|
/**
|
|
* ViewHelper to render MFA status information.
|
|
*
|
|
* ```
|
|
* <beuser:mfaStatus userUid="{backendUser.uid}" />
|
|
* ```
|
|
*
|
|
* @internal
|
|
*/
|
|
final class MfaStatusViewHelper extends AbstractTagBasedViewHelper
|
|
{
|
|
protected $tagName = 'span';
|
|
|
|
public function __construct(
|
|
private readonly MfaProviderRegistry $mfaProviderRegistry
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
|
|
public function initializeArguments(): void
|
|
{
|
|
parent::initializeArguments();
|
|
$this->registerArgument('userUid', 'int', 'The uid of the user to check', true);
|
|
}
|
|
|
|
public function render(): string
|
|
{
|
|
$userUid = (int)($this->arguments['userUid'] ?? 0);
|
|
if (!$userUid) {
|
|
return '';
|
|
}
|
|
|
|
$backendUser = GeneralUtility::makeInstance(BackendUserAuthentication::class);
|
|
$backendUser->enablecolumns = ['deleted' => true];
|
|
$backendUser->setBeUserByUid($userUid);
|
|
|
|
// Check if user has active providers
|
|
if (!$this->mfaProviderRegistry->hasActiveProviders($backendUser)) {
|
|
return '';
|
|
}
|
|
|
|
// Check locked providers
|
|
if ($this->mfaProviderRegistry->hasLockedProviders($backendUser)) {
|
|
$this->tag->addAttribute('class', 'badge badge-warning');
|
|
$this->tag->setContent(htmlspecialchars($this->getLanguageService()->sL('LLL:EXT:beuser/Resources/Private/Language/locallang.xlf:lockedMfaProviders')));
|
|
return $this->tag->render();
|
|
}
|
|
|
|
// Add mfa enabled label since we have active providers and non of them are locked
|
|
$this->tag->addAttribute('class', 'badge badge-info');
|
|
$this->tag->setContent(htmlspecialchars($this->getLanguageService()->sL('LLL:EXT:beuser/Resources/Private/Language/locallang.xlf:mfaEnabled')));
|
|
return $this->tag->render();
|
|
}
|
|
|
|
private function getLanguageService(): LanguageService
|
|
{
|
|
return $GLOBALS['LANG'];
|
|
}
|
|
}
|