예제 #1
0
<?php

include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/../../init.php';
include dirname(__FILE__) . '/payu.php';
include dirname(__FILE__) . '/../../header.php';
$payu = new payu();
$response = $_REQUEST;
$baseUrl = Tools::getShopDomain(true, true) . __PS_BASE_URI__;
if ($response['status'] == 'failure') {
    $order_id = $response['txnid'] - 354572829452247;
    $transactionId = $response['mihpayid'];
    $log = Configuration::get('PAYU_LOGS');
    if ($log == 1) {
        $responseValue = str_replace("'", " ", implode(",", $response));
        $successQuery = "update ps_payu_order set payment_response='{$responseValue}' where id_order= " . $order_id;
        Db::getInstance()->Execute($successQuery);
    }
    $smarty->assign('baseUrl', $baseUrl);
    $smarty->assign('orderId', $order_id);
    $smarty->assign('transactionId', $transactionId);
    global $cart, $cookie;
    $total = $amount;
    $currency = new Currency(Tools::getValue('currency_payement', false) ? Tools::getValue('currency_payement') : $cookie->id_currency);
    $customer = new Customer((int) $cart->id_customer);
    $payu->validateOrder((int) $cart->id, _PS_OS_ERROR_, $total, $payu->displayName, NULL, NULL, (int) $currency->id, false, $customer->secure_key);
}
$smarty->display('failure.tpl');
$result = Db::getInstance()->getRow('SELECT * FROM ' . _DB_PREFIX_ . 'orders WHERE id_cart = ' . (int) $cart->id);
Tools::redirectLink(__PS_BASE_URI__ . 'order-detail.php?id_order=' . $result['id_order']);
include dirname(__FILE__) . '/../../footer.php';
예제 #2
0
    if ($log == 1) {
        $responseValue = str_replace("'", " ", implode(",", $response));
        $successQuery = "update ps_payu_order set payment_response='{$responseValue}' where id_order= " . $order_id;
        Db::getInstance()->Execute($successQuery);
    }
    $status = $response['status'];
    $saltString = $salt . '|' . $status . '|' . $reverseKeyString;
    $sentHashString = strtolower(hash('sha512', $saltString));
    $responseHashString = $_REQUEST['hash'];
    if ($sentHashString != $responseHashString) {
        $history = new OrderHistory();
        $history->id_order = (int) $order_id;
        $history->changeIdOrderState(Configuration::get('PS_OS_ERROR'), $history->id_order);
        $history->add();
        $smarty->display('failure.tpl');
    } else {
        global $cart, $cookie;
        $total = $amount;
        $currency = new Currency(Tools::getValue('currency_payement', false) ? Tools::getValue('currency_payement') : $cookie->id_currency);
        $customer = new Customer((int) $cart->id_customer);
        if ($response['status'] == 'success') {
            $payu->validateOrder((int) $cart->id, Configuration::get('PS_OS_PAYMENT'), $total, $payu->displayName, NULL, NULL, (int) $currency->id, false, $customer->secure_key);
        } else {
            $payu->validateOrder((int) $cart->id, Configuration::get('PS_OS_PREPARATION'), $total, $payu->displayName, NULL, NULL, (int) $currency->id, false, $customer->secure_key);
        }
        $smarty->display('success.tpl');
        $result = Db::getInstance()->getRow('SELECT * FROM ' . _DB_PREFIX_ . 'orders WHERE id_cart = ' . (int) $cart->id);
        Tools::redirectLink(__PS_BASE_URI__ . 'order-detail.php?id_order=' . $result['id_order']);
    }
}
include dirname(__FILE__) . '/../../footer.php';