WechatQueue.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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\queue;
  15. use app\admin\queue\JobsQueue;
  16. use app\wechat\service\FansService;
  17. use app\wechat\service\WechatService;
  18. use think\Db;
  19. /**
  20. * Class Jobs
  21. * @package app\wechat
  22. */
  23. class WechatQueue extends JobsQueue
  24. {
  25. /**
  26. * 当前任务URI
  27. */
  28. const URI = self::class;
  29. /**
  30. * 执行任务
  31. * @return boolean
  32. */
  33. public function execute()
  34. {
  35. try {
  36. $appid = WechatService::getAppid();
  37. $wechat = WechatService::WeChatUser();
  38. $next = ''; // 获取远程粉丝
  39. $this->output->writeln('Start synchronizing fans from the Wechat server');
  40. while (is_array($result = $wechat->getUserList($next)) && !empty($result['data']['openid'])) {
  41. foreach (array_chunk($result['data']['openid'], 100) as $chunk)
  42. if (is_array($list = $wechat->getBatchUserInfo($chunk)) && !empty($list['user_info_list']))
  43. foreach ($list['user_info_list'] as $user) FansService::set($user, $appid);
  44. if (in_array($result['next_openid'], $result['data']['openid'])) break;
  45. $next = $result['next_openid'];
  46. }
  47. $next = ''; // 同步粉丝黑名单
  48. $this->output->writeln('Start synchronizing black from the Wechat server');
  49. while (is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
  50. foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
  51. $where = [['is_black', 'eq', '0'], ['openid', 'in', $chunk]];
  52. Db::name('WechatFans')->where($where)->update(['is_black' => '1']);
  53. }
  54. if (in_array($result['next_openid'], $result['data']['openid'])) break;
  55. $next = $result['next_openid'];
  56. }
  57. // 同步粉丝标签列表
  58. $this->output->writeln('Start synchronizing tags from the Wechat server');
  59. if (is_array($list = WechatService::WeChatTags()->getTags()) && !empty($list['tags'])) {
  60. foreach ($list['tags'] as &$tag) $tag['appid'] = $appid;
  61. Db::name('WechatFansTags')->where('1=1')->delete();
  62. Db::name('WechatFansTags')->insertAll($list['tags']);
  63. }
  64. return true;
  65. } catch (\Exception $e) {
  66. $this->statusDesc = $e->getMessage();
  67. return false;
  68. }
  69. }
  70. }