* @link http://www.oxidmodule.com */ declare(strict_types=1); namespace D3\Webauthn\Application\Controller\Admin; use D3\Webauthn\Application\Model\Credential\PublicKeyCredential; use D3\Webauthn\Application\Model\Credential\PublicKeyCredentialList; use D3\Webauthn\Application\Model\Exceptions\WebauthnCreateException; use D3\Webauthn\Application\Model\Exceptions\WebauthnException; use D3\Webauthn\Application\Model\Webauthn; use D3\Webauthn\Modules\Application\Model\d3_User_Webauthn; use Doctrine\DBAL\Driver\Exception as DoctrineDriverException; use Doctrine\DBAL\Exception as DoctrineException; use Exception; use OxidEsales\Eshop\Application\Controller\Admin\AdminDetailsController; use OxidEsales\Eshop\Application\Model\User; use OxidEsales\Eshop\Core\Registry; use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; class d3user_webauthn extends AdminDetailsController { protected $_sSaveError = null; protected $_sThisTemplate = 'd3user_webauthn.tpl'; /** * @return string */ public function render(): string { $this->addTplParam('readonly', !(oxNew(Webauthn::class)->isAvailable())); parent::render(); $soxId = $this->getEditObjectId(); if (isset($soxId) && $soxId != "-1") { /** @var d3_User_Webauthn $oUser */ $oUser = $this->getUserObject(); if ($oUser->load($soxId)) { $this->addTplParam("oxid", $oUser->getId()); } else { $this->addTplParam("oxid", '-1'); } $this->addTplParam("edit", $oUser); } if ($this->_sSaveError) { $this->addTplParam("sSaveError", $this->_sSaveError); } return $this->_sThisTemplate; } /** * @return void */ public function requestNewCredential(): void { try { $this->setPageType( 'requestnew' ); $this->setAuthnRegister(); } catch (Exception|ContainerExceptionInterface|NotFoundExceptionInterface|DoctrineDriverException $e) { Registry::getUtilsView()->addErrorToDisplay($e); Registry::getLogger()->error($e->getMessage(), ['UserId' => $this->getEditObjectId()]); Registry::getLogger()->debug($e->getTraceAsString()); Registry::getUtils()->redirect('index.php?cl=d3user_webauthn'); } } /** * @return void */ public function saveAuthn(): void { try { if ( strlen( Registry::getRequest()->getRequestEscapedParameter( 'error' ) ) ) { /** @var WebauthnCreateException $e */ $e = oxNew(WebauthnCreateException::class, Registry::getRequest()->getRequestEscapedParameter( 'error' )); throw $e; } if ( strlen( Registry::getRequest()->getRequestEscapedParameter( 'credential' ) ) ) { /** @var Webauthn $webauthn */ $webauthn = oxNew( Webauthn::class ); $webauthn->saveAuthn( Registry::getRequest()->getRequestEscapedParameter( 'credential' ), Registry::getRequest()->getRequestEscapedParameter( 'keyname' ) ); } } catch (WebauthnException|Exception|NotFoundExceptionInterface|ContainerExceptionInterface|DoctrineDriverException $e) { Registry::getLogger()->error($e->getDetailedErrorMessage(), ['UserId' => $this->getEditObjectId()]); Registry::getLogger()->debug($e->getTraceAsString()); Registry::getUtilsView()->addErrorToDisplay($e); } } /** * @param $pageType * @return void */ public function setPageType($pageType): void { $this->addTplParam('pageType', $pageType); } /** * @throws ContainerExceptionInterface * @throws DoctrineDriverException * @throws NotFoundExceptionInterface * @throws DoctrineException * @throws WebauthnException */ public function setAuthnRegister(): void { $authn = oxNew(Webauthn::class); $user = $this->getUserObject(); $user->load($this->getEditObjectId()); $publicKeyCredentialCreationOptions = $authn->getCreationOptions($user); $this->addTplParam( 'webauthn_publickey_create', $publicKeyCredentialCreationOptions ); $this->addTplParam('isAdmin', isAdmin()); $this->addTplParam('keyname', Registry::getRequest()->getRequestEscapedParameter('credenialname')); } /** * @param $userId * * @return array * @throws ContainerExceptionInterface * @throws DoctrineDriverException * @throws DoctrineException * @throws NotFoundExceptionInterface */ public function getCredentialList($userId): array { $oUser = $this->getUserObject(); $oUser->load($userId); $publicKeyCrendetials = oxNew(PublicKeyCredentialList::class); return $publicKeyCrendetials->getAllFromUser($oUser)->getArray(); } /** * @return User */ public function getUserObject(): User { return oxNew(User::class); } /** * @return void */ public function deleteKey(): void { /** @var PublicKeyCredential $credential */ $credential = oxNew(PublicKeyCredential::class); $credential->delete(Registry::getRequest()->getRequestEscapedParameter('deleteoxid')); } }