|
@@ -252,6 +252,94 @@ class Auth extends \ba\Auth
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** 判断微信账胡是否注册
|
|
|
|
+ * @param string $openid
|
|
|
|
+ * @param string $unionid
|
|
|
|
+ * @return bool
|
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
|
+ * @throws \think\db\exception\DbException
|
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
|
+ */
|
|
|
|
+ public function isWxUser(string $openid,string $unionid,bool $keeptime): bool
|
|
|
|
+ {
|
|
|
|
+ if($openid=='')return false;
|
|
|
|
+
|
|
|
|
+ $this->model = User::where(['openid'=>$openid,"unionid"=>$unionid])->find();
|
|
|
|
+ if (!$this->model) {
|
|
|
|
+ $this->setError('Account not exist');
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ if ($this->model['status'] == 'disable') {
|
|
|
|
+ $this->setError('Account disabled');
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ $userLoginRetry = Config::get('buildadmin.user_login_retry');
|
|
|
|
+ if ($userLoginRetry && $this->model->loginfailure >= $userLoginRetry && time() - $this->model->lastlogintime < 86400) {
|
|
|
|
+ $this->setError('Please try again after 1 day');
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ if (Config::get('buildadmin.user_sso')) {
|
|
|
|
+ Token::clear('user', $this->model->id);
|
|
|
|
+ Token::clear('user-refresh', $this->model->id);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if ($keeptime) {
|
|
|
|
+ $this->setRefreshToken(2592000);
|
|
|
|
+ }
|
|
|
|
+ $this->loginSuccessful();
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public function WxRegister(string $nickname, string $mobile, string $openid, string $unionid,string $avatar,$group=1,array $extend=[]){
|
|
|
|
+ $validate = Validate::rule([
|
|
|
|
+ 'mobile' => 'mobile|unique:user',
|
|
|
|
+ 'openid' => 'require|unique:user',
|
|
|
|
+ 'unionid' => 'max:255',
|
|
|
|
+ 'nickname' => 'max:255',
|
|
|
|
+ 'avatar' => 'url',
|
|
|
|
+ ]);
|
|
|
|
+ $params = [
|
|
|
|
+ 'nickname' => $nickname,
|
|
|
|
+ 'openid' => $openid,
|
|
|
|
+ 'mobile' => $mobile,
|
|
|
|
+ 'unionid' => $unionid,
|
|
|
|
+ 'avatar' => $avatar,
|
|
|
|
+ ];
|
|
|
|
+ if (!$validate->check($params)) {
|
|
|
|
+ $this->setError('Registration parameter error');
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $ip = request()->ip();
|
|
|
|
+ $time = time();
|
|
|
|
+ $salt = Random::build('alnum', 16);
|
|
|
|
+ $data = [
|
|
|
|
+ 'password' => encrypt_password(substr($mobile,3,6), $salt),
|
|
|
|
+ 'group_id' => $group,
|
|
|
|
+ 'nickname' => $nickname=='' ? substr_replace($mobile, '****', 3, 4) : $nickname,
|
|
|
|
+ 'joinip' => $ip,
|
|
|
|
+ 'jointime' => $time,
|
|
|
|
+ 'lastloginip' => $ip,
|
|
|
|
+ 'lastlogintime' => $time,
|
|
|
|
+ 'salt' => $salt,
|
|
|
|
+ 'status' => 'enable',
|
|
|
|
+ ];
|
|
|
|
+ $data = array_merge($params, $data);
|
|
|
|
+ $data = array_merge($data, $extend);
|
|
|
|
+ Db::startTrans();
|
|
|
|
+ try {
|
|
|
|
+ $this->model = User::create($data);
|
|
|
|
+ $this->token = Random::uuid();
|
|
|
|
+ Token::set($this->token, 'user', $this->model->id, $this->keeptime);
|
|
|
|
+ Event::trigger('userRegisterSuccessed', $this->model);
|
|
|
|
+ Db::commit();
|
|
|
|
+ } catch (PDOException|Exception $e) {
|
|
|
|
+ $this->setError($e->getMessage());
|
|
|
|
+ Db::rollback();
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* 直接登录会员账号
|
|
* 直接登录会员账号
|
|
* @param int $userId 用户ID
|
|
* @param int $userId 用户ID
|