FansService.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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\service;
  15. use think\Db;
  16. /**
  17. * 微信粉丝信息
  18. * Class FansService
  19. * @package app\wechat\service
  20. */
  21. class FansService
  22. {
  23. /**
  24. * 增加或更新粉丝信息
  25. * @param array $user 粉丝信息
  26. * @param string $appid 微信APPID
  27. * @return boolean
  28. * @throws \think\Exception
  29. * @throws \think\exception\PDOException
  30. */
  31. public static function set(array $user, $appid = '')
  32. {
  33. if (!empty($user['subscribe_time'])) {
  34. $user['subscribe_at'] = date('Y-m-d H:i:s', $user['subscribe_time']);
  35. }
  36. if (isset($user['tagid_list']) && is_array($user['tagid_list'])) {
  37. $user['tagid_list'] = is_array($user['tagid_list']) ? join(',', $user['tagid_list']) : '';
  38. }
  39. foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) {
  40. isset($user[$k]) && $user[$k] = emoji_encode($user[$k]);
  41. }
  42. if ($appid !== '') $user['appid'] = $appid;
  43. unset($user['privilege'], $user['groupid']);
  44. return data_save('WechatFans', $user, 'openid');
  45. }
  46. /**
  47. * 获取粉丝信息
  48. * @param string $openid
  49. * @return array|null
  50. * @throws \think\db\exception\DataNotFoundException
  51. * @throws \think\db\exception\ModelNotFoundException
  52. * @throws \think\exception\DbException
  53. */
  54. public static function get($openid)
  55. {
  56. $user = Db::name('WechatFans')->where(['openid' => $openid])->find();
  57. foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) {
  58. isset($user[$k]) && $user[$k] = emoji_decode($user[$k]);
  59. }
  60. return $user;
  61. }
  62. }