PayService.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. <?php
  2. namespace addons\shopro\library;
  3. use Yansongda\Pay\Pay;
  4. use Yansongda\Pay\Log;
  5. use addons\shopro\exception\Exception;
  6. class PayService
  7. {
  8. protected $config;
  9. protected $platform;
  10. protected $payment;
  11. protected $notify_url;
  12. public $method;
  13. public function __construct($payment, $platform = '', $notify_url = '', $type = 'pay')
  14. {
  15. $this->platform = $platform;
  16. $this->payment = $payment;
  17. $this->notify_url = $notify_url;
  18. $this->type = $type;
  19. $this->setPaymentConfig();
  20. }
  21. private function setPaymentConfig()
  22. {
  23. $paymentConfig = json_decode(\addons\shopro\model\Config::get(['name' => $this->payment])->value, true);
  24. // 如果是支付,并且不是 复制地址的支付宝支付
  25. if ($this->type == 'pay' && $this->platform != 'url' && !in_array($this->platform, $paymentConfig['platform'])) {
  26. new Exception('暂不支持该方式付款');
  27. }
  28. $this->config = $paymentConfig;
  29. $this->config['notify_url'] = $this->notify_url;
  30. if ($this->payment === 'wechat') {
  31. // 根据不同平台设置相应的 appid
  32. $this->setWechatAppId();
  33. }
  34. // 设置支付证书路径
  35. $this->setCert();
  36. }
  37. private function setWechatAppId()
  38. {
  39. switch ($this->platform) {
  40. case 'wxOfficialAccount':
  41. $platformConfig = json_decode(\addons\shopro\model\Config::get(['name' => $this->platform])->value, true);
  42. if (isset($this->config['mode']) && $this->config['mode'] === 'service') {
  43. $this->config['sub_app_id'] = $platformConfig['app_id'];
  44. } else {
  45. $this->config['app_id'] = $platformConfig['app_id'];
  46. }
  47. break;
  48. case 'wxMiniProgram':
  49. $platformConfig = json_decode(\addons\shopro\model\Config::get(['name' => $this->platform])->value, true);
  50. if (isset($this->config['mode']) && $this->config['mode'] === 'service') {
  51. $this->config['sub_miniapp_id'] = $platformConfig['app_id'];
  52. // $this->config['sub_app_id'] = $platformConfig['app_id'];
  53. } else {
  54. $this->config['miniapp_id'] = $platformConfig['app_id'];
  55. $this->config['app_id'] = $platformConfig['app_id']; // 小程序微信企业付款
  56. }
  57. break;
  58. case 'H5':
  59. $platformConfig = json_decode(\addons\shopro\model\Config::get(['name' => $this->platform])->value, true);
  60. if (isset($this->config['mode']) && $this->config['mode'] === 'service') {
  61. $this->config['sub_app_id'] = $platformConfig['app_id'];
  62. } else {
  63. $this->config['app_id'] = $platformConfig['app_id'];
  64. }
  65. break;
  66. case 'App':
  67. $platformConfig = json_decode(\addons\shopro\model\Config::get(['name' => 'App'])->value, true);
  68. if (isset($this->config['mode']) && $this->config['mode'] === 'service') {
  69. $this->config['sub_appid'] = $platformConfig['app_id'];
  70. $this->config['sub_app_id'] = $platformConfig['app_id'];
  71. } else {
  72. $this->config['appid'] = $platformConfig['app_id']; // 微信 App 支付使用这个
  73. $this->config['app_id'] = $platformConfig['app_id']; // 微信 App 支付退款使用的是这个
  74. }
  75. break;
  76. }
  77. }
  78. // 处理证书路径
  79. private function setCert()
  80. {
  81. // 处理证书路径
  82. if ($this->payment == 'wechat') {
  83. // 微信支付证书
  84. $this->config['cert_client'] = ROOT_PATH . 'public' . $this->config['cert_client'];
  85. $this->config['cert_key'] = ROOT_PATH . 'public' . $this->config['cert_key'];
  86. } else {
  87. // 支付宝证书路径
  88. $end = substr($this->config['ali_public_key'], -4);
  89. if ($end == '.crt') {
  90. $this->config['ali_public_key'] = ROOT_PATH . 'public' . $this->config['ali_public_key'];
  91. }
  92. $this->config['app_cert_public_key'] = ROOT_PATH . 'public' . $this->config['app_cert_public_key'];
  93. $this->config['alipay_root_cert'] = ROOT_PATH . 'public' . $this->config['alipay_root_cert'];
  94. }
  95. }
  96. private function setPaymentMethod()
  97. {
  98. $method = [
  99. 'wechat' => [
  100. 'wxOfficialAccount' => 'mp', //公众号支付 Collection
  101. 'wxMiniProgram' => 'miniapp', //小程序支付
  102. 'H5' => 'wap', //手机网站支付 Response
  103. 'App' => 'app' //APP 支付 JsonResponse
  104. ],
  105. 'alipay' => [
  106. 'wxOfficialAccount' => 'wap', //手机网站支付 Response
  107. 'wxMiniProgram' => 'wap', //小程序支付
  108. 'H5' => 'wap', //手机网站支付 Response
  109. 'url' => 'wap', //手机网站支付 Response
  110. 'App' => 'app' //APP 支付 JsonResponse
  111. ],
  112. ];
  113. $this->method = $method[$this->payment][$this->platform];
  114. }
  115. public function create($order)
  116. {
  117. // $order = [
  118. // 'out_trade_no' => time(),
  119. // 'total_fee' => '1', // **单位:分**
  120. // 'body' => 'test body - 测试',
  121. // 'openid' => 'onkVf1FjWS5SBIixxxxxxx', //微信需要带openid过来
  122. // ];
  123. // 设置支付方式
  124. $this->setPaymentMethod();
  125. $method = $this->method;
  126. switch ($this->payment) {
  127. case 'wechat':
  128. if (isset($this->config['mode']) && $this->config['mode'] === 'service') {
  129. $order['sub_openid'] = $order['openid'];
  130. unset($order['openid']);
  131. }
  132. $order['total_fee'] = $order['total_fee'] * 100;
  133. $pay = Pay::wechat($this->config)->$method($order);
  134. break;
  135. case 'alipay':
  136. if (in_array($this->platform, ['wxOfficialAccount', 'wxMiniProgram', 'H5'])) {
  137. // 返回支付宝支付链接
  138. $pay = request()->domain() . '/addons/shopro/pay/alipay?order_sn=' . $order['out_trade_no'];
  139. } else {
  140. if ($this->method == 'wap') {
  141. // 支付宝 wap 支付,增加 return_url
  142. // 获取 h5 域名
  143. $platformConfig = json_decode(\addons\shopro\model\Config::get(['name' => 'shopro'])->value, true);
  144. // 如果域名存在,增加 return_url
  145. if ($platformConfig && isset($platformConfig['domain'])) {
  146. $start = substr($platformConfig['domain'], -1) == '/' ? "" : "/";
  147. $orderType = strpos($order['out_trade_no'], 'TO') === 0 ? 'recharge' : 'goods';
  148. $this->config['return_url'] = $platformConfig['domain'] . $start . "pages/order/payment/result?orderId=" . $order['order_id'] . "&type=alipay&payState=success&orderType=" . $orderType;
  149. }
  150. }
  151. $pay = Pay::alipay($this->config)->$method($order);
  152. }
  153. break;
  154. }
  155. return $pay;
  156. }
  157. // 企业付款
  158. public function transfer($payload)
  159. {
  160. $code = 0;
  161. $response = [];
  162. switch ($this->payment) {
  163. case 'wechat':
  164. $payload['amount'] = $payload['amount'] * 100;
  165. $response = Pay::wechat($this->config)->transfer($payload);
  166. var_dump($response);
  167. if ($response['return_code'] === 'SUCCESS' && $response['result_code'] === 'SUCCESS') {
  168. $code = 1;
  169. }
  170. break;
  171. case 'alipay':
  172. $response = Pay::alipay($this->config)->transfer($payload);
  173. if ($response['code'] === '10000' && $response['status'] === 'SUCCESS') {
  174. $code = 1;
  175. }
  176. break;
  177. }
  178. return [$code, $response];
  179. }
  180. public function notify($callback)
  181. {
  182. $pay = $this->getPay();
  183. try {
  184. $data = $pay->verify(); // 是的,验签就这么简单!
  185. $result = $callback($data, $pay);
  186. // Log::debug('Wechat notify', $data->all());
  187. } catch (\Exception $e) {
  188. \think\Log::error('notify-error:' . $e->getMessage());
  189. // $e->getMessage();
  190. }
  191. return $result;
  192. }
  193. public function refund($order_data)
  194. {
  195. $pay = $this->getPay();
  196. $order_data['type'] = $this->platform == 'wxMiniProgram' ? 'miniapp' : '';
  197. $result = $pay->refund($order_data);
  198. return $result;
  199. }
  200. public function notifyRefund($callback)
  201. {
  202. $pay = $this->getPay();
  203. try {
  204. $data = $pay->verify(null, true); // 是的,验签就这么简单!
  205. $result = $callback($data, $pay);
  206. // Log::debug('Wechat notify', $data->all());
  207. } catch (\Exception $e) {
  208. // $e->getMessage();
  209. }
  210. return $result;
  211. }
  212. private function getPay()
  213. {
  214. switch ($this->payment) {
  215. case 'wechat':
  216. $pay = Pay::wechat($this->config);
  217. break;
  218. case 'alipay':
  219. $pay = Pay::alipay($this->config);
  220. break;
  221. default:
  222. new Exception('支付方式不支持');
  223. }
  224. return $pay;
  225. }
  226. }