Alipay.class.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. /**
  3. *
  4. * Alipay.php (支付宝支付模块)
  5. *
  6. */
  7. if(!defined("Yourphp")) exit("Access Denied");
  8. class Alipay extends Think {
  9. public $config = array() ;
  10. public function __construct($config=array()) {
  11. $this->config = $config;
  12. if ($this->config['alipay_pay_type']==1) $this->config['service'] = 'create_partner_trade_by_buyer'; //担保
  13. elseif($this->config['alipay_pay_type']==3) $this->config['service'] = 'create_direct_pay_by_user'; //即时
  14. else $this->config['service'] = 'trade_create_by_buyer'; //标准
  15. $this->config['gateway_url'] = 'https://www.alipay.com/cooperate/gateway.do?';
  16. $this->config['gateway_method'] = 'POST';
  17. $this->config['notify_url'] = return_url('alipay',1);
  18. $this->config['return_url'] = return_url('alipay');
  19. }
  20. public function setup(){
  21. $modules['pay_name'] = L('Alipay_pay_name');
  22. $modules['pay_code'] = 'Alipay';
  23. $modules['pay_desc'] = L('Alipay_pay_desc');
  24. $modules['is_cod'] = '0';
  25. $modules['is_online'] = '1';
  26. $modules['author'] = 'Ainaphp';
  27. $modules['website'] = 'http://www.alipay.com';
  28. $modules['version'] = '1.0.0';
  29. $modules['config'] = array(
  30. array('name' => 'alipay_account', 'type' => 'text', 'value' => ''),
  31. array('name' => 'alipay_key', 'type' => 'text', 'value' => ''),
  32. array('name' => 'alipay_partner', 'type' => 'text', 'value' => ''),
  33. array('name' => 'alipay_pay_type', 'type' => 'select', 'value' => '' ,'option' =>
  34. array('1'=>L('alipay_pay_type_option1'),'2'=>L('alipay_pay_type_option2'),'3'=>L('alipay_pay_type_option3')))
  35. );
  36. return $modules;
  37. }
  38. public function get_code(){
  39. $parameter = array(
  40. 'service' => $this->config['service'],
  41. 'partner' => trim($this->config['alipay_partner']),
  42. '_input_charset' => 'utf-8',
  43. 'notify_url' => trim($this->config['notify_url']),
  44. 'return_url' => trim($this->config['return_url']),
  45. /* 商品信息 */
  46. 'subject' => $this->config['order_sn'],
  47. 'out_trade_no' => $this->config['order_sn'],
  48. 'price' => $this->config['order_amount'],
  49. 'body' => $this->config['body'],
  50. 'quantity' => 1,
  51. 'payment_type' => 1,
  52. /* 物流参数 */
  53. 'logistics_type' => 'EXPRESS',
  54. 'logistics_fee' => 0,
  55. 'logistics_payment' => 'BUYER_PAY_AFTER_RECEIVE',
  56. //'agent' => $this->config['agent'],
  57. /* 买卖双方信息 */
  58. 'seller_email' => trim($this->config['alipay_account'])
  59. );
  60. ksort($parameter);
  61. reset($parameter);
  62. $param = '';
  63. $sign = '';
  64. foreach ($parameter AS $key => $val)
  65. {
  66. $param .= "$key=" .urlencode($val). "&";
  67. $sign .= "$key=$val&";
  68. }
  69. $param = substr($param, 0, -1);
  70. $sign = substr($sign, 0, -1). $this->config['alipay_key'];
  71. //$sign = substr($sign, 0, -1). ALIPAY_AUTH;
  72. $button = '<span><input type="button" class="button" onclick="window.open(\''.$this->config['gateway_url'].$param. '&sign='.MD5($sign).'&sign_type=MD5\')" value="'.L('PAY_NOW').'" /></span>';
  73. return $button;
  74. }
  75. public function respond()
  76. {
  77. if (!empty($_POST))
  78. {
  79. foreach($_POST as $key => $data)
  80. {
  81. $_GET[$key] = $data;
  82. }
  83. }
  84. $seller_email = rawurldecode($_GET['seller_email']);
  85. //$order_sn = str_replace($_GET['subject'], '', $_GET['out_trade_no']);
  86. $order_sn = trim($_GET['out_trade_no']);
  87. /* 检查数字签名是否正确 */
  88. ksort($_GET);
  89. reset($_GET);
  90. $sign = '';
  91. foreach ($_GET AS $key=>$val)
  92. {
  93. if ($key != 'sign' && $key != 'sign_type' && $key != 'code' && $key != 'g' && $key != 'm' && $key != 'a')
  94. {
  95. $sign .= "$key=$val&";
  96. }
  97. }
  98. $sign = substr($sign, 0, -1) . $this->config['alipay_key'];
  99. //$sign = substr($sign, 0, -1) . ALIPAY_AUTH;
  100. if (md5($sign) != $_GET['sign'])
  101. {
  102. return false;
  103. }
  104. if ($_GET['trade_status'] == 'WAIT_SELLER_SEND_GOODS' || $_GET['trade_status'] =='WAIT_BUYER_CONFIRM_GOODS' || $_GET['trade_status'] =='WAIT_BUYER_PAY')
  105. {
  106. /* 改变订单状态 进行中*/
  107. order_pay_status($order_sn,'1');
  108. return true;
  109. }
  110. elseif ($_GET['trade_status'] == 'TRADE_FINISHED')
  111. {
  112. /* 改变订单状态 */
  113. order_pay_status($order_sn,'2');
  114. return true;
  115. }
  116. elseif ($_GET['trade_status'] == 'TRADE_SUCCESS')
  117. {
  118. /* 改变订单状态 即时交易成功*/
  119. order_pay_status($order_sn,'2');
  120. return true;
  121. }
  122. else
  123. {
  124. return false;
  125. }
  126. }
  127. }
  128. ?>