webauthn/src/Application/Model/RelyingPartyEntity.php

65 lines
1.5 KiB
PHP
Executable File

<?php
/**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
declare(strict_types=1);
namespace D3\Webauthn\Application\Model;
use D3\TestingTools\Production\IsMockable;
use OxidEsales\Eshop\Application\Model\Shop;
use OxidEsales\Eshop\Core\Config;
use Webauthn\PublicKeyCredentialRpEntity;
class RelyingPartyEntity extends PublicKeyCredentialRpEntity
{
use IsMockable;
public function __construct()
{
$this->d3CallMockableFunction(
[
PublicKeyCredentialRpEntity::class,
'__construct',
],
[
$this->getActiveShop()->getFieldData('oxname'),
$this->getRPShopUrl(),
]
);
}
/**
* @return string
*/
public function getShopUrlByHost(): string
{
return preg_replace('/(^www\.)(.*)/mi', '$2', $_SERVER['HTTP_HOST']);
}
/**
* @return string|null
*/
public function getRPShopUrl(): ?string
{
return $this->getShopUrlByHost();
}
/**
* @return Shop
*/
public function getActiveShop(): Shop
{
return d3GetOxidDIC()->get('d3ox.webauthn.'.Config::class)->getActiveShop();
}
}