FansService.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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\service;
  15. use think\admin\Service;
  16. /**
  17. * 微信粉丝信息
  18. * Class FansService
  19. * @package app\wechat\service
  20. */
  21. class FansService extends Service
  22. {
  23. /**
  24. * 增加或更新粉丝信息
  25. * @param array $user 粉丝信息
  26. * @param string $appid 微信APPID
  27. * @return boolean
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\DbException
  30. * @throws \think\db\exception\ModelNotFoundException
  31. */
  32. public function set(array $user, string $appid = ''): bool
  33. {
  34. if (isset($user['subscribe_time'])) {
  35. $user['subscribe_at'] = date('Y-m-d H:i:s', $user['subscribe_time']);
  36. }
  37. if (isset($user['tagid_list']) && is_array($user['tagid_list'])) {
  38. $user['tagid_list'] = arr2str($user['tagid_list'] ?? []);
  39. }
  40. if ($appid !== '') $user['appid'] = $appid;
  41. unset($user['privilege'], $user['groupid']);
  42. return !!data_save('WechatFans', $user, 'openid');
  43. }
  44. /**
  45. * 获取粉丝信息
  46. * @param string $openid
  47. * @return array
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\DbException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. */
  52. public function get(string $openid): array
  53. {
  54. return $this->app->db->name('WechatFans')->where(['openid' => $openid])->find() ?: [];
  55. }
  56. }