Push.php 14 KB

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