WechatService.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616
  1. <?php
  2. /**
  3. *
  4. * @author: xaboy<365615158@qq.com>
  5. * @day: 2017/11/23
  6. */
  7. namespace crmeb\services;
  8. use app\admin\model\wechat\WechatMessage;
  9. use app\admin\model\wechat\WechatReply;
  10. use app\models\user\User;
  11. use app\models\user\WechatUser;
  12. use crmeb\repositories\MessageRepositories;
  13. use crmeb\repositories\PaymentRepositories;
  14. use EasyWeChat\Foundation\Application;
  15. use EasyWeChat\Message\Article;
  16. use EasyWeChat\Message\Image;
  17. use EasyWeChat\Message\Material;
  18. use EasyWeChat\Message\News;
  19. use EasyWeChat\Message\Text;
  20. use EasyWeChat\Message\Video;
  21. use EasyWeChat\Message\Voice;
  22. use EasyWeChat\Payment\Order;
  23. use EasyWeChat\Server\Guard;
  24. use think\Response;
  25. use crmeb\utils\Hook;
  26. class WechatService
  27. {
  28. private static $instance = null;
  29. public static function options()
  30. {
  31. $wechat = SystemConfigService::more(['wechat_appid', 'wechat_appsecret', 'wechat_token', 'wechat_encodingaeskey', 'wechat_encode']);
  32. $payment = SystemConfigService::more(['pay_weixin_mchid', 'pay_weixin_client_cert', 'pay_weixin_client_key', 'pay_weixin_key', 'pay_weixin_open']);
  33. $config = [
  34. 'app_id' => isset($wechat['wechat_appid']) ? trim($wechat['wechat_appid']) : '',
  35. 'secret' => isset($wechat['wechat_appsecret']) ? trim($wechat['wechat_appsecret']) : '',
  36. 'token' => isset($wechat['wechat_token']) ? trim($wechat['wechat_token']) : '',
  37. 'guzzle' => [
  38. 'timeout' => 10.0, // 超时时间(秒)
  39. 'verify' => false
  40. ],
  41. ];
  42. if (isset($wechat['wechat_encode']) && (int)$wechat['wechat_encode'] > 0 && isset($wechat['wechat_encodingaeskey']) && !empty($wechat['wechat_encodingaeskey']))
  43. $config['aes_key'] = $wechat['wechat_encodingaeskey'];
  44. if (isset($payment['pay_weixin_open']) && $payment['pay_weixin_open'] == 1) {
  45. $config['payment'] = [
  46. 'merchant_id' => trim($payment['pay_weixin_mchid']),
  47. 'key' => trim($payment['pay_weixin_key']),
  48. 'cert_path' => realpath('.' . $payment['pay_weixin_client_cert']),
  49. 'key_path' => realpath('.' . $payment['pay_weixin_client_key']),
  50. 'notify_url' => sys_config('site_url') . '/api/wechat/notify'
  51. ];
  52. }
  53. return $config;
  54. }
  55. public static function application($cache = false)
  56. {
  57. (self::$instance === null || $cache === true) && (self::$instance = new Application(self::options()));
  58. return self::$instance;
  59. }
  60. public static function serve(): Response
  61. {
  62. $wechat = self::application(true);
  63. $server = $wechat->server;
  64. self::hook($server);
  65. $response = $server->serve();
  66. return response($response->getContent());
  67. }
  68. /**
  69. * 监听行为
  70. * @param Guard $server
  71. */
  72. private static function hook($server)
  73. {
  74. $server->setMessageHandler(function ($message) {
  75. event('WechatMessageBefore', [$message]);
  76. switch ($message->MsgType) {
  77. case 'event':
  78. switch (strtolower($message->Event)) {
  79. case 'subscribe':
  80. $response = WechatReply::reply('subscribe');
  81. if (isset($message->EventKey)) {
  82. if ($message->EventKey && ($qrInfo = QrcodeService::getQrcode($message->Ticket, 'ticket'))) {
  83. QrcodeService::scanQrcode($message->Ticket, 'ticket');
  84. if (strtolower($qrInfo['third_type']) == 'spread') {
  85. try {
  86. $spreadUid = $qrInfo['third_id'];
  87. $uid = WechatUser::openidToUid($message->FromUserName, 'openid');
  88. if ($spreadUid == $uid) return '自己不能推荐自己';
  89. $userInfo = User::getUserInfo($uid);
  90. if ($userInfo['spread_uid']) return '已有推荐人!';
  91. if (!User::setSpreadUid($userInfo['uid'], $spreadUid)) {
  92. $response = '绑定推荐人失败!';
  93. }
  94. } catch (\Exception $e) {
  95. $response = $e->getMessage();
  96. }
  97. }
  98. }
  99. }
  100. break;
  101. case 'unsubscribe':
  102. event('WechatEventUnsubscribeBefore', [$message]);
  103. break;
  104. case 'scan':
  105. $response = WechatReply::reply('subscribe');
  106. if ($message->EventKey && ($qrInfo = QrcodeService::getQrcode($message->Ticket, 'ticket'))) {
  107. QrcodeService::scanQrcode($message->Ticket, 'ticket');
  108. if (strtolower($qrInfo['third_type']) == 'spread') {
  109. try {
  110. $spreadUid = $qrInfo['third_id'];
  111. $uid = WechatUser::openidToUid($message->FromUserName, 'openid');
  112. if ($spreadUid == $uid) return '自己不能推荐自己';
  113. $userInfo = User::getUserInfo($uid);
  114. if ($userInfo['spread_uid']) return '已有推荐人!';
  115. if (User::setSpreadUid($userInfo['uid'], $spreadUid)) {
  116. $response = '绑定推荐人失败!';
  117. }
  118. } catch (\Exception $e) {
  119. $response = $e->getMessage();
  120. }
  121. }
  122. }
  123. break;
  124. case 'location':
  125. $response = MessageRepositories::wechatEventLocation($message);
  126. break;
  127. case 'click':
  128. $response = WechatReply::reply($message->EventKey);
  129. break;
  130. case 'view':
  131. $response = MessageRepositories::wechatEventView($message);
  132. break;
  133. }
  134. break;
  135. case 'text':
  136. $response = WechatReply::reply($message->Content);
  137. break;
  138. case 'image':
  139. $response = MessageRepositories::wechatMessageImage($message);
  140. break;
  141. case 'voice':
  142. $response = MessageRepositories::wechatMessageVoice($message);
  143. break;
  144. case 'video':
  145. $response = MessageRepositories::wechatMessageVideo($message);
  146. break;
  147. case 'location':
  148. $response = MessageRepositories::wechatMessageLocation($message);
  149. break;
  150. case 'link':
  151. $response = MessageRepositories::wechatMessageLink($message);
  152. break;
  153. // ... 其它消息
  154. default:
  155. $response = MessageRepositories::wechatMessageOther($message);
  156. break;
  157. }
  158. return $response ?? false;
  159. });
  160. }
  161. /**
  162. * 多客服消息转发
  163. * @param string $account
  164. * @return \EasyWeChat\Message\Transfer
  165. */
  166. public static function transfer($account = '')
  167. {
  168. $transfer = new \EasyWeChat\Message\Transfer();
  169. return empty($account) ? $transfer : $transfer->to($account);
  170. }
  171. /**
  172. * 上传永久素材接口
  173. * @return \EasyWeChat\Material\Material
  174. */
  175. public static function materialService()
  176. {
  177. return self::application()->material;
  178. }
  179. /**
  180. * 上传临时素材接口
  181. * @return \EasyWeChat\Material\Temporary
  182. */
  183. public static function materialTemporaryService()
  184. {
  185. return self::application()->material_temporary;
  186. }
  187. /**
  188. * 用户接口
  189. * @return \EasyWeChat\User\User
  190. */
  191. public static function userService()
  192. {
  193. return self::application()->user;
  194. }
  195. /**
  196. * 客服消息接口
  197. * @param null $to
  198. * @param null $message
  199. */
  200. public static function staffService()
  201. {
  202. return self::application()->staff;
  203. }
  204. /**
  205. * 微信公众号菜单接口
  206. * @return \EasyWeChat\Menu\Menu
  207. */
  208. public static function menuService()
  209. {
  210. return self::application()->menu;
  211. }
  212. /**
  213. * 微信二维码生成接口
  214. * @return \EasyWeChat\QRCode\QRCode
  215. */
  216. public static function qrcodeService()
  217. {
  218. return self::application()->qrcode;
  219. }
  220. /**
  221. * 微信永久二维码生成接口 小于10万个
  222. * @return \EasyWeChat\QRCode\QRCode
  223. */
  224. public static function qrcodeForeverService($sceneValue)
  225. {
  226. return self::application()->qrcode->forever($sceneValue);
  227. }
  228. /**
  229. * 微信临时二维码生成接口 30天有效期
  230. * @return \EasyWeChat\QRCode\QRCode
  231. */
  232. public static function qrcodeTempService($sceneValue, $expireSeconds = 2592000)
  233. {
  234. return self::application()->qrcode->temporary($sceneValue, $expireSeconds);
  235. }
  236. /**
  237. * 短链接生成接口
  238. * @return \EasyWeChat\Url\Url
  239. */
  240. public static function urlService()
  241. {
  242. return self::application()->url;
  243. }
  244. /**
  245. * 用户授权
  246. * @return \Overtrue\Socialite\Providers\WeChatProvider
  247. */
  248. public static function oauthService()
  249. {
  250. return self::application()->oauth;
  251. }
  252. /**
  253. * 模板消息接口
  254. * @return \EasyWeChat\Notice\Notice
  255. */
  256. public static function noticeService()
  257. {
  258. return self::application()->notice;
  259. }
  260. public static function sendTemplate($openid, $templateId, array $data, $url = null, $defaultColor = null)
  261. {
  262. $notice = self::noticeService()->to($openid)->template($templateId)->andData($data);
  263. if ($url !== null) $notice->url($url);
  264. if ($defaultColor !== null) $notice->defaultColor($defaultColor);
  265. return $notice->send();
  266. }
  267. /**
  268. * 支付
  269. * @return \EasyWeChat\Payment\Payment
  270. */
  271. public static function paymentService()
  272. {
  273. return self::application()->payment;
  274. }
  275. public static function downloadBill($day, $type = 'ALL')
  276. {
  277. // $payment = self::paymentService();
  278. // $merchant = $payment->getMerchant();
  279. // $params = [
  280. // 'appid' => $merchant->app_id,
  281. // 'bill_date'=>$day,
  282. // 'bill_type'=>strtoupper($type),
  283. // 'mch_id'=> $merchant->merchant_id,
  284. // 'nonce_str' => uniqid()
  285. // ];
  286. // $params['sign'] = \EasyWeChat\Payment\generate_sign($params, $merchant->key, 'md5');
  287. // $xml = XML::build($params);
  288. // dump(self::paymentService()->downloadBill($day)->getContents());
  289. // dump($payment->getHttp()->request('https://api.mch.weixin.qq.com/pay/downloadbill','POST',[
  290. // 'body' => $xml,
  291. // 'stream'=>true
  292. // ])->getBody()->getContents());
  293. }
  294. public static function userTagService()
  295. {
  296. return self::application()->user_tag;
  297. }
  298. public static function userGroupService()
  299. {
  300. return self::application()->user_group;
  301. }
  302. /**
  303. * 生成支付订单对象
  304. * @param $openid
  305. * @param $out_trade_no
  306. * @param $total_fee
  307. * @param $attach
  308. * @param $body
  309. * @param string $detail
  310. * @param string $trade_type
  311. * @param array $options
  312. * @return Order
  313. */
  314. protected static function paymentOrder($openid, $out_trade_no, $total_fee, $attach, $body, $detail = '', $trade_type = 'JSAPI', $options = [])
  315. {
  316. $total_fee = bcmul($total_fee, 100, 0);
  317. $order = array_merge(compact('out_trade_no', 'total_fee', 'attach', 'body', 'detail', 'trade_type'), $options);
  318. if (!is_null($openid)) $order['openid'] = $openid;
  319. if ($order['detail'] == '') unset($order['detail']);
  320. return new Order($order);
  321. }
  322. /**
  323. * 获得下单ID
  324. * @param $openid
  325. * @param $out_trade_no
  326. * @param $total_fee
  327. * @param $attach
  328. * @param $body
  329. * @param string $detail
  330. * @param string $trade_type
  331. * @param array $options
  332. * @return mixed
  333. */
  334. public static function paymentPrepare($openid, $out_trade_no, $total_fee, $attach, $body, $detail = '', $trade_type = 'JSAPI', $options = [])
  335. {
  336. $order = self::paymentOrder($openid, $out_trade_no, $total_fee, $attach, $body, $detail, $trade_type, $options);
  337. $result = self::paymentService()->prepare($order);
  338. if ($result->return_code == 'SUCCESS' && $result->result_code == 'SUCCESS') {
  339. try {
  340. PaymentRepositories::wechatPaymentPrepare($order, $result->prepay_id);
  341. } catch (\Exception $e) {
  342. }
  343. return $result;
  344. } else {
  345. if ($result->return_code == 'FAIL') {
  346. exception('微信支付错误返回:' . $result->return_msg);
  347. } else if (isset($result->err_code)) {
  348. exception('微信支付错误返回:' . $result->err_code_des);
  349. } else {
  350. exception('没有获取微信支付的预支付ID,请重新发起支付!');
  351. }
  352. exit;
  353. }
  354. }
  355. /**
  356. * 获得jsSdk支付参数
  357. * @param $openid
  358. * @param $out_trade_no
  359. * @param $total_fee
  360. * @param $attach
  361. * @param $body
  362. * @param string $detail
  363. * @param string $trade_type
  364. * @param array $options
  365. * @return array|string
  366. */
  367. public static function jsPay($openid, $out_trade_no, $total_fee, $attach, $body, $detail = '', $trade_type = 'JSAPI', $options = [])
  368. {
  369. $paymentPrepare = self::paymentPrepare($openid, $out_trade_no, $total_fee, $attach, $body, $detail, $trade_type, $options);
  370. return self::paymentService()->configForJSSDKPayment($paymentPrepare->prepay_id);
  371. }
  372. /**
  373. * 使用商户订单号退款
  374. * @param $orderNo
  375. * @param $refundNo
  376. * @param $totalFee
  377. * @param null $refundFee
  378. * @param null $opUserId
  379. * @param string $refundReason
  380. * @param string $type
  381. * @param string $refundAccount
  382. */
  383. public static function refund($orderNo, $refundNo, $totalFee, $refundFee = null, $opUserId = null, $refundReason = '', $type = 'out_trade_no', $refundAccount = 'REFUND_SOURCE_UNSETTLED_FUNDS')
  384. {
  385. $totalFee = floatval($totalFee);
  386. $refundFee = floatval($refundFee);
  387. return self::paymentService()->refund($orderNo, $refundNo, $totalFee, $refundFee, $opUserId, $type, $refundAccount, $refundReason);
  388. }
  389. public static function payOrderRefund($orderNo, array $opt)
  390. {
  391. if (!isset($opt['pay_price'])) exception('缺少pay_price');
  392. $totalFee = floatval(bcmul($opt['pay_price'], 100, 0));
  393. $refundFee = isset($opt['refund_price']) ? floatval(bcmul($opt['refund_price'], 100, 0)) : null;
  394. $refundReason = isset($opt['desc']) ? $opt['desc'] : '';
  395. $refundNo = isset($opt['refund_id']) ? $opt['refund_id'] : $orderNo;
  396. $opUserId = isset($opt['op_user_id']) ? $opt['op_user_id'] : null;
  397. $type = isset($opt['type']) ? $opt['type'] : 'out_trade_no';
  398. /*仅针对老资金流商户使用
  399. REFUND_SOURCE_UNSETTLED_FUNDS---未结算资金退款(默认使用未结算资金退款)
  400. REFUND_SOURCE_RECHARGE_FUNDS---可用余额退款*/
  401. $refundAccount = isset($opt['refund_account']) ? $opt['refund_account'] : 'REFUND_SOURCE_UNSETTLED_FUNDS';
  402. try {
  403. $res = (self::refund($orderNo, $refundNo, $totalFee, $refundFee, $opUserId, $refundReason, $type, $refundAccount));
  404. if ($res->return_code == 'FAIL') exception('退款失败:' . $res->return_msg);
  405. if (isset($res->err_code)) exception('退款失败:' . $res->err_code_des);
  406. } catch (\Exception $e) {
  407. exception($e->getMessage());
  408. }
  409. return true;
  410. }
  411. /**
  412. * 微信支付成功回调接口
  413. */
  414. public static function handleNotify()
  415. {
  416. self::paymentService()->handleNotify(function ($notify, $successful) {
  417. if ($successful && isset($notify->out_trade_no)) {
  418. if (isset($notify->attach) && $notify->attach) {
  419. if (($count = strpos($notify->out_trade_no, '_')) !== false) {
  420. $notify->out_trade_no = substr($notify->out_trade_no, $count + 1);
  421. }
  422. (new Hook(PaymentRepositories::class, 'wechat'))->listen($notify->attach, $notify->out_trade_no);
  423. }
  424. WechatMessage::setOnceMessage($notify, $notify->openid, 'payment_success', $notify->out_trade_no);
  425. return false;
  426. }
  427. });
  428. }
  429. /**
  430. * jsSdk
  431. * @return \EasyWeChat\Js\Js
  432. */
  433. public static function jsService()
  434. {
  435. return self::application()->js;
  436. }
  437. public static function jsSdk($url = '')
  438. {
  439. $apiList = ['editAddress', 'openAddress', 'updateTimelineShareData', 'updateAppMessageShareData', 'onMenuShareTimeline', 'onMenuShareAppMessage', 'onMenuShareQQ', 'onMenuShareWeibo', 'onMenuShareQZone', 'startRecord', 'stopRecord', 'onVoiceRecordEnd', 'playVoice', 'pauseVoice', 'stopVoice', 'onVoicePlayEnd', 'uploadVoice', 'downloadVoice', 'chooseImage', 'previewImage', 'uploadImage', 'downloadImage', 'translateVoice', 'getNetworkType', 'openLocation', 'getLocation', 'hideOptionMenu', 'showOptionMenu', 'hideMenuItems', 'showMenuItems', 'hideAllNonBaseMenuItem', 'showAllNonBaseMenuItem', 'closeWindow', 'scanQRCode', 'chooseWXPay', 'openProductSpecificView', 'addCard', 'chooseCard', 'openCard'];
  440. $jsService = self::jsService();
  441. if ($url) $jsService->setUrl($url);
  442. try {
  443. return $jsService->config($apiList);
  444. } catch (\Exception $e) {
  445. return '{}';
  446. }
  447. }
  448. /**
  449. * 回复文本消息
  450. * @param string $content 文本内容
  451. * @return Text
  452. */
  453. public static function textMessage($content)
  454. {
  455. return new Text(compact('content'));
  456. }
  457. /**
  458. * 回复图片消息
  459. * @param string $media_id 媒体资源 ID
  460. * @return Image
  461. */
  462. public static function imageMessage($media_id)
  463. {
  464. return new Image(compact('media_id'));
  465. }
  466. /**
  467. * 回复视频消息
  468. * @param string $media_id 媒体资源 ID
  469. * @param string $title 标题
  470. * @param string $description 描述
  471. * @param null $thumb_media_id 封面资源 ID
  472. * @return Video
  473. */
  474. public static function videoMessage($media_id, $title = '', $description = '...', $thumb_media_id = null)
  475. {
  476. return new Video(compact('media_id', 'title', 'description', 'thumb_media_id'));
  477. }
  478. /**
  479. * 回复声音消息
  480. * @param string $media_id 媒体资源 ID
  481. * @return Voice
  482. */
  483. public static function voiceMessage($media_id)
  484. {
  485. return new Voice(compact('media_id'));
  486. }
  487. /**
  488. * 回复图文消息
  489. * @param string|array $title 标题
  490. * @param string $description 描述
  491. * @param string $url URL
  492. * @param string $image 图片链接
  493. */
  494. public static function newsMessage($title, $description = '...', $url = '', $image = '')
  495. {
  496. if (is_array($title)) {
  497. if (isset($title[0]) && is_array($title[0])) {
  498. $newsList = [];
  499. foreach ($title as $news) {
  500. $newsList[] = self::newsMessage($news);
  501. }
  502. return $newsList;
  503. } else {
  504. $data = $title;
  505. }
  506. } else {
  507. $data = compact('title', 'description', 'url', 'image');
  508. }
  509. return new News($data);
  510. }
  511. /**
  512. * 回复文章消息
  513. * @param string|array $title 标题
  514. * @param string $thumb_media_id 图文消息的封面图片素材id(必须是永久 media_ID)
  515. * @param string $source_url 图文消息的原文地址,即点击“阅读原文”后的URL
  516. * @param string $content 图文消息的具体内容,支持HTML标签,必须少于2万字符,小于1M,且此处会去除JS
  517. * @param string $author 作者
  518. * @param string $digest 图文消息的摘要,仅有单图文消息才有摘要,多图文此处为空
  519. * @param int $show_cover_pic 是否显示封面,0为false,即不显示,1为true,即显示
  520. * @param int $need_open_comment 是否打开评论,0不打开,1打开
  521. * @param int $only_fans_can_comment 是否粉丝才可评论,0所有人可评论,1粉丝才可评论
  522. * @return Article
  523. */
  524. public static function articleMessage($title, $thumb_media_id, $source_url, $content = '', $author = '', $digest = '', $show_cover_pic = 0, $need_open_comment = 0, $only_fans_can_comment = 1)
  525. {
  526. $data = is_array($title) ? $title : compact('title', 'thumb_media_id', 'source_url', 'content', 'author', 'digest', 'show_cover_pic', 'need_open_comment', 'only_fans_can_comment');
  527. return new Article($data);
  528. }
  529. /**
  530. * 回复素材消息
  531. * @param string $type [mpnews、 mpvideo、voice、image]
  532. * @param string $media_id 素材 ID
  533. * @return Material
  534. */
  535. public static function materialMessage($type, $media_id)
  536. {
  537. return new Material($type, $media_id);
  538. }
  539. /**
  540. * 作为客服消息发送
  541. * @param $to
  542. * @param $message
  543. * @return bool
  544. */
  545. public static function staffTo($to, $message)
  546. {
  547. $staff = self::staffService();
  548. $staff = is_callable($message) ? $staff->message($message()) : $staff->message($message);
  549. $res = $staff->to($to)->send();
  550. return $res;
  551. }
  552. /**
  553. * 获得用户信息
  554. * @param array|string $openid
  555. * @return \EasyWeChat\Support\Collection
  556. */
  557. public static function getUserInfo($openid)
  558. {
  559. $userService = self::userService();
  560. $userInfo = is_array($openid) ? $userService->batchGet($openid) : $userService->get($openid);
  561. return $userInfo;
  562. }
  563. }