WechatUsersRepository.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. /**
  3. * @filename WechatUsersRepository.php
  4. * @createdAt 2020/6/21
  5. * @project https://github.com/yanwenwu/catch-admin
  6. * @document http://doc.catchadmin.com
  7. * @author JaguarJack <njphper@gmail.com>
  8. * @copyright By CatchAdmin
  9. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  10. */
  11. namespace catchAdmin\wechat\repository;
  12. use catchAdmin\wechat\model\WechatTags;
  13. use catchAdmin\wechat\model\WechatUsers;
  14. use catcher\base\CatchRepository;
  15. use catcher\library\WeChat;
  16. use catcher\Utils;
  17. class WechatUsersRepository extends CatchRepository
  18. {
  19. protected $wechatUser;
  20. public function __construct(WechatUsers $users)
  21. {
  22. $this->wechatUser = $users;
  23. }
  24. /**
  25. * 模型
  26. *
  27. * @time 2020年06月21日
  28. * @return WechatUsers
  29. */
  30. protected function model()
  31. {
  32. return $this->wechatUser;
  33. }
  34. /**
  35. * 获取列表
  36. *
  37. * @time 2020年06月21日
  38. * @return mixed
  39. */
  40. public function getList()
  41. {
  42. return $this->wechatUser
  43. ->catchSearch()
  44. ->field('*')
  45. ->tags()
  46. ->catchOrder()
  47. ->paginate();
  48. }
  49. /**
  50. * 拉黑用户
  51. *
  52. * @time 2020年06月21日
  53. * @param $id
  54. * @return mixed
  55. */
  56. public function block($id)
  57. {
  58. $user = $this->wechatUser->findBy($id);
  59. $blockMethod = $user->block == WechatUsers::UNBLOCK ? 'block' : 'unblock';
  60. WeChat::throw(WeChat::officialAccount()->user->{$blockMethod}([$user->openid]));
  61. $user->block = $user->block == WechatUsers::BlOCK ? WechatUsers::UNBLOCK : WechatUsers::BlOCK;
  62. return $user->save();
  63. }
  64. /**
  65. * 粉丝备注
  66. *
  67. * @time 2020年06月21日
  68. * @param $id
  69. * @param string $remark
  70. * @return mixed
  71. */
  72. public function remark($id, string $remark)
  73. {
  74. $user = $this->wechatUser->findBy($id);
  75. WeChat::throw(WeChat::officialAccount()->user->remark($user->openid, $remark));
  76. $user->remark = $remark;
  77. return $user->save();
  78. }
  79. /**
  80. * 给用户打标签
  81. *
  82. * @time 2020年06月21日
  83. * @param $id
  84. * @param $data
  85. * @return mixed
  86. */
  87. public function tag($id, $data)
  88. {
  89. $tagIds = Utils::stringToArrayBy($data['tag']);
  90. // WechatTags::whereIn('name', Utils::stringToArrayBy($data['tag']))->column('tag_id');
  91. $user = $this->findBy($id);
  92. $hasTagIds = $user->hasTags()->select()->column('tag_id');
  93. // 已存在的标签
  94. $existedTagIds = [];
  95. foreach ($tagIds as $tagId) {
  96. if (in_array($tagId, $hasTagIds)) {
  97. $existedTagIds[] = $tagId;
  98. }
  99. }
  100. $detachIds = array_diff($hasTagIds, $existedTagIds);
  101. $attachIds = array_diff($tagIds, $existedTagIds);
  102. $officialUserTag = WeChat::officialAccount()->user_tag;
  103. // 删除标签
  104. if (!empty($detachIds)) {
  105. foreach ($detachIds as $detachId) {
  106. $officialUserTag->untagUsers([$user->openid], $detachId);
  107. }
  108. $user->hasTags()->detach($detachIds);
  109. }
  110. // 新增标签
  111. if (!empty($attachIds)) {
  112. foreach ($attachIds as $attachId) {
  113. $officialUserTag->tagUsers([$user->openid], $attachId);
  114. }
  115. $user->hasTags()->saveAll($attachIds);
  116. }
  117. WechatUsers::where('id', $id)->update([
  118. 'tagid_list' => $data['tag'],
  119. ]);
  120. return true;
  121. }
  122. }