Chinabank.class.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. *
  4. * Alipay.php (模型表单生成)
  5. *
  6. */
  7. class Chinabank extends Think {
  8. public $config = array() ;
  9. public function __construct($config=array()) {
  10. $this->config = $config;
  11. $this->config['gateway_url'] = 'https://www.alipay.com/cooperate/gateway.do?';
  12. $this->config['gateway_method'] = 'POST';
  13. $this->config['notify_url'] = return_url('chinabank',1);
  14. $this->config['return_url'] = return_url('chinabank');
  15. }
  16. public function setup(){
  17. $modules['pay_name'] = L('Chinabank_pay_name');
  18. $modules['pay_code'] = 'Chinabank';
  19. $modules['pay_desc'] = L('Chinabank_pay_desc');
  20. $modules['is_cod'] = '0';
  21. $modules['is_online'] = '1';
  22. $modules['author'] = 'Ainaphp';
  23. $modules['website'] = 'http://www.chinabank.com.cn';
  24. $modules['version'] = '1.0.0';
  25. $modules['config'] = array(
  26. array('name' => 'chinabank_account', 'type' => 'text', 'value' => ''),
  27. array('name' => 'chinabank_key', 'type' => 'text', 'value' => ''),
  28. );
  29. return $modules;
  30. }
  31. public function get_code($info,$value){
  32. $data_vid = trim($this->config['chinabank_account']);
  33. $data_orderid = $this->config['order_sn'];
  34. $data_vamount = $this->config['order_amount'];
  35. $data_vmoneytype = 'CNY';
  36. $data_vpaykey = trim($this->config['chinabank_key']);
  37. $data_vreturnurl = $this->config['return_url'];
  38. $remark1 = $this->config['body'];
  39. $MD5KEY =$data_vamount.$data_vmoneytype.$data_orderid.$data_vid.$data_vreturnurl.$data_vpaykey;
  40. $MD5KEY = strtoupper(md5($MD5KEY));
  41. $def_url = '<span style="clean:both;"><form method=post action="https://pay3.chinabank.com.cn/PayGate" target="_blank">';
  42. $def_url .= "<input type=HIDDEN name='v_mid' value='".$data_vid."'>";
  43. $def_url .= "<input type=HIDDEN name='v_oid' value='".$data_orderid."'>";
  44. $def_url .= "<input type=HIDDEN name='v_amount' value='".$data_vamount."'>";
  45. $def_url .= "<input type=HIDDEN name='v_moneytype' value='".$data_vmoneytype."'>";
  46. $def_url .= "<input type=HIDDEN name='v_url' value='".$data_vreturnurl."'>";
  47. $def_url .= "<input type=HIDDEN name='v_md5info' value='".$MD5KEY."'>";
  48. $def_url .= "<input type=HIDDEN name='remark1' value='".$remark1."'>";
  49. $def_url .= "<input type=submit class='button' value='" .L('PAY_NOW'). "'>";
  50. $def_url .= "</form></span>";
  51. return $def_url;
  52. }
  53. public function respond()
  54. {
  55. $v_oid = trim($_POST['v_oid']); //订单编号
  56. $v_pmode = trim($_POST['v_pmode']); //支付方式
  57. $v_pstatus = trim($_POST['v_pstatus']); //支付状态 20(表示支付成功)30(表示支付失败)
  58. $v_pstring = trim($_POST['v_pstring']); //支付结果信息
  59. $v_amount = trim($_POST['v_amount']); //订单总金额
  60. $v_moneytype = trim($_POST['v_moneytype']); //币种
  61. $remark1 = trim($_POST['remark1' ]); //备注字段1
  62. $remark2 = trim($_POST['remark2' ]); //备注字段2
  63. $v_md5str = trim($_POST['v_md5str' ]); //订单MD5校验码
  64. /**
  65. * 重新计算md5的值
  66. */
  67. $key = $this->config['chinabank_key'];
  68. $md5string=strtoupper(md5($v_oid.$v_pstatus.$v_amount.$v_moneytype.$key));
  69. /* 检查秘钥是否正确 */
  70. if ($v_md5str==$md5string)
  71. {
  72. if ($v_pstatus == '20')
  73. {
  74. order_pay_status($v_oid,'2');
  75. return true;
  76. }
  77. }
  78. else
  79. {
  80. return false;
  81. }
  82. }
  83. }
  84. ?>