WechatService.php 23 KB

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