webauthn/src/Modules/Application/Controller/Admin/d3_LoginController_Webauthn...

109 lines
3.5 KiB
PHP
Raw Normal View History

2022-10-24 22:24:40 +02:00
<?php
/**
2022-11-04 22:45:47 +01: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-10-24 22:24:40 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-11-04 22:45:47 +01:00
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
2022-10-24 22:24:40 +02:00
*/
2022-11-04 22:02:44 +01:00
declare(strict_types=1);
2022-10-24 22:24:40 +02:00
namespace D3\Webauthn\Modules\Application\Controller\Admin;
2022-10-29 00:19:34 +02:00
use D3\Webauthn\Application\Model\Webauthn;
2022-10-26 22:27:25 +02:00
use D3\Webauthn\Application\Model\WebauthnConf;
2022-10-31 23:17:04 +01:00
use D3\Webauthn\Modules\Application\Model\d3_User_Webauthn;
2022-10-29 00:19:34 +02:00
use Doctrine\DBAL\Driver\Exception as DoctrineException;
use Doctrine\DBAL\Exception;
2022-10-24 22:24:40 +02:00
use OxidEsales\Eshop\Application\Model\User;
use OxidEsales\Eshop\Core\Registry;
2022-10-29 00:19:34 +02:00
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
2022-10-24 22:24:40 +02:00
class d3_LoginController_Webauthn extends d3_LoginController_Webauthn_parent
{
/**
2022-10-29 00:19:34 +02:00
* @return Webauthn
2022-10-24 22:24:40 +02:00
*/
2022-10-29 00:19:34 +02:00
public function d3GetWebauthnObject(): Webauthn
2022-10-24 22:24:40 +02:00
{
2022-10-29 00:19:34 +02:00
return oxNew(Webauthn::class);
2022-10-24 22:24:40 +02:00
}
/**
* @return mixed|string
2022-10-31 00:11:06 +01:00
* @throws ContainerExceptionInterface
* @throws DoctrineException
* @throws Exception
* @throws NotFoundExceptionInterface
2022-10-24 22:24:40 +02:00
*/
public function checklogin()
{
2022-10-31 23:17:04 +01:00
$lgn_user = Registry::getRequest()->getRequestParameter('user') ?:
Registry::getSession()->getVariable(WebauthnConf::WEBAUTHN_ADMIN_SESSION_LOGINUSER);
2022-11-08 10:19:43 +01:00
$password = Registry::getRequest()->getRequestParameter('pwd');
2022-10-24 22:24:40 +02:00
2022-10-31 23:17:04 +01:00
/** @var d3_User_Webauthn $user */
$user = $this->d3WebauthnGetUserObject();
2022-10-31 23:17:04 +01:00
$userId = $user->d3GetLoginUserId($lgn_user, 'malladmin');
if ($lgn_user && $userId &&
false === Registry::getSession()->hasVariable(WebauthnConf::WEBAUTHN_ADMIN_SESSION_AUTH) &&
2022-11-13 21:43:33 +01:00
(!strlen(trim((string) $password)))
2022-10-31 23:17:04 +01:00
) {
Registry::getSession()->setVariable(
WebauthnConf::WEBAUTHN_ADMIN_PROFILE,
Registry::getRequest()->getRequestEscapedParameter('profile')
);
Registry::getSession()->setVariable(
WebauthnConf::WEBAUTHN_ADMIN_CHLANGUAGE,
Registry::getRequest()->getRequestEscapedParameter('chlanguage')
);
2022-10-29 00:19:34 +02:00
$webauthn = $this->d3GetWebauthnObject();
2022-10-24 22:24:40 +02:00
2022-10-29 00:19:34 +02:00
if ($webauthn->isActive($userId)
&& !Registry::getSession()->getVariable(WebauthnConf::WEBAUTHN_ADMIN_SESSION_AUTH)
2022-10-29 00:19:34 +02:00
) {
Registry::getSession()->setVariable(
WebauthnConf::WEBAUTHN_ADMIN_SESSION_CURRENTCLASS,
2022-10-31 00:11:06 +01:00
$this->getClassKey() != 'd3webauthnadminlogin' ? $this->getClassKey() : 'admin_start'
);
Registry::getSession()->setVariable(
WebauthnConf::WEBAUTHN_ADMIN_SESSION_CURRENTUSER,
2022-10-31 00:11:06 +01:00
$userId
);
Registry::getSession()->setVariable(
WebauthnConf::WEBAUTHN_ADMIN_SESSION_LOGINUSER,
2022-10-31 00:11:06 +01:00
$lgn_user
);
2022-10-29 00:19:34 +02:00
return "d3webauthnadminlogin";
2022-10-24 22:24:40 +02:00
}
}
2022-10-29 00:19:34 +02:00
return parent::checklogin();
}
2022-11-04 22:02:44 +01:00
/**
* @return void
*/
public function d3WebauthnCancelLogin(): void
2022-10-24 22:24:40 +02:00
{
$oUser = $this->d3WebauthnGetUserObject();
2022-10-24 22:24:40 +02:00
$oUser->logout();
}
/**
* @return User
*/
public function d3WebauthnGetUserObject(): User
2022-10-24 22:24:40 +02:00
{
return oxNew(User::class);
}
}