截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

WeChatPayServer.php 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  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\common\server;
  20. use app\common\enum\IntegralOrderEnum;
  21. use app\common\enum\PayEnum;
  22. use app\common\logic\IntegralOrderRefundLogic;
  23. use app\common\logic\PaymentLogic;
  24. use app\common\logic\PayNotifyLogic;
  25. use app\common\model\Client_;
  26. use app\common\model\integral\IntegralOrder;
  27. use app\common\model\Pay;
  28. use EasyWeChat\Factory;
  29. use EasyWeChat\Payment\Application;
  30. use app\common\model\order\OrderLog;
  31. use app\common\model\order\Order;
  32. use app\common\model\order\OrderTrade;
  33. use Endroid\QrCode\QrCode;
  34. use http\Client;
  35. use think\facade\Db;
  36. use think\Exception;
  37. /**
  38. * Class WeChatPayServer
  39. * @package app\common\server
  40. */
  41. class WeChatPayServer
  42. {
  43. protected static $error = '未知错误';
  44. protected static $return_code = 0;
  45. /**
  46. * @notes 错误信息
  47. * @return string
  48. * @author suny
  49. * @date 2021/7/13 6:34 下午
  50. */
  51. public static function getError()
  52. {
  53. return self::$error;
  54. }
  55. /**
  56. * @notes 返回状态码
  57. * @return int
  58. * @author suny
  59. * @date 2021/7/13 6:34 下午
  60. */
  61. public static function getReturnCode()
  62. {
  63. return self::$return_code;
  64. }
  65. /**
  66. * @notes 微信统一下单
  67. * @param $from
  68. * @param $order
  69. * @param $order_source
  70. * @return array|false|string
  71. * @author suny
  72. * @date 2021/7/13 6:34 下午
  73. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  74. * @throws \Endroid\QrCode\Exception\InvalidWriterException
  75. * @throws \GuzzleHttp\Exception\GuzzleException
  76. * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
  77. */
  78. public static function unifiedOrder($from, $order, $order_source)
  79. {
  80. try {
  81. $wechat_config = self::getWeChatConfig($order, $order_source);
  82. $auth = $wechat_config['auth'];
  83. $config = $wechat_config['config'];
  84. $notify_url = $wechat_config['notify_url'];
  85. //jsapi需要验证openID
  86. $check_source = [Client_::mnp, Client_::oa];
  87. if (!$auth && in_array($order_source, $check_source)) {
  88. throw new Exception('授权信息失效');
  89. }
  90. $app = Factory::payment($config);
  91. $attributes = self::getAttributes($from, $order, $order_source, $auth, $notify_url);
  92. $result = $app->order->unify($attributes);
  93. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  94. //小程序,公众号
  95. if (in_array($order_source, [Client_::mnp, Client_::oa])) {
  96. $data = $app->jssdk->bridgeConfig($result['prepay_id'], false);
  97. }
  98. //app客户端
  99. if (in_array($order_source, [Client_::ios, Client_::android])) {
  100. $data = $app->jssdk->appConfig($result['prepay_id'], false);
  101. }
  102. //pc端
  103. if ($order_source == Client_::pc) {
  104. $data = self::getNativeCode($result, $order);
  105. }
  106. //h5(非微信环境)
  107. if ($order_source == Client_::h5) {
  108. $redirect_url = request()->domain() . '/mobile/pages/user_order/user_order';
  109. $redirect_url = urlencode($redirect_url);
  110. $data = $result['mweb_url'] . '&redirect_url=' . $redirect_url;
  111. }
  112. return $data;
  113. } else {
  114. if (isset($result['return_code']) && $result['return_code'] == 'FAIL') {
  115. throw new Exception($result['return_msg']);
  116. }
  117. if (isset($result['err_code_des'])) {
  118. throw new Exception($result['err_code_des']);
  119. }
  120. throw new Exception('未知原因');
  121. }
  122. } catch (Exception $e) {
  123. self::$error = '支付失败:' . $e->getMessage();
  124. return false;
  125. }
  126. }
  127. /**
  128. * @notes NATIVE 支付二维码
  129. * @param $result
  130. * @param $order
  131. * @return string
  132. * @author suny
  133. * @date 2021/7/13 6:34 下午
  134. */
  135. public static function getNativeCode($result, $order)
  136. {
  137. $save_dir = 'uploads/pay_code/';
  138. $qr_src = md5($order['order_sn'] . mt_rand(10000, 99999)) . '.png';
  139. $code_url = ROOT_PATH . '/' . $save_dir . $qr_src;
  140. $qrCode = new QrCode();
  141. $qrCode->setText($result['code_url']);
  142. $qrCode->setSize(200);
  143. $qrCode->setWriterByName('png');
  144. !file_exists($save_dir) && mkdir($save_dir, 777, true);
  145. $qrCode->writeFile($code_url);
  146. //生成base64临时图片
  147. if ($fp = fopen($code_url, "rb", 0)) {
  148. $gambar = fread($fp, filesize($code_url));
  149. fclose($fp);
  150. $base64 = chunk_split(base64_encode($gambar));
  151. $base64 = 'data:image/png;base64,' . $base64;
  152. }
  153. //删除文件
  154. if (strstr($code_url, $save_dir)) {
  155. unlink($code_url);
  156. }
  157. return $base64;
  158. }
  159. /**
  160. * @notes 支付参数
  161. * @param $from
  162. * @param $order
  163. * @param $order_source
  164. * @param $auth
  165. * @param $notify_url
  166. * @return array
  167. * @author suny
  168. * @date 2021/7/13 6:34 下午
  169. */
  170. public static function getAttributes($from, $order, $order_source, $auth, $notify_url)
  171. {
  172. switch ($from) {
  173. case 'trade':
  174. $attributes = [
  175. 'trade_type' => 'JSAPI',
  176. 'body' => '商品总订单',
  177. 'total_fee' => $order['order_amount'] * 100, // 单位:分
  178. 'notify_url' => $notify_url,
  179. 'openid' => $auth['openid'] ?? '',
  180. 'attach' => 'trade'
  181. ];
  182. break;
  183. case 'order':
  184. $attributes = [
  185. 'trade_type' => 'JSAPI',
  186. 'body' => '商品子订单',
  187. 'total_fee' => $order['order_amount'] * 100, // 单位:分
  188. 'notify_url' => $notify_url,
  189. 'openid' => $auth['openid'] ?? '',
  190. 'attach' => 'order'
  191. ];
  192. break;
  193. case 'recharge':
  194. $attributes = [
  195. 'trade_type' => 'JSAPI',
  196. 'body' => '充值',
  197. 'total_fee' => $order['order_amount'] * 100, // 单位:分
  198. 'notify_url' => $notify_url,
  199. 'openid' => $auth['openid'] ?? '',
  200. 'attach' => 'recharge'
  201. ];
  202. break;
  203. case 'integral':
  204. $attributes = [
  205. 'trade_type' => 'JSAPI',
  206. 'body' => '积分商城',
  207. 'total_fee' => $order['order_amount'] * 100, // 单位:分
  208. 'notify_url' => $notify_url,
  209. 'openid' => $auth['openid'] ?? '',
  210. 'attach' => 'integral'
  211. ];
  212. break;
  213. }
  214. //app支付类型
  215. if ($order_source == Client_::android || $order_source == Client_::ios) {
  216. $attributes['trade_type'] = 'APP';
  217. }
  218. //NATIVE模式设置
  219. if ($order_source == Client_::pc) {
  220. $attributes['trade_type'] = 'NATIVE';
  221. $attributes['product_id'] = $order['order_sn'];
  222. $attributes['openid'] = "";
  223. }
  224. //h5支付类型
  225. if ($order_source == Client_::h5) {
  226. $attributes['trade_type'] = 'MWEB';
  227. }
  228. //修改微信统一下单,订单编号 -> 支付回调时截取前面的单号 18个
  229. //修改原因:回调时使用了不同的回调地址,导致跨客户端支付时(例如小程序,公众号)可能出现201,商户订单号重复错误
  230. if ($from == 'trade') {
  231. $attributes['out_trade_no'] = $order['t_sn'] . $attributes['trade_type'] . $order_source;
  232. } else {
  233. $attributes['out_trade_no'] = $order['order_sn'] . $attributes['trade_type'] . $order_source;
  234. }
  235. return $attributes;
  236. }
  237. /**
  238. * @notes 获取微信配置
  239. * @param $order
  240. * @param $order_source
  241. * @return array
  242. * @author suny
  243. * @date 2021/7/13 6:35 下午
  244. * @throws \think\db\exception\DataNotFoundException
  245. * @throws \think\db\exception\ModelNotFoundException
  246. * @throws \think\exception\DbException
  247. * @throws Exception
  248. */
  249. public static function getWeChatConfig($order, $order_source)
  250. {
  251. $pay_config = WeChatServer::getPayConfigBySource($order_source);
  252. $where[] = ['user_id', '=', $order['user_id']];
  253. $where[] = ['client', '=', $order_source];
  254. $auth = Db::name('user_auth')->where($where)->find();
  255. $data = [
  256. 'auth' => $auth,
  257. 'config' => $pay_config['config'],
  258. 'notify_url' => $pay_config['notify_url'],
  259. 'order_source' => $order_source,
  260. ];
  261. return $data;
  262. }
  263. /**
  264. * @notes 添加订单日志表
  265. * @param $order_id
  266. * @param $user_id
  267. * @param $shop_id
  268. * @return array
  269. * @author suny
  270. * @date 2021/7/13 6:35 下午
  271. */
  272. public static function getOrderLogData($order_id, $user_id, $shop_id)
  273. {
  274. $order_log_data = [];
  275. $order_log_data['type'] = 0;
  276. $order_log_data['channel'] = 101;
  277. $order_log_data['order_id'] = $order_id;
  278. $order_log_data['handle_id'] = $user_id;
  279. $order_log_data['shop_id'] = $shop_id;
  280. $order_log_data['content'] = 105;
  281. $order_log_data['create_time'] = time();
  282. return $order_log_data;
  283. }
  284. /**
  285. * @notes 支付回调
  286. * @param $config
  287. * @author suny
  288. * @date 2021/7/13 6:35 下午
  289. * @throws \EasyWeChat\Kernel\Exceptions\Exception
  290. */
  291. public static function notify($config)
  292. {
  293. $app = new Application($config);
  294. $response = $app->handlePaidNotify(function ($message, $fail) {
  295. if ($message['return_code'] !== 'SUCCESS') {
  296. return $fail('通信失败');
  297. }
  298. // // 用户是否支付成功
  299. if ($message['result_code'] === 'SUCCESS') {
  300. $extra['transaction_id'] = $message['transaction_id'];
  301. $attach = $message['attach'];
  302. $message['out_trade_no'] = mb_substr($message['out_trade_no'], 0, 18);
  303. switch ($attach) {
  304. case 'trade':
  305. $order_trade = OrderTrade::where('t_sn', $message['out_trade_no'])->find();
  306. $order = Order::where('trade_id', $order_trade['id'])->find();
  307. if (!$order || $order['pay_status'] >= PayEnum::ISPAID) {
  308. return true;
  309. }
  310. PayNotifyLogic::handle('trade', $message['out_trade_no'], $extra);
  311. break;
  312. case 'order':
  313. $order = Db::name('order')->where(['order_sn' => $message['out_trade_no']])->find();
  314. if (!$order || $order['pay_status'] >= PayEnum::ISPAID) {
  315. return true;
  316. }
  317. PayNotifyLogic::handle('order', $message['out_trade_no'], $extra);
  318. break;
  319. case 'recharge':
  320. $order = Db::name('recharge_order')->where(['order_sn' => $message['out_trade_no']])->find();
  321. if (!$order || $order['pay_status'] >= PayEnum::ISPAID) {
  322. return true;
  323. }
  324. PayNotifyLogic::handle('recharge', $message['out_trade_no'], $extra);
  325. break;
  326. case 'integral':
  327. // 积分商城订单
  328. $order = IntegralOrder::where(['order_sn' => $message['out_trade_no']])->find();
  329. if (!$order || $order['refund_status'] == IntegralOrderEnum::IS_REFUND) {
  330. // 没有订单记录 或者 订单已发生退款 中断后续操作
  331. return true;
  332. }
  333. if ($order['order_status'] == IntegralOrderEnum::ORDER_STATUS_DOWN) {
  334. // 收到支付回调时,订单已被关闭, 则进行退款操作
  335. IntegralOrderRefundLogic::refundOrderAmount($order['id']);
  336. return true;
  337. }
  338. if ($order['pay_status'] >= PayEnum::ISPAID) {
  339. return true;
  340. }
  341. PayNotifyLogic::handle('integral', $message['out_trade_no'], $extra);
  342. break;
  343. }
  344. } elseif ($message['result_code'] === 'FAIL') {
  345. // 用户支付失败
  346. }
  347. return true; // 返回处理完成
  348. });
  349. $response->send();
  350. }
  351. /**
  352. * @notes 退款
  353. * @param $config
  354. * @param $data
  355. * @return array|\EasyWeChat\Kernel\Support\Collection|false|object|\Psr\Http\Message\ResponseInterface|string
  356. * @author suny
  357. * @date 2021/7/13 6:35 下午
  358. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  359. */
  360. public static function refund($config, $data)
  361. {
  362. if (!empty($data["transaction_id"])) {
  363. $app = Factory::payment($config);
  364. $result = $app->refund->byTransactionId(
  365. $data['transaction_id'],
  366. $data['refund_sn'],
  367. $data['total_fee'],
  368. $data['refund_fee']
  369. );
  370. return $result;
  371. } else {
  372. return false;
  373. }
  374. }
  375. }