2021-01-28 20:07:14 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Service;
|
|
|
|
|
2021-08-31 22:33:41 +08:00
|
|
|
use App\Helpers\HashHelper;
|
2021-01-28 20:07:14 +08:00
|
|
|
use App\Model\User;
|
|
|
|
use App\Model\Article\ArticleClass;
|
2022-01-16 10:29:16 +08:00
|
|
|
use App\Model\Contact;
|
|
|
|
use App\Model\ContactApply;
|
2021-01-28 20:07:14 +08:00
|
|
|
use Hyperf\DbConnection\Db;
|
|
|
|
|
|
|
|
class UserService extends BaseService
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 获取用户信息
|
|
|
|
*
|
2021-04-20 16:30:57 +08:00
|
|
|
* @param int $user_id 用户ID
|
|
|
|
* @param array $field 查询字段
|
2021-09-11 12:41:28 +08:00
|
|
|
* @return User|object|null
|
2021-01-28 20:07:14 +08:00
|
|
|
*/
|
2021-09-11 12:41:28 +08:00
|
|
|
public function findById(int $user_id, $field = ['*']): ?User
|
2021-01-28 20:07:14 +08:00
|
|
|
{
|
|
|
|
return User::where('id', $user_id)->first($field);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 登录逻辑
|
|
|
|
*
|
2021-04-20 16:30:57 +08:00
|
|
|
* @param string $mobile 手机号
|
2021-01-28 20:07:14 +08:00
|
|
|
* @param string $password 登录密码
|
2021-05-23 16:52:01 +08:00
|
|
|
* @return User|bool
|
2021-01-28 20:07:14 +08:00
|
|
|
*/
|
|
|
|
public function login(string $mobile, string $password)
|
|
|
|
{
|
|
|
|
if (!$user = User::where('mobile', $mobile)->first()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!password_verify($password, $user->password)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-23 16:52:01 +08:00
|
|
|
return $user;
|
2021-01-28 20:07:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 账号注册逻辑
|
|
|
|
*
|
|
|
|
* @param array $data 用户数据
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function register(array $data)
|
|
|
|
{
|
|
|
|
Db::beginTransaction();
|
|
|
|
try {
|
2021-08-28 23:41:01 +08:00
|
|
|
$data['password'] = HashHelper::make($data['password']);
|
2021-01-28 20:07:14 +08:00
|
|
|
$data['created_at'] = date('Y-m-d H:i:s');
|
2021-07-05 21:52:44 +08:00
|
|
|
$data['updated_at'] = date('Y-m-d H:i:s');
|
2021-01-28 20:07:14 +08:00
|
|
|
|
|
|
|
$result = User::create($data);
|
|
|
|
|
|
|
|
// 创建用户的默认笔记分类
|
|
|
|
ArticleClass::create([
|
2021-04-20 16:30:57 +08:00
|
|
|
'user_id' => $result->id,
|
2021-01-28 20:07:14 +08:00
|
|
|
'class_name' => '我的笔记',
|
|
|
|
'is_default' => 1,
|
2021-04-20 16:30:57 +08:00
|
|
|
'sort' => 1,
|
2021-01-28 20:07:14 +08:00
|
|
|
'created_at' => time()
|
|
|
|
]);
|
|
|
|
|
|
|
|
Db::commit();
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
Db::rollBack();
|
2021-04-22 16:14:34 +08:00
|
|
|
return false;
|
2021-01-28 20:07:14 +08:00
|
|
|
}
|
2021-07-10 00:18:40 +08:00
|
|
|
|
|
|
|
return true;
|
2021-01-28 20:07:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 账号重置密码
|
|
|
|
*
|
2021-04-20 16:30:57 +08:00
|
|
|
* @param string $mobile 用户手机好
|
2021-01-28 20:07:14 +08:00
|
|
|
* @param string $password 新密码
|
2021-04-22 16:14:34 +08:00
|
|
|
* @return bool
|
2021-01-28 20:07:14 +08:00
|
|
|
*/
|
|
|
|
public function resetPassword(string $mobile, string $password)
|
|
|
|
{
|
2021-08-28 23:41:01 +08:00
|
|
|
return (bool)User::where('mobile', $mobile)->update(['password' => HashHelper::make($password)]);
|
2021-01-28 20:07:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 修改绑定的手机号
|
|
|
|
*
|
2021-04-20 16:30:57 +08:00
|
|
|
* @param int $user_id 用户ID
|
|
|
|
* @param string $mobile 换绑手机号
|
2021-04-22 16:14:34 +08:00
|
|
|
* @return array
|
2021-01-28 20:07:14 +08:00
|
|
|
*/
|
|
|
|
public function changeMobile(int $user_id, string $mobile)
|
|
|
|
{
|
|
|
|
if (User::where('mobile', $mobile)->value('id')) {
|
|
|
|
return [false, '手机号已被他人绑定'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$isTrue = (bool)User::where('id', $user_id)->update(['mobile' => $mobile]);
|
|
|
|
return [$isTrue, null];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 通过手机号查找用户
|
|
|
|
*
|
2021-04-20 16:30:57 +08:00
|
|
|
* @param int $friend_id 用户ID
|
2021-01-28 20:07:14 +08:00
|
|
|
* @param int $me_user_id 当前登录用户的ID
|
|
|
|
* @return array
|
|
|
|
*/
|
2021-04-20 16:30:57 +08:00
|
|
|
public function getUserCard(int $friend_id, int $me_user_id)
|
2021-01-28 20:07:14 +08:00
|
|
|
{
|
|
|
|
$info = User::select(['id', 'mobile', 'nickname', 'avatar', 'gender', 'motto'])->where('id', $friend_id)->first();
|
2021-04-20 16:30:57 +08:00
|
|
|
if (!$info) return [];
|
2021-01-28 20:07:14 +08:00
|
|
|
|
2021-04-20 16:30:57 +08:00
|
|
|
$info = $info->toArray();
|
2021-07-10 00:18:40 +08:00
|
|
|
$info['friend_status'] = 0;//朋友关系[0:本人;1:陌生人;2:朋友;]
|
2021-01-28 20:07:14 +08:00
|
|
|
$info['nickname_remark'] = '';
|
2021-04-20 16:30:57 +08:00
|
|
|
$info['friend_apply'] = 0;
|
2021-01-28 20:07:14 +08:00
|
|
|
|
|
|
|
// 判断查询信息是否是自己
|
|
|
|
if ($friend_id != $me_user_id) {
|
2021-07-23 21:34:29 +08:00
|
|
|
$is_friend = di()->get(UserFriendService::class)->isFriend($me_user_id, $friend_id, true);
|
2021-07-07 19:43:09 +08:00
|
|
|
|
|
|
|
$info['friend_status'] = $is_friend ? 2 : 1;
|
|
|
|
if ($is_friend) {
|
2021-07-23 21:34:29 +08:00
|
|
|
$info['nickname_remark'] = di()->get(UserFriendService::class)->getFriendRemark($me_user_id, $friend_id);
|
2021-01-28 20:07:14 +08:00
|
|
|
} else {
|
2022-01-16 10:29:16 +08:00
|
|
|
$res = ContactApply::where('user_id', $me_user_id)
|
2021-01-28 20:07:14 +08:00
|
|
|
->where('friend_id', $friend_id)
|
|
|
|
->orderBy('id', 'desc')
|
|
|
|
->exists();
|
|
|
|
|
|
|
|
$info['friend_apply'] = $res ? 1 : 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $info;
|
|
|
|
}
|
2021-07-07 19:43:09 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取用户好友列表
|
|
|
|
*
|
|
|
|
* @param int $user_id 用户ID
|
|
|
|
* @return array
|
|
|
|
*/
|
2021-09-11 12:41:28 +08:00
|
|
|
public function getUserFriends(int $user_id): array
|
2021-07-07 19:43:09 +08:00
|
|
|
{
|
2022-01-16 10:29:16 +08:00
|
|
|
return Contact::Join('users', 'users.id', '=', 'contact.friend_id')
|
|
|
|
->where('user_id', $user_id)->where('contact.status', 1)
|
2021-07-07 19:43:09 +08:00
|
|
|
->get([
|
|
|
|
'users.id',
|
|
|
|
'users.nickname',
|
|
|
|
'users.avatar',
|
|
|
|
'users.motto',
|
|
|
|
'users.gender',
|
2022-01-16 10:29:16 +08:00
|
|
|
'contact.remark as friend_remark',
|
2021-07-07 19:43:09 +08:00
|
|
|
])->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取指定用户的所有朋友的用户ID
|
|
|
|
*
|
|
|
|
* @param int $user_id 指定用户ID
|
|
|
|
* @return array
|
|
|
|
*/
|
2021-09-11 12:41:28 +08:00
|
|
|
public function getFriendIds(int $user_id): array
|
2021-07-07 19:43:09 +08:00
|
|
|
{
|
2022-01-16 10:29:16 +08:00
|
|
|
return Contact::where('user_id', $user_id)->where('status', 1)->pluck('friend_id')->toArray();
|
2021-07-07 19:43:09 +08:00
|
|
|
}
|
2021-01-28 20:07:14 +08:00
|
|
|
}
|