Wechat.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. <?php
  2. namespace addons\shopro\library;
  3. use EasyWeChat\Factory;
  4. use addons\shopro\model\Config;
  5. use think\Model;
  6. use fast\Http;
  7. /**
  8. *
  9. */
  10. class Wechat extends Model
  11. {
  12. protected $config;
  13. protected $app;
  14. public function __construct($platform)
  15. {
  16. $this->setConfig($platform);
  17. switch ($platform) {
  18. case 'wxOfficialAccount':
  19. $this->app = Factory::officialAccount($this->config);
  20. break;
  21. case 'wxMiniProgram':
  22. $this->app = Factory::miniProgram($this->config);
  23. break;
  24. case 'App':
  25. $this->app = Factory::openPlatform($this->config);
  26. break;
  27. }
  28. // 重新绑定 easywechat 缓存(如果需要负载均衡,必须要开启)
  29. // $this->rebindCache();
  30. }
  31. // 返回实例
  32. public function getApp() {
  33. return $this->app;
  34. }
  35. //小程序:获取openid&session_key
  36. public function code($code)
  37. {
  38. return $this->app->auth->session($code);
  39. }
  40. public function oauth()
  41. {
  42. $oauth = $this->app->oauth;
  43. return $oauth;
  44. }
  45. //解密信息
  46. public function decryptData($session, $iv, $encryptData)
  47. {
  48. $data = $this->app->encryptor->decryptData($session, $iv, $encryptData);
  49. return $data;
  50. }
  51. public function unify($orderBody)
  52. {
  53. $result = $this->app->order->unify($orderBody);
  54. return $result;
  55. }
  56. public function bridgeConfig($prepayId)
  57. {
  58. $jssdk = $this->app->jssdk;
  59. $config = $jssdk->bridgeConfig($prepayId, false);
  60. return $config;
  61. }
  62. public function notify()
  63. {
  64. $result = $this->app;
  65. return $result;
  66. }
  67. //获取accessToken
  68. public function getAccessToken()
  69. {
  70. $accessToken = $this->app->access_token;
  71. $token = $accessToken->getToken(); // token 数组 token['access_token'] 字符串
  72. //$token = $accessToken->getToken(true); // 强制重新从微信服务器获取 token.
  73. return $token;
  74. }
  75. /**
  76. * 重写 jssdk buildConfig 方法
  77. *
  78. * @param [type] $jssdk jssdk 实例
  79. * @param [type] $apis 要请求的 api 列表
  80. * @param boolean $debug debug
  81. * @param boolean $beta
  82. * @param boolean $json 是否返回 json
  83. * @param array $openTagList 开放标签列表
  84. * @return void
  85. */
  86. public function buildConfig($jssdk, $jsApiList, $debug = false, $beta = false, $json = false, $openTagList = [], $url = '')
  87. {
  88. $url = $url ?: $jssdk->getUrl();
  89. $nonce = \EasyWeChat\Kernel\Support\Str::quickRandom(10);
  90. $timestamp = time();
  91. $signature = [
  92. 'appId' => $this->config['app_id'],
  93. 'nonceStr' => $nonce,
  94. 'timestamp' => $timestamp,
  95. 'url' => $url,
  96. 'signature' => $jssdk->getTicketSignature($jssdk->getTicket()['ticket'], $nonce, $timestamp, $url),
  97. ];
  98. $config = array_merge(compact('debug', 'beta', 'jsApiList', 'openTagList'), $signature);
  99. return $json ? json_encode($config) : $config;
  100. }
  101. public function sendTemplateMessage($attributes)
  102. {
  103. extract($attributes);
  104. $this->app->template_message->send([
  105. 'touser' => $openId,
  106. 'template_id' => $templateId,
  107. 'page' => $page,
  108. 'form_id' => $formId,
  109. 'data' => $data,
  110. 'emphasis_keyword' => $emphasis_keyword
  111. ]);
  112. }
  113. /**
  114. * 发送公众号订阅消息
  115. *
  116. * @return void
  117. */
  118. public function bizsendSubscribeMessage($data) {
  119. $access_token = $this->getAccessToken();
  120. $bizsendUrl = "https://api.weixin.qq.com/cgi-bin/message/subscribe/bizsend?access_token={$access_token['access_token']}";
  121. $headers = ['Content-type: application/json'];
  122. $options = [
  123. CURLOPT_HTTPHEADER => $headers
  124. ];
  125. $result = Http::sendRequest($bizsendUrl, json_encode($data), 'POST', $options);
  126. if (isset($result['ret']) && $result['ret']) {
  127. // 请求成功
  128. $result = json_decode($result['msg'], true);
  129. return $result;
  130. }
  131. // 请求失败
  132. return ['errcode' => -1, 'msg' => $result];
  133. }
  134. // 同步小程序直播
  135. public function live(Array $params = [])
  136. {
  137. $default = [
  138. 'start' => 0,
  139. 'limit' => 10
  140. ];
  141. $params = array_merge($default, $params);
  142. $default = json_encode($params);
  143. $access_token = $this->app->access_token->getToken();
  144. $getRoomsListUrl = "https://api.weixin.qq.com/wxa/business/getliveinfo?access_token={$access_token['access_token']}";
  145. $headers = ['Content-type: application/json'];
  146. $options = [
  147. CURLOPT_HTTPHEADER => $headers
  148. ];
  149. $result = Http::sendRequest($getRoomsListUrl, $default, 'POST', $options);
  150. if (isset($result['ret']) && $result['ret']) {
  151. $msg = json_decode($result['msg'], true);
  152. $result = $msg;
  153. }
  154. // $result = $this->app->live->getRooms(...array_values($params));
  155. $rooms = [];
  156. if ($result && $result['errcode'] == 0 && $result['errmsg'] === 'ok') {
  157. $rooms = $result['room_info'];
  158. }
  159. return $rooms;
  160. }
  161. // 小程序直播回放
  162. public function liveReplay(array $params = [])
  163. {
  164. $default = [
  165. 'room_id' => 0,
  166. 'start' => 0,
  167. 'limit' => 20
  168. ];
  169. $params = array_merge($default, $params);
  170. $default = json_encode($params);
  171. $access_token = $this->app->access_token->getToken();
  172. $getPlayBackListUrl = "https://api.weixin.qq.com/wxa/business/getliveinfo?access_token={$access_token['access_token']}";
  173. $headers = ['Content-type: application/json'];
  174. $options = [
  175. CURLOPT_HTTPHEADER => $headers
  176. ];
  177. $result = Http::sendRequest($getPlayBackListUrl, $default, 'POST', $options);
  178. if (isset($result['ret']) && $result['ret']) {
  179. $msg = json_decode($result['msg'], true);
  180. $result = $msg;
  181. }
  182. // $result = $this->app->live->getPlaybacks(...array_values($params));
  183. $liveReplay = [];
  184. if ($result && $result['errcode'] == 0 && $result['errmsg'] === 'ok') {
  185. $liveReplay = $result['live_replay'];
  186. }
  187. return $liveReplay;
  188. }
  189. public function menu($act = 'create', $buttons = '')
  190. {
  191. $result = $this->app->menu->$act($buttons);
  192. return $result;
  193. }
  194. // 公众号 获取所有粉丝
  195. public function asyncFans($nextOpenId = null, $currentPage = 1, $totalPage = 1)
  196. {
  197. $fans = $this->app->user->list($nextOpenId);
  198. $openIdsArray = $fans['data']['openid'];
  199. //放入最大10000条openid队列去执行
  200. \think\Queue::push('\addons\shopro\job\Wechat@createQueueByOpenIdsArray', $openIdsArray, 'shopro');
  201. //第一次计算总页数
  202. if ($currentPage === 1) {
  203. $totalPage = intval($fans['total'] % $fans['count'] === 0 ? $fans['total'] / $fans['count'] : ceil($fans['total'] / $fans['count']));
  204. }
  205. //有分页 递归下一页
  206. if ($currentPage < $totalPage) {
  207. $openIdsArray = array_merge($openIdsArray, $this->asyncFans($fans['next_openid'], $currentPage++, $totalPage));
  208. }
  209. if ($currentPage == $totalPage) {
  210. if ($totalPage == 1) {
  211. $code = 1;
  212. $msg = '同步成功';
  213. }else{
  214. $code = 1;
  215. $msg = '数据较大,请稍后再查看...';
  216. }
  217. return [
  218. 'code' => $code,
  219. 'msg' => $msg
  220. ];
  221. }
  222. return $openIdsArray;
  223. }
  224. //通过openid获取已经关注的用户信息
  225. public function getSubscribeUserInfoByOpenId(array $openIdsArray)
  226. {
  227. $result = $this->app->user->select($openIdsArray);
  228. return $result;
  229. }
  230. /**
  231. * 重新绑定 easywechat 缓存
  232. *
  233. * @return void
  234. */
  235. private function rebindCache() {
  236. $options = [
  237. // 'select' => 0 // 默认和活动缓存使用同一个 select 库,如需自定义,解开注释,并填写对应 select 库
  238. ];
  239. $redis = (new Redis($options))->getRedis();
  240. $cache = new \Symfony\Component\Cache\Adapter\RedisAdapter($redis);
  241. // 替换应用中的缓存
  242. $this->app->rebind('cache', $cache);
  243. }
  244. /**
  245. * 合并默认配置
  246. *
  247. * @param [type] $platform
  248. * @return void
  249. */
  250. private function setConfig($platform) {
  251. $debug = config('app_debug');
  252. $defaultConfig = [
  253. 'log' => [
  254. 'default' => $debug ? 'dev' : 'prod', // 默认使用的 channel,生产环境可以改为下面的 prod
  255. 'channels' => [
  256. // 测试环境
  257. 'dev' => [
  258. 'driver' => 'single',
  259. 'path' => '/tmp/easywechat.log',
  260. 'level' => 'debug',
  261. ],
  262. // 生产环境
  263. 'prod' => [
  264. 'driver' => 'daily',
  265. 'path' => '/tmp/easywechat.log',
  266. 'level' => 'info',
  267. ],
  268. ],
  269. ],
  270. ];
  271. // 获取对应平台的配置
  272. $this->config = Config::getEasyWechatConfig($platform);
  273. // 根据框架 debug 合并 log 配置
  274. $this->config = array_merge($this->config, $defaultConfig);
  275. }
  276. }