WechatService.php 23 KB

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