截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

WechatMerchantTransferLogic.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic;
  20. use app\common\model\Pay;
  21. use app\common\server\WeChatServer;
  22. use think\facade\Db;
  23. /**
  24. * 功能: 商家转账到零钱
  25. * 用途:商户可以通过该接口同时向多个用户微信零钱进行转账操作。
  26. * 证书:需要
  27. * 请求URL:https://api.mch.weixin.qq.com/v3/transfer/batches
  28. * 失败后一定要用【原来的商户订单号】去重试,不然有可能存在重复支付的风险!!!
  29. * 转账批次单中涉及金额的字段单位为“分”
  30. * 成功受理商家转账请求后,可调用《商家明细单号查询明细单》接口来判断转账明细列表状态
  31. */
  32. class WechatMerchantTransferLogic
  33. {
  34. /**
  35. * @notes 商家转账到零钱
  36. * @param $withdrawApply
  37. * @return array
  38. * @throws \Exception
  39. * @author ljj
  40. * @date 2022/9/27 4:40 下午
  41. */
  42. public static function transfer($withdrawApply)
  43. {
  44. // 微信零钱最小提现金额 1元
  45. if($withdrawApply['left_money'] < 1) {
  46. return [
  47. 'code' => 0,
  48. 'msg' => '扣除手续费后提现金额不能小于1元'
  49. ];
  50. }
  51. // 每天最多可向同一用户付款7次
  52. $count = Db::name('withdraw_apply')
  53. ->whereTime('update_time', 'd') // 今天
  54. ->where('user_id', $withdrawApply['user_id'])
  55. ->where('type', 2) // 微信零钱
  56. ->where('status', '>=', 2) // 提现中、提现成功、提现失败
  57. ->count();
  58. if($count >= 7) {
  59. return [
  60. 'code' => 0,
  61. 'msg' => '同一个用户一天最多可付款7次'
  62. ];
  63. }
  64. // 一个商户默认同一日付款总额限额10万元
  65. $sum = Db::name('withdraw_apply')
  66. ->whereTime('update_time', 'd') // 今天
  67. ->where('type', 2) // 微信零钱
  68. ->where('status', 'in', [2, 3]) // 提现中、提现成功
  69. ->sum('left_money');
  70. $sum = $sum + $withdrawApply['left_money'];
  71. if($sum > 100000) {
  72. return [
  73. 'code' => 0,
  74. 'msg' => '一个商户默认同一日付款总额限额10万元'
  75. ];
  76. }
  77. // 用户授权信息(同一个用户可能有多条,取client最小的一条)
  78. $userAuth = Db::name('user_auth')->where('user_id', $withdrawApply['user_id'])->order('client', 'asc')->find();
  79. if(!$userAuth) {
  80. // 无授权记录
  81. return [
  82. 'code'=> 0,
  83. 'msg' => '查询不到该用户的openid'
  84. ];
  85. }
  86. //获取配置信息
  87. $config = WeChatServer::getPayConfigBySource($userAuth['client'])['config'];
  88. //请求URL
  89. $url = 'https://api.mch.weixin.qq.com/v3/transfer/batches';
  90. //请求方式
  91. $http_method = 'POST';
  92. //请求参数
  93. $data = [
  94. 'appid' => $config['app_id'],//申请商户号的appid或商户号绑定的appid(企业号corpid即为此appid)
  95. 'out_batch_no' => $withdrawApply['batch_no'],//商户系统内部的商家批次单号,要求此参数只能由数字、大小写字母组成,在商户系统内部唯一
  96. 'batch_name' => '提现至微信零钱',//该笔批量转账的名称
  97. 'batch_remark' => '提现至微信零钱',//转账说明,UTF8编码,最多允许32个字符
  98. 'total_amount' => $withdrawApply['left_money'] * 100,//转账金额单位为“分”。转账总金额必须与批次内所有明细转账金额之和保持一致,否则无法发起转账操作
  99. 'total_num' => 1,//一个转账批次单最多发起三千笔转账。转账总笔数必须与批次内所有明细之和保持一致,否则无法发起转账操作
  100. 'transfer_detail_list' => [
  101. [//发起批量转账的明细列表,最多三千笔
  102. 'out_detail_no' => $withdrawApply['sn'],//商户系统内部区分转账批次单下不同转账明细单的唯一标识,要求此参数只能由数字、大小写字母组成
  103. 'transfer_amount' => $withdrawApply['left_money'] * 100,//转账金额单位为分
  104. 'transfer_remark' => '提现至微信零钱',//单条转账备注(微信用户会收到该备注),UTF8编码,最多允许32个字符
  105. 'openid' => $userAuth['openid'],//openid是微信用户在公众号appid下的唯一用户标识(appid不同,则获取到的openid就不同),可用于永久标记一个用户
  106. ]]
  107. ];
  108. if ($withdrawApply['left_money'] >= 2000) {
  109. if (empty($withdrawApply['real_name'])) {
  110. throw new \Exception('转账金额 >= 2000元,收款用户真实姓名必填');
  111. }
  112. $data['transfer_detail_list'][0]['user_name'] = self::getEncrypt($withdrawApply['real_name'],$config);
  113. }
  114. $token = self::token($url,$http_method,$data,$config);//获取token
  115. $result = self::https_request($url,json_encode($data),$token);//发送请求
  116. $result_arr = json_decode($result,true);
  117. if(!isset($result_arr['create_time'])) {
  118. // 微信支付官方后台开通商家付款到零钱 code 400对应很多个错误信息 所以使用message判断
  119. $msg = $result_arr['message'] ?? '提现失败,请稍后再试';
  120. if ($msg == '产品权限异常') {
  121. $msg = '请在商户平台-商家转账产品设置中开通产品权限';
  122. }
  123. return [
  124. 'code' => 0,
  125. 'msg' => $msg,
  126. ];
  127. }
  128. //批次受理成功,更新提现申请单为提现中状态
  129. Db::name('withdraw_apply')
  130. ->where('id', $withdrawApply['id'])
  131. ->update([
  132. 'status' => 2, // 提现中
  133. 'update_time' => time(),
  134. 'pay_desc' => $result
  135. ]);
  136. return [
  137. 'code' => 1,
  138. 'msg' => '零钱提现中'
  139. ];
  140. }
  141. /**
  142. * @notes 签名生成
  143. * @param $url
  144. * @param $http_method
  145. * @param $data
  146. * @param $config
  147. * @return string
  148. * @author ljj
  149. * @date 2022/9/27 4:14 下午
  150. */
  151. public static function token($url,$http_method,$data,$config)
  152. {
  153. $timestamp = time();//请求时间戳
  154. $url_parts = parse_url($url);//获取请求的绝对URL
  155. $nonce = $timestamp.rand('10000','99999');//请求随机串
  156. $body = empty($data) ? '' : json_encode((object)$data);//请求报文主体
  157. $stream_opts = [
  158. "ssl" => [
  159. "verify_peer"=>false,
  160. "verify_peer_name"=>false,
  161. ]
  162. ];
  163. $apiclient_cert_arr = openssl_x509_parse(file_get_contents($config['cert_path'],false, stream_context_create($stream_opts)));
  164. $serial_no = $apiclient_cert_arr['serialNumberHex'];//证书序列号
  165. $mch_private_key = file_get_contents($config['key_path'],false, stream_context_create($stream_opts));//密钥
  166. $merchant_id = $config['mch_id'];//商户id
  167. $canonical_url = ($url_parts['path'] . (!empty($url_parts['query']) ? "?${url_parts['query']}" : ""));
  168. $message = $http_method."\n".
  169. $canonical_url."\n".
  170. $timestamp."\n".
  171. $nonce."\n".
  172. $body."\n";
  173. openssl_sign($message, $raw_sign, $mch_private_key, 'sha256WithRSAEncryption');
  174. $sign = base64_encode($raw_sign);//签名
  175. $schema = 'WECHATPAY2-SHA256-RSA2048';
  176. $token = sprintf('mchid="%s",nonce_str="%s",timestamp="%d",serial_no="%s",signature="%s"',
  177. $merchant_id, $nonce, $timestamp, $serial_no, $sign);//微信返回token
  178. return $schema.' '.$token;
  179. }
  180. /**
  181. * @notes 发送请求
  182. * @param $url
  183. * @param $data
  184. * @param $token
  185. * @return bool|string
  186. * @author ljj
  187. * @date 2022/9/27 4:15 下午
  188. */
  189. public static function https_request($url,$data,$token)
  190. {
  191. $curl = curl_init();
  192. curl_setopt($curl, CURLOPT_URL, (string)$url);
  193. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  194. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
  195. if (!empty($data)){
  196. curl_setopt($curl, CURLOPT_POST, 1);
  197. curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  198. }
  199. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  200. //添加请求头
  201. $headers = [
  202. 'Authorization:'.$token,
  203. 'Accept: application/json',
  204. 'Content-Type: application/json; charset=utf-8',
  205. 'User-Agent:Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',
  206. ];
  207. if(!empty($headers)){
  208. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  209. }
  210. $output = curl_exec($curl);
  211. curl_close($curl);
  212. return $output;
  213. }
  214. /**
  215. * @notes 敏感信息加解密
  216. * @param $str
  217. * @param $config
  218. * @return string
  219. * @throws \Exception
  220. * @author ljj
  221. * @date 2022/9/27 3:53 下午
  222. */
  223. public static function getEncrypt($str,$config)
  224. {
  225. //$str是待加密字符串
  226. $public_key = file_get_contents($config['cert_path']);
  227. $encrypted = '';
  228. if (openssl_public_encrypt($str, $encrypted, $public_key, OPENSSL_PKCS1_OAEP_PADDING)) {
  229. //base64编码
  230. $sign = base64_encode($encrypted);
  231. } else {
  232. throw new \Exception('encrypt failed');
  233. }
  234. return $sign;
  235. }
  236. /**
  237. * @notes 商家明细单号查询明细单API
  238. * @param $withdrawApply
  239. * @return mixed
  240. * @author ljj
  241. * @date 2022/9/27 5:54 下午
  242. */
  243. public static function details($withdrawApply)
  244. {
  245. $userAuth = Db::name('user_auth')->where('user_id', $withdrawApply['user_id'])->order('client', 'asc')->find();
  246. if(!$userAuth) {
  247. // 无授权记录
  248. return [
  249. 'code'=> 0,
  250. 'msg' => '查询不到该用户的openid'
  251. ];
  252. }
  253. //获取配置信息
  254. $pay = Pay::where(['code' => 'wechat'])->find()->toArray();
  255. $config = [
  256. 'mch_id' => $pay['config']['mch_id'] ?? '',
  257. 'cert_path' => dirname(__FILE__, 2).'/../../public/'.$pay['config']['apiclient_cert'] ?? '',
  258. 'key_path' => dirname(__FILE__, 2).'/../../public/'.$pay['config']['apiclient_key'] ?? '',
  259. ];
  260. //请求URL
  261. $url = 'https://api.mch.weixin.qq.com/v3/transfer/batches/out-batch-no/'.$withdrawApply['batch_no'].'/details/out-detail-no/'.$withdrawApply['sn'];
  262. //请求方式
  263. $http_method = 'GET';
  264. //请求参数
  265. $data = [];
  266. $token = self::token($url,$http_method,$data,$config);//获取token
  267. $result = self::https_request($url,$data,$token);//发送请求
  268. $result_arr = json_decode($result,true);
  269. return $result_arr;
  270. }
  271. }