2022-09-13 17:00:52 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2022-09-26 15:22:26 +02:00
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* https://www.d3data.de
|
2022-09-13 17:00:52 +02:00
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
2022-09-26 15:22:26 +02:00
|
|
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
2022-09-13 17:00:52 +02:00
|
|
|
*/
|
|
|
|
|
2022-09-28 00:08:36 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-09-13 17:00:52 +02:00
|
|
|
namespace D3\Totp\Modules\Core;
|
|
|
|
|
|
|
|
use D3\Totp\Application\Model\d3totp;
|
2022-11-10 00:00:50 +01:00
|
|
|
use D3\Totp\Application\Model\d3totp_conf;
|
2022-09-13 17:00:52 +02:00
|
|
|
use Doctrine\DBAL\DBALException;
|
2022-09-30 00:06:20 +02:00
|
|
|
use OxidEsales\Eshop\Core\Config;
|
2022-09-13 17:00:52 +02:00
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
use OxidEsales\Eshop\Core\Session;
|
|
|
|
|
|
|
|
class d3_totp_utils extends d3_totp_utils_parent
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
* @throws DBALException
|
|
|
|
* @throws DatabaseConnectionException
|
|
|
|
*/
|
|
|
|
public function checkAccessRights()
|
|
|
|
{
|
|
|
|
$blAuth = parent::checkAccessRights();
|
2022-09-30 00:06:20 +02:00
|
|
|
$blAuth = $this->d3AuthHook($blAuth);
|
2022-11-24 20:17:50 +01:00
|
|
|
$userID = $this->d3TotpGetSessionObject()->getVariable(d3totp_conf::OXID_ADMIN_AUTH);
|
2022-11-23 09:21:52 +01:00
|
|
|
$totpAuth = (bool) $this->d3TotpGetSessionObject()->getVariable(d3totp_conf::SESSION_ADMIN_AUTH);
|
2022-09-13 17:00:52 +02:00
|
|
|
/** @var d3totp $totp */
|
|
|
|
$totp = $this->d3GetTotpObject();
|
|
|
|
$totp->loadByUserId($userID);
|
|
|
|
|
2022-09-30 00:06:20 +02:00
|
|
|
//check forced 2FA for all admin users
|
2022-09-13 17:00:52 +02:00
|
|
|
if (
|
|
|
|
$this->d3IsAdminForce2FA()
|
|
|
|
&& $blAuth
|
|
|
|
&& $totp->isActive() === false
|
|
|
|
) {
|
2022-09-28 00:08:36 +02:00
|
|
|
$this->redirect('index.php?cl=d3force_2fa');
|
2022-09-13 17:00:52 +02:00
|
|
|
if (false == defined('OXID_PHP_UNIT')) {
|
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
exit;
|
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//staten der prüfung vom einmalpasswort
|
|
|
|
if ($blAuth && $totp->isActive() && false === $totpAuth) {
|
2022-11-10 00:00:50 +01:00
|
|
|
$this->redirect('index.php?cl=d3totpadminlogin');
|
2022-09-13 17:00:52 +02:00
|
|
|
if (false == defined('OXID_PHP_UNIT')) {
|
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
exit;
|
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $blAuth;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Session
|
|
|
|
*/
|
2022-11-09 12:03:16 +01:00
|
|
|
public function d3TotpGetSessionObject()
|
2022-09-13 17:00:52 +02:00
|
|
|
{
|
|
|
|
return Registry::getSession();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return d3totp
|
|
|
|
*/
|
|
|
|
public function d3GetTotpObject()
|
|
|
|
{
|
|
|
|
return oxNew(d3totp::class);
|
|
|
|
}
|
|
|
|
|
2022-09-30 00:06:20 +02:00
|
|
|
/**
|
|
|
|
* @return Config
|
|
|
|
*/
|
|
|
|
public function d3GetConfig(): Config
|
|
|
|
{
|
|
|
|
return Registry::getConfig();
|
|
|
|
}
|
|
|
|
|
2022-09-13 17:00:52 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2022-09-30 00:06:20 +02:00
|
|
|
protected function d3IsAdminForce2FA()
|
2022-09-13 17:00:52 +02:00
|
|
|
{
|
|
|
|
return $this->isAdmin() &&
|
2022-09-30 00:06:20 +02:00
|
|
|
$this->d3GetConfig()->getConfigParam('D3_TOTP_ADMIN_FORCE_2FA') === true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bool $blAuth
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function d3AuthHook(bool $blAuth): bool
|
|
|
|
{
|
|
|
|
return $blAuth;
|
2022-09-13 17:00:52 +02:00
|
|
|
}
|
|
|
|
}
|