Shande.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. public static function orderPay($order_no,$amout,$body,$notifyurl,$frontUrl)
  16. {
  17. $client = new \H5FastPay;
  18. // 参数
  19. $client->body = array(
  20. 'orderCode' => $order_no,
  21. //'totalAmount' => '000000000012',
  22. 'totalAmount' => $amout,
  23. 'subject' => $body,
  24. 'body' => $body,
  25. 'payMode' => 'sand_h5',
  26. 'clientIp' => get_client_ip(),
  27. //'notifyUrl' => 'http://192.168.1.66/sandpay-qr-phpdemo/notifyurl.php',
  28. 'notifyUrl' => $notifyurl,
  29. //'frontUrl' => 'http://192.168.1.66/sandpay-qr-phpdemo/notifyurl.php',
  30. 'frontUrl' => $frontUrl,
  31. );
  32. // 返回结果
  33. $ret = $client->request('orderPay');
  34. return $ret;
  35. }
  36. // 订单查询接口
  37. public function orderQuery()
  38. {
  39. $client = new \H5FastPay;
  40. // 参数, 每次需要重新赋值
  41. $client->body = array(
  42. 'orderCode' => date('YmdHis', time()) + '0601',
  43. 'extend' => ''
  44. );
  45. // 返回结果
  46. $ret = $client->request('orderQuery');
  47. echo '<pre class="myCode">';
  48. print_r($ret);
  49. echo '</pre>';
  50. }
  51. // 退款申请
  52. public function orderRefund()
  53. {
  54. $client = new \H5FastPay;
  55. // 参数
  56. $client->body = array(
  57. 'orderCode' => 'Y20181204170925675836', //新的订单号
  58. 'oriOrderCode' => '2017091551421977', //原订单号
  59. 'refundAmount' => '000000000012', //退款金额
  60. 'refundMarketAmount' => '000000000012', //退营销金额
  61. 'notifyUrl' => 'http://192.168.22.171/sandpay-qr-phpdemo.bak/test/dist/notifyUrl.php',
  62. 'refundReason' => 'test',
  63. 'extend' => ''
  64. );
  65. // 返回结果
  66. $ret = $client->request('orderRefund');
  67. echo '<pre class="myCode">';
  68. print_r($ret);
  69. echo '</pre>';
  70. }
  71. // 异步通知通用接口
  72. public function notify()
  73. {
  74. $client = new H5FastPay;
  75. $sign = $_POST['sign']; //签名
  76. $data = stripslashes($_POST['data']); //支付数据
  77. // 验签
  78. try {
  79. $verifyFlag = $client->verify($data, $sign);
  80. if ($verifyFlag) {
  81. echo '签名正确';
  82. } else {
  83. echo '签名错误';
  84. }
  85. } catch (\Exception $e) {
  86. echo $e->getMessage();
  87. }
  88. }
  89. // 商户自主重发异步通知接口
  90. public function orderMcAutoNotice()
  91. {
  92. $client = new H5FastPay;
  93. // 参数
  94. $client->body = array(
  95. 'orderCode' => 'Y201805071725592',
  96. 'noticeType' => '00',
  97. );
  98. // 返回结果
  99. $ret = $client->request('orderMcAutoNotice');
  100. echo '<pre class="myCode">';
  101. print_r($ret);
  102. echo '</pre>';
  103. }
  104. // 对账单申请接口
  105. public function clearfileDownload()
  106. {
  107. $client = new H5FastPay;
  108. // 参数
  109. $client->body = array(
  110. 'clearDate' => '20200611', // 结算日期
  111. 'fileType' => '1', // 文件返回类型
  112. 'extend' => ''
  113. );
  114. // 返回值
  115. $ret = $client->request('clearfileDownload');
  116. echo '<pre class="myCode">';
  117. print_r($ret);
  118. echo '</pre>';
  119. }
  120. }