Shande.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. namespace app\common\library;
  3. use think\Controller;
  4. use function EasyWeChat\Kernel\Support\get_client_ip;
  5. date_default_timezone_set('Asia/Shanghai');
  6. header('Content-type:text/html;charset=utf-8');
  7. //require_once './class/common.php';
  8. //require_once './class/H5FastPay.php';
  9. require_once env('root_path').'application/common/library/shande/Common.php';
  10. require_once env('root_path').'application/common/library/shande/H5FastPay.php';
  11. class Shande extends Controller
  12. {
  13. // 统一下单接口
  14. // https://open.sandpay.com.cn/product/detail/43308/43720/43721
  15. // https://cashier.sandpay.com.cn/gateway/api/order/pay
  16. public static function orderPay($order_no,$amout,$body,$notifyurl,$frontUrl,$card_no='')
  17. {
  18. $client = new \H5FastPay;
  19. // 参数
  20. $param = [
  21. 'orderCode' => $order_no,
  22. //'totalAmount' => '000000000012',
  23. 'totalAmount' => $amout,
  24. 'subject' => $body,
  25. 'body' => $body,
  26. 'payMode' => 'sand_h5',
  27. 'clientIp' => get_client_ip(),
  28. //'notifyUrl' => 'http://192.168.1.66/sandpay-qr-phpdemo/notifyurl.php',
  29. 'notifyUrl' => $notifyurl,
  30. //'frontUrl' => 'http://192.168.1.66/sandpay-qr-phpdemo/notifyurl.php',
  31. 'frontUrl' => $frontUrl,
  32. ];
  33. if($card_no)$param['payExtra'] = json_encode(array('cardNo'=>$card_no));
  34. $client->body = $param;
  35. // 返回结果
  36. $ret = $client->request('orderPay');
  37. return $ret;
  38. }
  39. // 订单查询接口
  40. public function orderQuery()
  41. {
  42. $client = new \H5FastPay;
  43. // 参数, 每次需要重新赋值
  44. $client->body = array(
  45. 'orderCode' => date('YmdHis', time()) + '0601',
  46. 'extend' => ''
  47. );
  48. // 返回结果
  49. $ret = $client->request('orderQuery');
  50. echo '<pre class="myCode">';
  51. print_r($ret);
  52. echo '</pre>';
  53. }
  54. // 退款申请
  55. public function orderRefund($order_sn,$money)
  56. {
  57. $client = new \H5FastPay;
  58. // 参数
  59. $client->body = array(
  60. 'orderCode' => get_order_sn(), //新的订单号
  61. 'oriOrderCode' => $order_sn, //原订单号
  62. 'refundAmount' => '000000000'.$money, //退款金额
  63. 'refundMarketAmount' => '000000000'.$money, //退营销金额
  64. 'notifyUrl' => $notify_url = 'https://'.$_SERVER['HTTP_HOST'].'/api/Pay/refundNotify',
  65. 'refundReason' => 'test',
  66. 'extend' => ''
  67. );
  68. // 返回结果
  69. $ret = $client->request('orderRefund');
  70. echo '<pre class="myCode">';
  71. print_r($ret);
  72. echo '</pre>';
  73. }
  74. // 异步通知通用接口
  75. public function notify()
  76. {
  77. $client = new H5FastPay;
  78. $sign = $_POST['sign']; //签名
  79. $data = stripslashes($_POST['data']); //支付数据
  80. // 验签
  81. try {
  82. $verifyFlag = $client->verify($data, $sign);
  83. if ($verifyFlag) {
  84. echo '签名正确';
  85. } else {
  86. echo '签名错误';
  87. }
  88. } catch (\Exception $e) {
  89. echo $e->getMessage();
  90. }
  91. }
  92. // 商户自主重发异步通知接口
  93. public function orderMcAutoNotice()
  94. {
  95. $client = new H5FastPay;
  96. // 参数
  97. $client->body = array(
  98. 'orderCode' => 'Y201805071725592',
  99. 'noticeType' => '00',
  100. );
  101. // 返回结果
  102. $ret = $client->request('orderMcAutoNotice');
  103. echo '<pre class="myCode">';
  104. print_r($ret);
  105. echo '</pre>';
  106. }
  107. // 对账单申请接口
  108. public function clearfileDownload()
  109. {
  110. $client = new H5FastPay;
  111. // 参数
  112. $client->body = array(
  113. 'clearDate' => '20200611', // 结算日期
  114. 'fileType' => '1', // 文件返回类型
  115. 'extend' => ''
  116. );
  117. // 返回值
  118. $ret = $client->request('clearfileDownload');
  119. echo '<pre class="myCode">';
  120. print_r($ret);
  121. echo '</pre>';
  122. }
  123. }