76 lines
2.4 KiB
PHP
76 lines
2.4 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* 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
|
||
|
*/
|
||
|
|
||
|
namespace D3\Totp\Application\Controller;
|
||
|
|
||
|
use D3\Totp\Application\Model\d3backupcodelist;
|
||
|
use D3\Totp\Application\Model\d3totp;
|
||
|
use OxidEsales\Eshop\Application\Controller\FrontendController;
|
||
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
||
|
use OxidEsales\Eshop\Core\Registry;
|
||
|
|
||
|
class d3totplogin extends FrontendController
|
||
|
{
|
||
|
protected $_sThisTemplate = 'd3totplogin.tpl';
|
||
|
|
||
|
public function render()
|
||
|
{
|
||
|
if (Registry::getSession()->hasVariable(d3totp::TOTP_SESSION_VARNAME) ||
|
||
|
false == Registry::getSession()->hasVariable('d3totpCurrentUser')
|
||
|
) {
|
||
|
Registry::getUtils()->redirect('index.php?cl=start', true, 302);
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
$this->addTplParam('navFormParams', Registry::getSession()->getVariable('d3totpNavFormParams'));
|
||
|
|
||
|
return parent::render();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string|void
|
||
|
* @throws DatabaseConnectionException
|
||
|
*/
|
||
|
public function getBackupCodeCountMessage()
|
||
|
{
|
||
|
$oBackupCodeList = oxNew(d3backupcodelist::class);
|
||
|
$iCount = $oBackupCodeList->getAvailableCodeCount(Registry::getSession()->getVariable('d3totpCurrentUser'));
|
||
|
|
||
|
if ($iCount < 4) {
|
||
|
return sprintf(
|
||
|
Registry::getLang()->translateString('D3_TOTP_AVAILBACKUPCODECOUNT', null, true),
|
||
|
$iCount
|
||
|
);
|
||
|
};
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
public function getPreviousClass()
|
||
|
{
|
||
|
return Registry::getSession()->getVariable('d3totpCurrentClass');
|
||
|
}
|
||
|
|
||
|
public function previousClassIsOrderStep()
|
||
|
{
|
||
|
$sClassKey = Registry::getSession()->getVariable('d3totpCurrentClass');
|
||
|
$resolvedClass = Registry::getControllerClassNameResolver()->getClassNameById($sClassKey);
|
||
|
$resolvedClass = $resolvedClass ? $resolvedClass : 'start';
|
||
|
|
||
|
/** @var FrontendController $oController */
|
||
|
$oController = oxNew($resolvedClass);
|
||
|
return $oController->getIsOrderStep();
|
||
|
}
|
||
|
}
|