<?php
|
/**
|
* 即时到帐应答类
|
* ============================================================================
|
* api说明:
|
* getKey()/setKey(),获取/设置密钥
|
* getParameter()/setParameter(),获取/设置参数值
|
* getAllParameters(),获取所有参数
|
* isTenpaySign(),是否财付通签名,true:是 false:否
|
* doShow(),显示处理结果
|
* getDebugInfo(),获取debug信息
|
*
|
* ============================================================================
|
*
|
*/
|
|
require ("ResponseHandler.class.php");
|
class PayResponseHandler extends ResponseHandler {
|
|
/**
|
*@Override
|
*/
|
function isTenpaySign() {
|
$cmdno = $this->getParameter("cmdno");
|
$pay_result = $this->getParameter("pay_result");
|
$date = $this->getParameter("date");
|
$transaction_id = $this->getParameter("transaction_id");
|
$sp_billno = $this->getParameter("sp_billno");
|
$total_fee = $this->getParameter("total_fee");
|
$fee_type = $this->getParameter("fee_type");
|
$attach = $this->getParameter("attach");
|
$key = $this->getKey();
|
|
$signPars = "";
|
//组织签名串
|
$signPars = "cmdno=" . $cmdno . "&" .
|
"pay_result=" . $pay_result . "&" .
|
"date=" . $date . "&" .
|
"transaction_id=" . $transaction_id . "&" .
|
"sp_billno=" . $sp_billno . "&" .
|
"total_fee=" . $total_fee . "&" .
|
"fee_type=" . $fee_type . "&" .
|
"attach=" . $attach . "&" .
|
"key=" . $key;
|
|
$sign = strtolower(md5($signPars));
|
|
$tenpaySign = strtolower($this->getParameter("sign"));
|
|
//debug信息
|
$this->_setDebugInfo($signPars . " => sign:" . $sign .
|
" tenpaySign:" . $this->getParameter("sign"));
|
|
return $sign == $tenpaySign;
|
|
}
|
|
}
|
|
|
?>
|