UserTransfer.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <?php
  2. namespace app\data\command;
  3. use app\data\model\DataUser;
  4. use app\data\model\DataUserTransfer;
  5. use app\data\service\UserRebateService;
  6. use think\admin\Command;
  7. use think\admin\Exception;
  8. use think\admin\storage\LocalStorage;
  9. use think\console\Input;
  10. use think\console\Output;
  11. use WePay\Transfers;
  12. use WePay\TransfersBank;
  13. /**
  14. * 用户提现处理
  15. * Class UserTransfer
  16. * @package app\data\command
  17. */
  18. class UserTransfer extends Command
  19. {
  20. protected function configure()
  21. {
  22. $this->setName('xdata:UserTransfer');
  23. $this->setDescription('批量执行线上打款操作');
  24. }
  25. /**
  26. * 执行微信提现操作
  27. * @param Input $input
  28. * @param Output $output
  29. * @return void
  30. * @throws \think\admin\Exception
  31. */
  32. protected function execute(Input $input, Output $output)
  33. {
  34. $map = [['type', 'in', ['wechat_banks', 'wechat_wallet']], ['status', 'in', [3, 4]]];
  35. [$total, $count, $error] = [DataUserTransfer::mk()->where($map)->count(), 0, 0];
  36. foreach (DataUserTransfer::mk()->where($map)->cursor() as $vo) try {
  37. $this->queue->message($total, ++$count, "开始处理订单 {$vo['code']} 提现");
  38. if ($vo['status'] === 3) {
  39. $this->queue->message($total, $count, "尝试处理订单 {$vo['code']} 打款", 1);
  40. if ($vo['type'] === 'wechat_banks') {
  41. [$config, $result] = $this->createTransferBank($vo);
  42. } else {
  43. [$config, $result] = $this->createTransferWallet($vo);
  44. }
  45. if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
  46. DataUserTransfer::mk()->where(['code' => $vo['code']])->update([
  47. 'status' => 4,
  48. 'appid' => $config['appid'],
  49. 'openid' => $config['openid'],
  50. 'trade_no' => $result['partner_trade_no'],
  51. 'trade_time' => $result['payment_time'] ?? date('Y-m-d H:i:s'),
  52. 'change_time' => date('Y-m-d H:i:s'),
  53. 'change_desc' => '创建微信提现成功',
  54. ]);
  55. } else {
  56. DataUserTransfer::mk()->where(['code' => $vo['code']])->update([
  57. 'change_time' => date('Y-m-d H:i:s'), 'change_desc' => $result['err_code_des'] ?? '线上提现失败',
  58. ]);
  59. }
  60. } elseif ($vo['status'] === 4) {
  61. $this->queue->message($total, $count, "刷新提现订单 {$vo['code']} 状态", 1);
  62. if ($vo['type'] === 'wechat_banks') {
  63. $this->queryTransferBank($vo);
  64. } else {
  65. $this->queryTransferWallet($vo);
  66. }
  67. }
  68. } catch (\Exception $exception) {
  69. $error++;
  70. $this->queue->message($total, $count, "处理提现订单 {$vo['code']} 失败, {$exception->getMessage()}", 1);
  71. DataUserTransfer::mk()->where(['code' => $vo['code']])->update([
  72. 'change_time' => date('Y-m-d H:i:s'), 'change_desc' => $exception->getMessage(),
  73. ]);
  74. }
  75. $this->setQueueSuccess("此次共处理 {$total} 笔提现操作, 其中有 {$error} 笔处理失败。");
  76. }
  77. /**
  78. * 尝试提现转账到银行卡
  79. * @param array $item
  80. * @return array [config, result]
  81. * @throws \WeChat\Exceptions\InvalidDecryptException
  82. * @throws \WeChat\Exceptions\InvalidResponseException
  83. * @throws \WeChat\Exceptions\LocalCacheException
  84. * @throws \think\admin\Exception
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\DbException
  87. * @throws \think\db\exception\ModelNotFoundException
  88. */
  89. private function createTransferBank(array $item): array
  90. {
  91. $config = $this->getConfig($item['uuid']);
  92. return [$config, TransfersBank::instance($config)->create([
  93. 'partner_trade_no' => $item['code'],
  94. 'enc_bank_no' => $item['bank_code'],
  95. 'enc_true_name' => $item['bank_user'],
  96. 'bank_code' => $item['bank_wseq'],
  97. 'amount' => intval($item['amount'] - $item['charge_amount']) * 100,
  98. 'desc' => '微信银行卡提现',
  99. ])];
  100. }
  101. /**
  102. * 获取微信提现参数
  103. * @param int $uuid
  104. * @return array
  105. * @throws \think\admin\Exception
  106. * @throws \think\db\exception\DataNotFoundException
  107. * @throws \think\db\exception\DbException
  108. * @throws \think\db\exception\ModelNotFoundException
  109. */
  110. private function getConfig(int $uuid): array
  111. {
  112. $data = sysdata('TransferWxpay');
  113. if (empty($data)) throw new Exception('未配置微信提现商户');
  114. // 商户证书文件处理
  115. $local = LocalStorage::instance();
  116. if (!$local->has($file1 = "{$data['wechat_mch_id']}_key.pem", true)) {
  117. $local->set($file1, $data['wechat_mch_key_text'], true);
  118. }
  119. if (!$local->has($file2 = "{$data['wechat_mch_id']}_cert.pem", true)) {
  120. $local->set($file2, $data['wechat_mch_cert_text'], true);
  121. }
  122. // 获取用户支付信息
  123. $result = $this->getWechatInfo($uuid, $data['wechat_type']);
  124. if (empty($result)) throw new Exception('无法读取打款数据');
  125. return [
  126. 'appid' => $result[0],
  127. 'openid' => $result[1],
  128. 'mch_id' => $data['wechat_mch_id'],
  129. 'mch_key' => $data['wechat_mch_key'],
  130. 'ssl_key' => $local->path($file1, true),
  131. 'ssl_cer' => $local->path($file2, true),
  132. 'cache_path' => $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'wechat',
  133. ];
  134. }
  135. /**
  136. * 根据配置获取用户OPENID
  137. * @param int $uuid
  138. * @param string $type
  139. * @return mixed|null
  140. * @throws \think\db\exception\DataNotFoundException
  141. * @throws \think\db\exception\DbException
  142. * @throws \think\db\exception\ModelNotFoundException
  143. */
  144. private function getWechatInfo(int $uuid, string $type): ?array
  145. {
  146. $user = DataUser::mk()->where(['id' => $uuid])->find();
  147. if (empty($user)) return null;
  148. $appid1 = sysconf('data.wxapp_appid');
  149. if (strtolower(sysconf('wechat.type')) === 'api') {
  150. $appid2 = sysconf('wechat.appid');
  151. } else {
  152. $appid2 = sysconf('wechat.thr_appid');
  153. }
  154. if ($type === 'normal') {
  155. if (!empty($user['openid1'])) return [$appid1, $user['openid1']];
  156. if (!empty($user['openid2'])) return [$appid2, $user['openid2']];
  157. }
  158. if ($type === 'wxapp' && !empty($user['openid1'])) {
  159. return [$appid1, $user['openid1']];
  160. }
  161. if ($type === 'wechat' && !empty($user['openid2'])) {
  162. return [$appid2, $user['openid2']];
  163. }
  164. return null;
  165. }
  166. /**
  167. * 尝试提现转账到微信钱包
  168. * @param array $item
  169. * @return array [config, result]
  170. * @throws \WeChat\Exceptions\InvalidResponseException
  171. * @throws \WeChat\Exceptions\LocalCacheException
  172. * @throws \think\admin\Exception
  173. * @throws \think\db\exception\DataNotFoundException
  174. * @throws \think\db\exception\DbException
  175. * @throws \think\db\exception\ModelNotFoundException
  176. */
  177. private function createTransferWallet(array $item): array
  178. {
  179. $config = $this->getConfig($item['uuid']);
  180. return [$config, Transfers::instance($config)->create([
  181. 'openid' => $config['openid'],
  182. 'amount' => intval($item['amount'] - $item['charge_amount']) * 100,
  183. 'partner_trade_no' => $item['code'],
  184. 'spbill_create_ip' => '127.0.0.1',
  185. 'check_name' => 'NO_CHECK',
  186. 'desc' => '微信余额提现',
  187. ])];
  188. }
  189. /**
  190. * 查询更新提现打款状态
  191. * @param array $item
  192. * @throws \WeChat\Exceptions\InvalidResponseException
  193. * @throws \WeChat\Exceptions\LocalCacheException
  194. * @throws \think\admin\Exception
  195. * @throws \think\db\exception\DataNotFoundException
  196. * @throws \think\db\exception\DbException
  197. * @throws \think\db\exception\ModelNotFoundException
  198. */
  199. private function queryTransferBank(array $item)
  200. {
  201. $config = $this->getConfig($item['uuid']);
  202. [$config['appid'], $config['openid']] = [$item['appid'], $item['openid']];
  203. $result = TransfersBank::instance($config)->query($item['trade_no']);
  204. if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
  205. if ($result['status'] === 'SUCCESS') {
  206. DataUserTransfer::mk()->where(['code' => $item['code']])->update([
  207. 'status' => 5,
  208. 'appid' => $config['appid'],
  209. 'openid' => $config['openid'],
  210. 'trade_time' => $result['pay_succ_time'] ?: date('Y-m-d H:i:s'),
  211. 'change_time' => date('Y-m-d H:i:s'),
  212. 'change_desc' => '微信提现打款成功',
  213. ]);
  214. }
  215. if (in_array($result['status'], ['FAILED', 'BANK_FAIL'])) {
  216. DataUserTransfer::mk()->where(['code' => $item['code']])->update([
  217. 'status' => 0,
  218. 'change_time' => date('Y-m-d H:i:s'),
  219. 'change_desc' => '微信提现打款失败',
  220. ]);
  221. // 刷新用户可提现余额
  222. UserRebateService::amount($item['uuid']);
  223. }
  224. }
  225. }
  226. /**
  227. * 查询更新提现打款状态
  228. * @param array $item
  229. * @throws \WeChat\Exceptions\InvalidResponseException
  230. * @throws \WeChat\Exceptions\LocalCacheException
  231. * @throws \think\admin\Exception
  232. * @throws \think\db\exception\DataNotFoundException
  233. * @throws \think\db\exception\DbException
  234. * @throws \think\db\exception\ModelNotFoundException
  235. */
  236. private function queryTransferWallet(array $item)
  237. {
  238. $config = $this->getConfig($item['uuid']);
  239. [$config['appid'], $config['openid']] = [$item['appid'], $item['openid']];
  240. $result = Transfers::instance($config)->query($item['trade_no']);
  241. if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
  242. DataUserTransfer::mk()->where(['code' => $item['code']])->update([
  243. 'status' => 5,
  244. 'appid' => $config['appid'],
  245. 'openid' => $config['openid'],
  246. 'trade_time' => $result['payment_time'],
  247. 'change_time' => date('Y-m-d H:i:s'),
  248. 'change_desc' => '微信提现打款成功',
  249. ]);
  250. }
  251. }
  252. }