You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
4.0 KiB
131 lines
4.0 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\api\model;
|
|
|
|
use think\facade\Cache;
|
|
use app\api\service\User as UserService;
|
|
use app\api\model\UserOauth as UserOauthModel;
|
|
use app\common\model\User as UserModel;
|
|
use cores\exception\BaseException;
|
|
use yiovo\captcha\facade\CaptchaApi;
|
|
|
|
/**
|
|
* 用户模型类
|
|
* Class User
|
|
* @package app\api\model
|
|
*/
|
|
class User extends UserModel
|
|
{
|
|
/**
|
|
* 隐藏字段
|
|
* @var array
|
|
*/
|
|
protected $hidden = [
|
|
'currentOauth',
|
|
'is_delete',
|
|
'store_id',
|
|
'create_time',
|
|
'update_time'
|
|
];
|
|
|
|
/**
|
|
* 获取器:隐藏手机号中间四位
|
|
* @param string $value
|
|
* @return string
|
|
*/
|
|
public function getMobileAttr(string $value): string
|
|
{
|
|
return strlen($value) === 11 ? hide_mobile($value) : $value;
|
|
}
|
|
|
|
/**
|
|
* 获取用户信息
|
|
* @param string $token
|
|
* @return User|array|false|null
|
|
* @throws BaseException
|
|
*/
|
|
public static function getUserByToken(string $token)
|
|
{
|
|
// 检查登录态是否存在
|
|
if (!Cache::has($token)) {
|
|
return false;
|
|
}
|
|
// 用户的ID
|
|
$userId = (int)Cache::get($token)['user']['user_id'];
|
|
// 用户基本信息
|
|
$userInfo = self::detail($userId,['avatar']);
|
|
if (empty($userInfo) || $userInfo['is_delete']) {
|
|
throwError('很抱歉,用户信息不存在或已删除', config('status.not_logged'));
|
|
}
|
|
// 获取用户关联的第三方用户信息(当前客户端)
|
|
try {
|
|
$userInfo['currentOauth'] = UserOauthModel::getOauth($userId, getPlatform());
|
|
} catch (\Throwable $e) {
|
|
throwError($e->getMessage());
|
|
}
|
|
return $userInfo;
|
|
}
|
|
|
|
/**
|
|
* 绑定手机号(当前登录用户)
|
|
* @param array $data
|
|
* @return bool
|
|
* @throws BaseException
|
|
*/
|
|
public function bindMobile(array $data): bool
|
|
{
|
|
// 当前登录的用户信息
|
|
$userInfo = UserService::getCurrentLoginUser(true);
|
|
// 验证绑定的手机号
|
|
$this->checkBindMobile($data);
|
|
// 更新手机号记录
|
|
return $userInfo->save(['mobile' => $data['mobile']]);
|
|
}
|
|
|
|
/**
|
|
* 修改个人信息(头像昵称)
|
|
* @param array $form
|
|
* @return bool
|
|
* @throws BaseException
|
|
*/
|
|
public function personal(array $form): bool
|
|
{
|
|
// 当前登录的用户信息
|
|
$userInfo = UserService::getCurrentLoginUser(true);
|
|
// 默认数据
|
|
$data['avatar_id'] = $form['avatarId'] ?: $userInfo['avatar_id'];
|
|
$data['nick_name'] = $form['nickName'] ?: $userInfo['nick_name'];
|
|
// 更新用户记录
|
|
return $userInfo->save($data);
|
|
}
|
|
|
|
/**
|
|
* 验证绑定的手机号
|
|
* @param array $data
|
|
* @return void
|
|
* @throws BaseException
|
|
*/
|
|
private function checkBindMobile(array $data): void
|
|
{
|
|
// 验证短信验证码是否匹配
|
|
try {
|
|
CaptchaApi::checkSms($data['smsCode'], $data['mobile']);
|
|
} catch (\Exception $e) {
|
|
throwError($e->getMessage() ?: '短信验证码不正确');
|
|
}
|
|
// 判断手机号是否已存在
|
|
if (static::checkExistByMobile($data['mobile'])) {
|
|
throwError('很抱歉,该手机号已绑定其他账户');
|
|
}
|
|
}
|
|
}
|
|
|