Push.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\wechat\controller\api;
  15. use app\wechat\service\FansService;
  16. use app\wechat\service\MediaService;
  17. use app\wechat\service\WechatService;
  18. use library\Controller;
  19. use think\Db;
  20. /**
  21. * 微信消息推送处理
  22. * Class Push
  23. * @package app\wechat\controller\api
  24. */
  25. class Push extends Controller
  26. {
  27. /**
  28. * 微信APPID
  29. * @var string
  30. */
  31. protected $appid;
  32. /**
  33. * 微信用户OPENID
  34. * @var string
  35. */
  36. protected $openid;
  37. /**
  38. * 消息是否加密码
  39. * @var boolean
  40. */
  41. protected $encrypt;
  42. /**
  43. * 微信OPENID
  44. * @var string
  45. */
  46. protected $fromOpenid;
  47. /**
  48. * 微信消息对象
  49. * @var array
  50. */
  51. protected $receive;
  52. /**
  53. * 微信实例对象
  54. * @var \WeChat\Receive
  55. */
  56. protected $wechat;
  57. /**
  58. * 强制客服消息回复
  59. * @var boolean
  60. */
  61. protected $forceCustom = false;
  62. /**
  63. * 获取网络出口IP
  64. * @return mixed
  65. */
  66. public function geoip()
  67. {
  68. return $this->request->ip();
  69. }
  70. /**
  71. * 消息推送处理接口
  72. * @return string
  73. */
  74. public function index()
  75. {
  76. try {
  77. $this->wechat = WechatService::WeChatReceive();
  78. if ($this->request->has('receive', 'post') && WechatService::getType() === 'thr') {
  79. $this->forceCustom = true;
  80. $this->appid = $this->request->post('appid', '', null);
  81. $this->openid = $this->request->post('openid', '', null);
  82. $this->encrypt = boolval($this->request->post('encrypt', 0));
  83. $this->receive = $this->toLower(unserialize($this->request->post('receive', '', null)));
  84. if (empty($this->appid) || empty($this->openid) || empty($this->receive)) {
  85. throw new \think\Exception('微信API实例缺失必要参数[appid,openid,receive]');
  86. }
  87. } else {
  88. $this->forceCustom = false;
  89. $this->appid = WechatService::getAppid();
  90. $this->openid = $this->wechat->getOpenid();
  91. $this->encrypt = $this->wechat->isEncrypt();
  92. $this->receive = $this->toLower($this->wechat->getReceive());
  93. }
  94. $this->fromOpenid = $this->receive['tousername'];
  95. // text, event, image, location
  96. if (method_exists($this, ($method = $this->receive['msgtype']))) {
  97. if (is_string(($result = $this->$method()))) return $result;
  98. }
  99. } catch (\Exception $e) {
  100. \think\facade\Log::error(__METHOD__ . ":{$e->getLine()} [{$e->getCode()}] {$e->getMessage()}");
  101. }
  102. return 'success';
  103. }
  104. /**
  105. * 数组KEY全部转小写
  106. * @param array $data
  107. * @return array
  108. */
  109. private function toLower(array $data)
  110. {
  111. $data = array_change_key_case($data, CASE_LOWER);
  112. foreach ($data as $key => $vo) if (is_array($vo)) {
  113. $data[$key] = $this->toLower($vo);
  114. }
  115. return $data;
  116. }
  117. /**
  118. * 文件消息处理
  119. * @return boolean
  120. * @throws \WeChat\Exceptions\InvalidDecryptException
  121. * @throws \WeChat\Exceptions\InvalidResponseException
  122. * @throws \WeChat\Exceptions\LocalCacheException
  123. * @throws \think\Exception
  124. * @throws \think\db\exception\DataNotFoundException
  125. * @throws \think\db\exception\ModelNotFoundException
  126. * @throws \think\exception\DbException
  127. * @throws \think\exception\PDOException
  128. */
  129. protected function text()
  130. {
  131. return $this->keys("wechat_keys#keys#{$this->receive['content']}", false, $this->forceCustom);
  132. }
  133. /**
  134. * 事件消息处理
  135. * @return boolean|string
  136. * @throws \WeChat\Exceptions\InvalidDecryptException
  137. * @throws \WeChat\Exceptions\InvalidResponseException
  138. * @throws \WeChat\Exceptions\LocalCacheException
  139. * @throws \think\Exception
  140. * @throws \think\db\exception\DataNotFoundException
  141. * @throws \think\db\exception\ModelNotFoundException
  142. * @throws \think\exception\DbException
  143. * @throws \think\exception\PDOException
  144. */
  145. protected function event()
  146. {
  147. switch (strtolower($this->receive['event'])) {
  148. case 'subscribe':
  149. $this->updateFansinfo(true);
  150. if (isset($this->receive['eventkey']) && is_string($this->receive['eventkey'])) {
  151. if (($key = preg_replace('/^qrscene_/i', '', $this->receive['eventkey']))) {
  152. return $this->keys("wechat_keys#keys#{$key}", false, true);
  153. }
  154. }
  155. return $this->keys('wechat_keys#keys#subscribe', true, $this->forceCustom);
  156. case 'unsubscribe':
  157. return $this->updateFansinfo(false);
  158. case 'click':
  159. return $this->keys("wechat_keys#keys#{$this->receive['eventkey']}", false, $this->forceCustom);
  160. case 'scancode_push':
  161. case 'scancode_waitmsg':
  162. if (empty($this->receive['scancodeinfo'])) return false;
  163. if (empty($this->receive['scancodeinfo']['scanresult'])) return false;
  164. return $this->keys("wechat_keys#keys#{$this->receive['scancodeinfo']['scanresult']}", false, $this->forceCustom);
  165. case 'scan':
  166. if (empty($this->receive['eventkey'])) return false;
  167. return $this->keys("wechat_keys#keys#{$this->receive['eventkey']}", false, $this->forceCustom);
  168. default:
  169. return false;
  170. }
  171. }
  172. /**
  173. * 关键字处理
  174. * @param string $rule 关键字规则
  175. * @param boolean $isLast 重复回复消息处理
  176. * @param boolean $isCustom 是否使用客服消息发送
  177. * @return boolean|string
  178. * @throws \WeChat\Exceptions\InvalidDecryptException
  179. * @throws \WeChat\Exceptions\InvalidResponseException
  180. * @throws \WeChat\Exceptions\LocalCacheException
  181. * @throws \think\Exception
  182. * @throws \think\db\exception\DataNotFoundException
  183. * @throws \think\db\exception\ModelNotFoundException
  184. * @throws \think\exception\DbException
  185. * @throws \think\exception\PDOException
  186. */
  187. private function keys($rule, $isLast = false, $isCustom = false)
  188. {
  189. list($table, $field, $value) = explode('#', $rule . '##');
  190. $data = Db::name($table)->where([$field => $value])->find();
  191. if (empty($data['type']) || (array_key_exists('status', $data) && empty($data['status']))) {
  192. return $isLast ? false : $this->keys('wechat_keys#keys#default', true, $isCustom);
  193. }
  194. switch (strtolower($data['type'])) {
  195. case 'keys':
  196. $content = empty($data['content']) ? $data['name'] : $data['content'];
  197. return $this->keys("wechat_keys#keys#{$content}", $isLast, $isCustom);
  198. case 'text':
  199. return $this->sendMessage('text', ['content' => $data['content']], $isCustom);
  200. case 'customservice':
  201. return $this->sendMessage('customservice', ['content' => $data['content']], false);
  202. case 'voice':
  203. if (empty($data['voice_url']) || !($mediaId = MediaService::upload($data['voice_url'], 'voice'))) return false;
  204. return $this->sendMessage('voice', ['media_id' => $mediaId], $isCustom);
  205. case 'image':
  206. if (empty($data['image_url']) || !($mediaId = MediaService::upload($data['image_url'], 'image'))) return false;
  207. return $this->sendMessage('image', ['media_id' => $mediaId], $isCustom);
  208. case 'news':
  209. list($news, $articles) = [MediaService::news($data['news_id']), []];
  210. if (empty($news['articles'])) return false;
  211. foreach ($news['articles'] as $vo) array_push($articles, [
  212. 'url' => url("@wechat/api.review/view", '', false, true) . "?id={$vo['id']}",
  213. 'title' => $vo['title'], 'picurl' => $vo['local_url'], 'description' => $vo['digest'],
  214. ]);
  215. return $this->sendMessage('news', ['articles' => $articles], $isCustom);
  216. case 'music':
  217. if (empty($data['music_url']) || empty($data['music_title']) || empty($data['music_desc'])) return false;
  218. return $this->sendMessage('music', [
  219. 'thumb_media_id' => empty($data['music_image']) ? '' : MediaService::upload($data['music_image'], 'image'),
  220. 'description' => $data['music_desc'], 'title' => $data['music_title'],
  221. 'hqmusicurl' => $data['music_url'], 'musicurl' => $data['music_url'],
  222. ], $isCustom);
  223. case 'video':
  224. if (empty($data['video_url']) || empty($data['video_desc']) || empty($data['video_title'])) return false;
  225. $videoData = ['title' => $data['video_title'], 'introduction' => $data['video_desc']];
  226. if (!($mediaId = MediaService::upload($data['video_url'], 'video', $videoData))) return false;
  227. return $this->sendMessage('video', ['media_id' => $mediaId, 'title' => $data['video_title'], 'description' => $data['video_desc']], $isCustom);
  228. default:
  229. return false;
  230. }
  231. }
  232. /**
  233. * 发送消息到微信
  234. * @param string $type 消息类型(text|image|voice|video|music|news|mpnews|wxcard)
  235. * @param array $data 消息内容数据对象
  236. * @param boolean $isCustom 是否使用客服消息发送
  237. * @return array|boolean
  238. * @throws \WeChat\Exceptions\InvalidDecryptException
  239. * @throws \WeChat\Exceptions\InvalidResponseException
  240. * @throws \WeChat\Exceptions\LocalCacheException
  241. * @throws \think\Exception
  242. * @throws \think\exception\PDOException
  243. */
  244. private function sendMessage($type, $data, $isCustom = false)
  245. {
  246. if ($isCustom) {
  247. WechatService::WeChatCustom()->send(['touser' => $this->openid, 'msgtype' => $type, "{$type}" => $data]);
  248. } else switch (strtolower($type)) {
  249. case 'text': // 发送文本消息
  250. return $this->wechat->reply(['CreateTime' => time(), 'MsgType' => 'text', 'ToUserName' => $this->openid, 'FromUserName' => $this->fromOpenid, 'Content' => $data['content']], true, $this->encrypt);
  251. case 'image': // 发送图片消息
  252. return $this->buildMessage($type, ['MediaId' => $data['media_id']]);
  253. case 'voice': // 发送语言消息
  254. return $this->buildMessage($type, ['MediaId' => $data['media_id']]);
  255. case 'video': // 发送视频消息
  256. return $this->buildMessage($type, ['Title' => $data['title'], 'MediaId' => $data['media_id'], 'Description' => $data['description']]);
  257. case 'music': // 发送音乐消息
  258. return $this->buildMessage($type, ['Title' => $data['title'], 'Description' => $data['description'], 'MusicUrl' => $data['musicurl'], 'HQMusicUrl' => $data['musicurl'], 'ThumbMediaId' => $data['thumb_media_id']]);
  259. case 'customservice': // 转交客服消息
  260. if ($data['content']) $this->sendMessage('text', $data, true);
  261. return $this->buildMessage('transfer_customer_service');
  262. case 'news': // 发送图文消息
  263. $articles = [];
  264. foreach ($data['articles'] as $article) array_push($articles, ['PicUrl' => $article['picurl'], 'Title' => $article['title'], 'Description' => $article['description'], 'Url' => $article['url']]);
  265. return $this->wechat->reply(['CreateTime' => time(), 'MsgType' => 'news', 'ToUserName' => $this->openid, 'FromUserName' => $this->fromOpenid, 'Articles' => $articles, 'ArticleCount' => count($articles)], true, $this->encrypt);
  266. default:
  267. return 'success';
  268. }
  269. }
  270. /**
  271. * 消息数据生成
  272. * @param string $type
  273. * @param string|array $data
  274. * @return string
  275. * @throws \WeChat\Exceptions\InvalidDecryptException
  276. */
  277. private function buildMessage($type, $data = [])
  278. {
  279. $reply = ['CreateTime' => time(), 'MsgType' => strtolower($type), 'ToUserName' => $this->openid, 'FromUserName' => $this->fromOpenid];
  280. if (!empty($data)) $reply[ucfirst(strtolower($type))] = $data;
  281. return $this->wechat->reply($reply, true, $this->encrypt);
  282. }
  283. /**
  284. * 同步粉丝状态
  285. * @param boolean $subscribe 关注状态
  286. * @return boolean
  287. * @throws \think\Exception
  288. * @throws \think\exception\PDOException
  289. */
  290. private function updateFansinfo($subscribe = true)
  291. {
  292. if ($subscribe) {
  293. try {
  294. $user = WechatService::WeChatUser()->getUserInfo($this->openid);
  295. return FansService::set(array_merge($user, ['subscribe' => '1']));
  296. } catch (\Exception $e) {
  297. \think\facade\Log::error(__METHOD__ . " {$this->openid} 粉丝信息获取失败,{$e->getMessage()}");
  298. return false;
  299. }
  300. }
  301. $user = ['subscribe' => '0', 'openid' => $this->openid, 'appid' => $this->appid];
  302. return data_save('WechatFans', $user, 'openid', ['appid' => $this->appid]);
  303. }
  304. }