Users.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. * @filename WechatUsersRepository.php
  4. * @date 2020/6/7
  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\controller;
  12. use catchAdmin\wechat\library\SyncWechatUsers;
  13. use catchAdmin\wechat\repository\WechatUsersRepository;
  14. use catcher\base\CatchController;
  15. use catcher\CatchResponse;
  16. use catcher\library\WeChat;
  17. use catcher\Utils;
  18. use think\facade\Console;
  19. use think\Request;
  20. class Users extends CatchController
  21. {
  22. protected $user;
  23. public function __construct(WechatUsersRepository $users)
  24. {
  25. $this->user = $users;
  26. }
  27. /**
  28. * 列表
  29. *
  30. * @time 2020年06月19日
  31. * @return \think\response\Json
  32. */
  33. public function index()
  34. {
  35. return CatchResponse::paginate($this->user->getList());
  36. }
  37. /**
  38. * 备注
  39. *
  40. * @time 2020年06月19日
  41. * @param $id
  42. * @param $remark
  43. * @return \think\response\Json
  44. */
  45. public function remark($id, $remark)
  46. {
  47. return CatchResponse::success($this->user->remark($id, $remark));
  48. }
  49. /**
  50. * 拉黑
  51. *
  52. * @time 2020年06月19日
  53. * @param $id
  54. * @return \think\response\Json
  55. */
  56. public function block($id)
  57. {
  58. return CatchResponse::success($this->user->block($id));
  59. }
  60. /**
  61. * 贴标签
  62. *
  63. * @time 2020年06月26日
  64. * @param $id
  65. * @param Request $request
  66. * @return \think\response\Json
  67. */
  68. public function tag($id, Request $request)
  69. {
  70. return CatchResponse::success($this->user->tag($id, $request->post()));
  71. }
  72. /**
  73. * 用户同步
  74. *
  75. * @time 2020年06月26日
  76. * @param SyncWechatUsers $users
  77. * @return \think\response\Json
  78. */
  79. public function sync(SyncWechatUsers $users)
  80. {
  81. return CatchResponse::success($users->start(), 'success');
  82. }
  83. public function subscribe()
  84. {
  85. }
  86. public function unsubscribe()
  87. {
  88. }
  89. }