webauthn/src/Application/Model/WebauthnErrors.php

70 lines
2.5 KiB
PHP
Raw Normal View History

<?php
2022-11-04 22:02:44 +01:00
/**
* This Software is the property of Data Development and is protected
* by copyright law - it is NOT Freeware.
* Any unauthorized use of this software without a valid license
* is a violation of the license agreement and will be prosecuted by
* civil and criminal law.
* http://www.shopmodule.com
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link http://www.oxidmodule.com
*/
declare(strict_types=1);
namespace D3\Webauthn\Application\Model;
use OxidEsales\Eshop\Core\Registry;
class WebauthnErrors
{
2022-11-01 23:42:25 +01:00
public const INVALIDSTATE = 'invalidstateerror';
public const NOTALLWED = 'notallowederror';
public const ABORT = 'aborterror';
public const CONSTRAINT = 'constrainterror';
public const NOTSUPPORTED = 'notsupporederror';
public const UNKNOWN = 'unknownerror';
public const NOPUBKEYSUPPORT = 'd3nopublickeycredentialsupportederror';
/**
* @param $msg
2022-11-01 23:42:25 +01:00
* @param null $type
* @return string
*/
2022-11-01 23:42:25 +01:00
public function translateError($msg, $type = null): string
{
$lang = Registry::getLang();
2022-11-01 23:42:25 +01:00
$type = $type ? '_'.$type : null;
switch ($this->getErrIdFromMessage($msg)) {
case self::INVALIDSTATE:
2022-11-01 23:42:25 +01:00
return $lang->translateString('D3_WEBAUTHN_ERR_INVALIDSTATE'.$type, null, true);
case self::NOTALLWED:
return $lang->translateString('D3_WEBAUTHN_ERR_NOTALLOWED', null, true);
case self::ABORT:
return $lang->translateString('D3_WEBAUTHN_ERR_ABORT', null, true);
case self::CONSTRAINT:
return $lang->translateString('D3_WEBAUTHN_ERR_CONSTRAINT', null, true);
case self::NOTSUPPORTED:
return $lang->translateString('D3_WEBAUTHN_ERR_NOTSUPPORTED', null, true);
case self::UNKNOWN:
return $lang->translateString('D3_WEBAUTHN_ERR_UNKNOWN', null, true);
case self::NOPUBKEYSUPPORT:
return $lang->translateString('D3_WEBAUTHN_ERR_NOPUBKEYSUPPORT', null, true);
}
2022-11-01 23:42:25 +01:00
return $lang->translateString('D3_WEBAUTHN_ERR_TECHNICALERROR', null, true);
}
/**
* @param string $msg
* @return string
*/
public function getErrIdFromMessage(string $msg): string
{
return trim(strtolower(substr($msg, 0, strpos($msg, ':'))));
}
}