Shande.php 3.7 KB

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