2020-10-28 12:04:48 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use D3\Heidelpay\Controllers\Response;
|
|
|
|
use D3\Heidelpay\Models\Factory;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\SystemComponentException;
|
|
|
|
use OxidEsales\ComposerPlugin\Installer\Package\ShopPackageInstaller;
|
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
|
|
|
|
if (isset($_POST['CRITERION_force_sid'])) {
|
|
|
|
$_POST['force_sid'] = $_POST['CRITERION_force_sid'];
|
|
|
|
}
|
|
|
|
if (isset($_POST['CRITERION_heidelpay_input_position'])) {
|
|
|
|
$_POST['heidelpay_input_position'] = $_POST['CRITERION_heidelpay_input_position'];
|
|
|
|
}
|
|
|
|
if (isset($_POST['CRITERION_language'])) {
|
|
|
|
$_POST['language'] = $_POST['CRITERION_language'];
|
|
|
|
}
|
|
|
|
if (isset($_POST['CRITERION_lang'])) {
|
|
|
|
$_POST['lang'] = $_POST['CRITERION_lang'];
|
|
|
|
}
|
|
|
|
if (isset($_POST['CRITERION_rtoken'])) {
|
|
|
|
$_POST['rtoken'] = $_POST['CRITERION_rtoken'];
|
|
|
|
}
|
|
|
|
if (isset($_POST['CRITERION_stoken'])) {
|
|
|
|
$_POST['stoken'] = $_POST['CRITERION_stoken'];
|
|
|
|
}
|
|
|
|
if (isset($_POST['CRITERION_shp'])) {
|
|
|
|
$_POST['shp'] = $_POST['CRITERION_shp'];
|
|
|
|
}
|
|
|
|
if (isset($_POST['CRITERION_cutsomerip'])) {
|
|
|
|
$_SERVER["HTTP_X_FORWARDED_FOR"] = $_POST['CRITERION_cutsomerip'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (false == defined('D3_HEIDELPAY_PUBLIC_FILE')) {
|
|
|
|
define('D3_HEIDELPAY_PUBLIC_FILE', basename(__FILE__));
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once(__DIR__.'/../../../../../vendor/autoload.php');
|
|
|
|
|
|
|
|
$bootstrapFileName = getenv('ESHOP_BOOTSTRAP_PATH');
|
|
|
|
if (!empty($bootstrapFileName)) {
|
|
|
|
$bootstrapFileName = realpath(trim(getenv('ESHOP_BOOTSTRAP_PATH')));
|
|
|
|
} else {
|
|
|
|
$count = 0;
|
|
|
|
$bootstrapFileName = '../../../'. ShopPackageInstaller::SHOP_SOURCE_DIRECTORY .'/bootstrap.php';
|
|
|
|
$currentDirectory = __DIR__ . '/';
|
|
|
|
while ($count < 5) {
|
|
|
|
$count++;
|
|
|
|
if (file_exists($currentDirectory . $bootstrapFileName)) {
|
|
|
|
$bootstrapFileName = $currentDirectory . $bootstrapFileName;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$bootstrapFileName = '../' . $bootstrapFileName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(file_exists($bootstrapFileName) && !is_dir($bootstrapFileName))) {
|
|
|
|
$items = [
|
|
|
|
"Unable to find eShop bootstrap.php file.",
|
|
|
|
"You can override the path by using ESHOP_BOOTSTRAP_PATH environment variable.",
|
|
|
|
"\n"
|
|
|
|
];
|
|
|
|
|
|
|
|
$message = implode(" ", $items);
|
|
|
|
|
|
|
|
die($message);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once($bootstrapFileName);
|
|
|
|
|
|
|
|
ksort($_POST);
|
|
|
|
try {
|
|
|
|
/** @var Factory $factory */
|
|
|
|
$factory = oxNew(Factory::class);
|
2022-12-16 15:43:05 +01:00
|
|
|
$factory->getModuleConfiguration()->d3getLog()->info(
|
2020-10-28 12:04:48 +01:00
|
|
|
D3_HEIDELPAY_PUBLIC_FILE,
|
|
|
|
'none',
|
|
|
|
__LINE__,
|
|
|
|
D3_HEIDELPAY_PUBLIC_FILE . " got requested",
|
|
|
|
var_export($_POST, true)
|
|
|
|
);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
writeToLog($e->getMessage());
|
|
|
|
writeToLog($e->getTraceAsString());
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
/** @var Response $oResponse */
|
|
|
|
$oResponse = oxNew(Response::class);
|
|
|
|
$sReturn = $oResponse->init();
|
|
|
|
$returnUrl = $oResponse->getRedirectUrl();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
writeToLog($e->getMessage());
|
|
|
|
writeToLog($e->getTraceAsString());
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2022-12-16 15:43:05 +01:00
|
|
|
$factory->getModuleConfiguration()->d3getLog()->info(
|
2020-10-28 12:04:48 +01:00
|
|
|
D3_HEIDELPAY_PUBLIC_FILE,
|
|
|
|
'none',
|
|
|
|
__LINE__,
|
|
|
|
D3_HEIDELPAY_PUBLIC_FILE." return value",
|
|
|
|
$sReturn."::".$returnUrl
|
|
|
|
);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
writeToLog($e->getMessage());
|
|
|
|
writeToLog($e->getTraceAsString());
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($sReturn === Response::RESPONSE_REDIRECT) {
|
|
|
|
header("HTTP/1.1 200 OK");
|
|
|
|
header("Location: ".$returnUrl);
|
|
|
|
header("Connection: close");
|
|
|
|
} else {
|
|
|
|
echo $returnUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
Registry::getConfig()->pageClose();
|
|
|
|
} catch (SystemComponentException $e) {
|
|
|
|
echo $e->getCode(), PHP_EOL, $e->getMessage(), PHP_EOL, $e->getTraceAsString();
|
|
|
|
exit(__LINE__);
|
|
|
|
}
|