2018-01-25 11:30:17 +01:00
|
|
|
<?php
|
|
|
|
|
2018-02-23 11:06:24 +01:00
|
|
|
namespace D3\Devhelper\Application\Controller;
|
|
|
|
|
2018-02-23 12:30:57 +01:00
|
|
|
use D3\Devhelper\Modules\Application\Controller as ModuleController;
|
|
|
|
use D3\Devhelper\Modules\Core as ModuleCore;
|
2020-11-11 22:29:10 +01:00
|
|
|
use Exception;
|
2018-02-23 11:06:24 +01:00
|
|
|
use OxidEsales\Eshop\Application\Controller\FrontendController;
|
2018-02-23 12:30:57 +01:00
|
|
|
use OxidEsales\Eshop\Application\Controller\ThankYouController;
|
|
|
|
use OxidEsales\Eshop\Application\Model\User;
|
|
|
|
use OxidEsales\Eshop\Core\Email;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\UserException;
|
2018-01-25 11:30:17 +01:00
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 © D³ Data Development, Thomas Dartsch
|
2018-02-23 12:30:57 +01:00
|
|
|
* @author D³ Data Development - Daniel Seifert <info@shopmodule.com>
|
2018-01-25 11:30:17 +01:00
|
|
|
* @link http://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
2018-02-23 11:06:24 +01:00
|
|
|
class d3dev extends FrontendController
|
2018-01-25 11:30:17 +01:00
|
|
|
{
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
$this->_authenticate();
|
|
|
|
|
|
|
|
parent::init();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function _authenticate ()
|
|
|
|
{
|
|
|
|
try {
|
2020-11-11 22:29:10 +01:00
|
|
|
$sUser = Registry::getRequest()->getRequestEscapedParameter('usr');
|
|
|
|
$sPassword = Registry::getRequest()->getRequestEscapedParameter('pwd');
|
2018-01-25 11:30:17 +01:00
|
|
|
|
|
|
|
if ( !$sUser || !$sPassword ) {
|
|
|
|
$sUser = $_SERVER[ 'PHP_AUTH_USER' ];
|
|
|
|
$sPassword = $_SERVER[ 'PHP_AUTH_PW' ];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !$sUser || !$sPassword ) {
|
|
|
|
$sHttpAuthorization = $_REQUEST[ 'HTTP_AUTHORIZATION' ];
|
|
|
|
if ( $sHttpAuthorization ) {
|
|
|
|
$sUser = null;
|
|
|
|
$sPassword = null;
|
|
|
|
$aHttpAuthorization = explode( ' ', $sHttpAuthorization );
|
|
|
|
if ( is_array( $aHttpAuthorization ) && count( $aHttpAuthorization ) >= 2 && strtolower( $aHttpAuthorization[ 0 ] ) == 'basic' ) {
|
|
|
|
$sBasicAuthorization = base64_decode( $aHttpAuthorization[ 1 ] );
|
|
|
|
$aBasicAuthorization = explode( ':', $sBasicAuthorization );
|
|
|
|
if ( is_array( $aBasicAuthorization ) && count( $aBasicAuthorization ) >= 2 ) {
|
|
|
|
$sUser = $aBasicAuthorization[ 0 ];
|
|
|
|
$sPassword = $aBasicAuthorization[ 1 ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-23 12:30:57 +01:00
|
|
|
$oUser = oxNew( User::class );
|
2018-01-25 11:30:17 +01:00
|
|
|
if ( !$sUser || !$sPassword || !$oUser->login( $sUser, $sPassword ) ) {
|
2020-11-11 22:29:10 +01:00
|
|
|
throw oxNew( UserException::class, 'EXCEPTION_USER_NOVALIDLOGIN' );
|
2018-01-25 11:30:17 +01:00
|
|
|
}
|
|
|
|
}
|
2020-11-11 22:29:10 +01:00
|
|
|
catch ( Exception $oEx ) {
|
2018-01-25 11:30:17 +01:00
|
|
|
$oShop = Registry::getConfig()->getActiveShop();
|
2018-02-23 12:30:57 +01:00
|
|
|
header( 'WWW-Authenticate: Basic realm="' . $oShop->getFieldData('oxname') . '"' );
|
2018-01-25 11:30:17 +01:00
|
|
|
header( 'HTTP/1.0 401 Unauthorized' );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-23 12:30:57 +01:00
|
|
|
* @throws DatabaseConnectionException
|
|
|
|
* @throws DatabaseErrorException
|
2018-01-25 11:30:17 +01:00
|
|
|
*/
|
|
|
|
public function showOrderMailContent()
|
|
|
|
{
|
|
|
|
header('Content-type: text/html; charset='.Registry::getLang()->translateString('charset'));
|
|
|
|
|
2018-02-23 12:30:57 +01:00
|
|
|
if (Registry::getConfig()->getActiveShop()->isProductiveMode()
|
2020-11-11 22:29:10 +01:00
|
|
|
|| false == Registry::getConfig()->getConfigParam(ModuleCore\d3_dev_conf::OPTION_SHOWMAILSINBROWSER)
|
2018-01-25 11:30:17 +01:00
|
|
|
) {
|
|
|
|
Registry::getUtils()->redirect(Registry::getConfig()->getShopUrl().'index.php?cl=start');
|
|
|
|
}
|
|
|
|
|
2020-11-11 22:29:10 +01:00
|
|
|
$sTpl = Registry::getRequest()->getRequestEscapedParameter('type');
|
2018-01-25 11:30:17 +01:00
|
|
|
|
2018-02-23 12:30:57 +01:00
|
|
|
/** @var ModuleController\d3_dev_thankyou $oThankyou */
|
|
|
|
$oThankyou = oxNew(ThankYouController::class);
|
2018-01-25 11:30:17 +01:00
|
|
|
$oOrder = $oThankyou->d3GetLastOrder();
|
|
|
|
|
2018-02-23 12:30:57 +01:00
|
|
|
/** @var ModuleCore\d3_dev_oxemail $oEmail */
|
|
|
|
$oEmail = oxNew(Email::class);
|
2018-01-25 11:30:17 +01:00
|
|
|
echo $oEmail->d3GetOrderMailContent($oOrder, $sTpl);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
}
|