WechatService.php 23 KB

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