Prestashop支付模块返回500服务器状态

时间:2017-11-27 11:43:39

标签: php symfony callback prestashop response

我试图弄清楚如何为我的API镜头提供一个良好的响应状态,这是对prestashop。 这是validation.php的代码:

<?php

class InpayValidationModuleFrontController extends ModuleFrontController
{
    /**
     * @see FrontController::postProcess()
     */

    public function postProcess()
    {

        if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['invoiceCode'] && $_POST['status'] && $_POST['optData']) {
            $apiHash = $_SERVER['HTTP_API_HASH'];
            $query = http_build_query($_POST);
            $hash = hash_hmac("sha512", $query, $this->module->secret_key);
            if ($apiHash == $hash) {

                PrestaShopLogger::addLog(json_encode(_PS_VERSION_), 1);

                    parse_str($_POST['optData'], $optData);
                $id_cart = intval($optData['cartId']);
                $query = "SELECT * from " . _DB_PREFIX_ . "orders where id_cart='" . $id_cart . "'";
                //$query = "SELECT * from aps_orders where id_cart='67867'";
                $row = Db::getInstance()->getRow($query);

                if ($_POST['status'] == 'confirmed' && $row['current_state'] != null) {
                    $sql = "UPDATE " . _DB_PREFIX_ . "orders SET current_state='2' WHERE id_cart='" . $id_cart . "'";
                    if(Db::getInstance()->Execute($sql))
                        Tools::redirect(__FILE__,'payment_confirmation.tpl');

                } else {
                    $cart = new Cart($id_cart);

                    if ($cart->id_customer == 0 || $cart->id_address_delivery == 0 || $cart->id_address_invoice == 0 || !$this->module->active) {
                        //die('Cannot create order for this cart.');
                        Tools::redirect(__FILE__,'payment_cart_error.tpl');

                    }

                    $customer = new Customer($cart->id_customer);

                    if (!Validate::isLoadedObject($customer)) {
                        //die('No customer for this order.');
                        Tools::redirect(__FILE__,'payment_customer_error.tpl');

                    }

                    $currency = new Currency((int)($cart->id_currency));
                    $paid_amount = $_POST['amount'];
                    $order_amount = $cart->getOrderTotal(true, Cart::BOTH);


                    if ($_POST['status'] == 'confirmed') {
                        $paymentId = 2;
                    } elseif ($_POST['status'] == 'received') {
                        $paymentId = 11;
                    }

                    $result = $this->module->validateOrder(
                        $cart->id,
                        //Configuration::get('PS_OS_PAYMENT'),
                        $paymentId,
                        $order_amount,
                        $this->module->displayName,
                        'Invoice Code: ' . $_POST['invoiceCode'],
                        array(),
                        intval($currency->id),
                        false,
                        $customer->secure_key
                    );
                    //die($result);
                    Tools::redirect(__FILE__,'payment_confirmation.tpl');


                }
            } else {
                return null;
            }


        }

    }
}

当我使用die();函数时,服务器返回200响应状态,这很好......但是模具不适用于生产...当使用重定向时,它给我302和附加状态错误。我尝试过像黑客那样的黑客攻击。

header("HTTP/1.1 200 OK");

return http_response_code(200);

但状态是500.我会感谢任何提示或帮助如何做到这一点。

干杯!

1 个答案:

答案 0 :(得分:1)

您正尝试直接重定向到tpl文件。您应该重定向到控制器或网址。例如,在模块检查中,在payment.php中有:

Tools::redirect(Context::getContext()->link->getModuleLink('cheque', 'payment'));

或者在validation.php中:

Tools::redirect('index.php?controller=order-confirmation&id_cart='.(int)$cart->id.'&id_module='.(int)$this->module->id.'&id_order='.$this->module->currentOrder.'&key='.$customer->secure_key);

此外,Tools :: redirect定义为:

redirect($url, $base_uri = __PS_BASE_URI__, Link $link = null, $headers = null)

另一方面,您可以尝试使用模块中使用的显示功能(例如):

return $this->display(__FILE__, 'file.tpl');

但在这种情况下,您应该使用assign和setTemplate:

$this->context->smarty->assign(array(/* array of vars to use in tpl*/));
$this->setTemplate('file.tpl');