我正在尝试将 citrus 支付网关集成到我用 zend 编写的应用程序中。我正在使用柑橘旅馆结帐。我在控制器中生成签名,然后传递这些值以查看创建表单的位置。控制器代码:
$formPostUrl = "https://sandbox.citruspay.com/sslperf/your-vanityUrlPart";
$secret_key = "xxxxxx"; // your secret key
$vanityUrl = "xxx"; // your vanity url
$merchantTxnId = uniqid();
$orderAmount = "1.00";
$currency = "INR";
$TransactionData= $vanityUrl.$orderAmount.$merchantTxnId.$currency;
$securitySignature = hash_hmac('sha1', $TransactionData, $secret_key);
$data = [
'formPostUrl' => $formPostUrl,
'vanityUrl' => $vanityUrl,
'merchantTxnId' => $merchantTxnId,
'orderAmount' => $orderAmount,
'currency' => $currency,
'securitySignature' => $securitySignature,
'returnUrl' => $this->hostName.'/'.'paymentResponse'
];
return new ViewModel ( $data );
查看代码:
<form align="center" method="post" action="<?php echo $formPostUrl;?>">
<input ng-model="amount" type="number"class="form-control" id="orderAmount" name="orderAmount" placeholder="Enter the amount here.." required min="1" />
<input type="hidden" id="merchantTxnId" name="merchantTxnId" value="<?php echo $merchantTxnId;?>" />
<input type="hidden" id="currency" name="currency" value="<?php echo $currency;?>" />
<input type="hidden" name="returnUrl" value="<?php echo $returnUrl;?>" />
<input type="hidden" id="secSignature" name="secSignature" value="<?php echo $securitySignature;?>" />
<input type="Submit" value="Pay Now"/>
</form>
但这里的问题是 securitySignature 是使用金额创建的,并且代码是在控制器中编写的,但我必须从用户那里获取金额,就像应该在视图中的表单一样。我无法在视图中创建securitySignature,因为它需要security_key,出于安全原因我无法在视图中写入。有什么方法可以从视图中发送数量到控制器,然后在控制器中向 formPostUrl 发出 POST 请求,该请求也将我重定向到 formPostUrl,就像在表单中我们发出一个也重定向到该 URL 的发布请求一样。