dao = $dao; } /** * 保存好友关系 * @param int $uid * @param int $friends_uid * @return bool * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function saveFriend(int $uid, int $friends_uid) { $data = [ 'uid' => $uid, 'friends_uid' => $friends_uid ]; $userFriend = $this->dao->get($data); $res1 = true; if (!$userFriend) { $data['add_time'] = time(); $res1 = $this->dao->save($data); } return $res1; } /** * 获取好友uids 我推广的 推广我的 * @param int $uid * @return array */ public function getFriendUids(int $uid) { $result = []; if ($uid) { $spread = $this->dao->getColumn(['uid' => $uid], 'friends_uid'); $sup_spread = $this->dao->getColumn(['friends_uid' => $uid], 'uid'); $result = array_unique(array_merge($spread, $sup_spread)); } return $result; } /** * 获取好友 * @param int $id * @param string $field * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getFriendList(int $uid, string $field = 'uid,nickname,level,add_time') { $uids = $this->getFriendUids($uid); $list = []; $count = 0; if ($uids) { [$page, $limit] = $this->getPageValue(); /** @var UserServices $userServices */ $userServices = app()->make(UserServices::class); $list = $userServices->getList(['uid' => $uids], $field, $page, $limit); /** @var SystemUserLevelServices $systemLevelServices */ $systemLevelServices = app()->make(SystemUserLevelServices::class); $systemLevelList = $systemLevelServices->getWhereLevelList([], 'id,name'); if ($systemLevelList) $systemLevelList = array_combine(array_column($systemLevelList, 'id'), $systemLevelList); foreach ($list as &$item) { $item['type'] = $systemLevelList[$item['level']]['name'] ?? '暂无'; $item['add_time'] = $item['add_time'] && is_numeric($item['add_time']) ? date('Y-m-d H:i:s', $item['add_time']) : ''; } $count = $userServices->count(['uid' => $uids]); } return compact('list', 'count'); } }