|
@@ -239,13 +239,12 @@ func (this *UserCommonController) CheckEmailCode() {
|
|
|
br.Msg = "验证码正确"
|
|
|
}
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-func (this *UserCommonController) Login() {
|
|
|
+func (this *UserController) Login() {
|
|
|
br := new(models.BaseResponse).Init()
|
|
|
defer func() {
|
|
|
this.Data["json"] = br
|
|
@@ -258,72 +257,78 @@ func (this *UserCommonController) Login() {
|
|
|
br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
+ user := this.User
|
|
|
+ if user == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ openId := user.OpenId
|
|
|
+ if openId == "" {
|
|
|
+ br.Msg = "参数错误"
|
|
|
+ br.ErrMsg = "参数错误,openid 为空"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ userId := user.UserId
|
|
|
+ newUserId := 0
|
|
|
+ if req.LoginType == 1 {
|
|
|
+
|
|
|
+ newUserId, err = models.BindMobile(openId, req.Mobile, userId, req.LoginType)
|
|
|
+ } else if req.LoginType == 2 {
|
|
|
+ if req.Email == "" {
|
|
|
+ br.ErrMsg = "邮箱不能为空,请输入邮箱"
|
|
|
+ br.Msg = "邮箱不能为空,请输入邮箱"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !utils.ValidateEmailFormatat(req.Email) {
|
|
|
+ br.ErrMsg = "邮箱格式错误,请重新输入"
|
|
|
+ br.Msg = "邮箱格式错误,请重新输入"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ newUserId, err = models.BindMobile(openId, req.Email, userId, req.LoginType)
|
|
|
+ } else {
|
|
|
+ br.Msg = "无效的登录方式"
|
|
|
+ br.ErrMsg = "无效的登录方式,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ timeUnix := time.Now().Unix()
|
|
|
+ timeUnixStr := strconv.FormatInt(timeUnix, 10)
|
|
|
+ token := utils.MD5(strconv.Itoa(userId)) + utils.MD5(timeUnixStr)
|
|
|
+
|
|
|
+ {
|
|
|
+ session := new(models.Session)
|
|
|
+ session.OpenId = openId
|
|
|
+ session.UserId = userId
|
|
|
+ session.CreatedTime = time.Now()
|
|
|
+ session.LastUpdatedTime = time.Now()
|
|
|
+ session.ExpireTime = time.Now().AddDate(1, 0, 0)
|
|
|
+ session.AccessToken = token
|
|
|
+ err = models.AddSession(session)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "登录失败"
|
|
|
+ br.ErrMsg = "登录失败,新增用户session信息失败:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ userPermission, err := services.CheckUserPermission(newUserId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "登录失败"
|
|
|
+ br.ErrMsg = "登录失败,判断权限失败:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp := new(models.LoginResp)
|
|
|
+ resp.UserId = newUserId
|
|
|
+ resp.UserPermission = userPermission
|
|
|
+ resp.Authorization = token
|
|
|
br.Ret = 200
|
|
|
br.Success = true
|
|
|
+ br.Data = resp
|
|
|
br.Msg = "登录成功"
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- function login()
|
|
|
- {
|
|
|
-
|
|
|
- $openId =$this->request->open_id;
|
|
|
- if(empty($openId)){
|
|
|
- return response()->json(['code'=>'1','msg'=>'参数错误']);
|
|
|
- }
|
|
|
- $user = UserModel::getUserByOpenid($openId);
|
|
|
- if(empty($user))
|
|
|
- {
|
|
|
- return response()->json(['code'=>'40001','msg'=>'请重新登陆']);
|
|
|
- }
|
|
|
- $loginTypeStr='';
|
|
|
- $userId=$user->user_id;
|
|
|
-
|
|
|
- $userData=array(
|
|
|
- 'company_id'=>1,
|
|
|
- );
|
|
|
- if ($loginType==1){
|
|
|
- $mobile = ExpressUtil::checkStringArrayValue('mobile',$request_data);
|
|
|
- if(!preg_match("/^1\d{10}$/",$mobile)){
|
|
|
- return response()->json(['code'=>'3','msg'=>'请输入正确的手机号(1开头的11位数字)']);
|
|
|
- }
|
|
|
- app('log')->info("start bindMobile");
|
|
|
- $userId=UserModel::bindMobile($openId,$userId,$mobile);
|
|
|
- $loginTypeStr='MOBILE';
|
|
|
- }else if ($loginType==2){
|
|
|
- $email = ExpressUtil::checkStringArrayValue('email',$request_data);
|
|
|
- $preg_email='/^[a-zA-Z0-9]+([-_.][a-zA-Z0-9]+)*@([a-zA-Z0-9]+[-.])+([a-z]{2,5})$/ims';
|
|
|
- if(!preg_match($preg_email,$email)){
|
|
|
- return response()->json(['code'=>'4','msg'=>'请输入正确的邮箱']);
|
|
|
- }
|
|
|
- $userId=UserModel::bindMobile($openId,$userId,$email);
|
|
|
- $loginTypeStr='EMAIL';
|
|
|
- }else{
|
|
|
- return response()->json(['code'=>'5','msg'=>'无效的登录方式']);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- $userPermission = ExpressUtil::checkUserPermission($userId);
|
|
|
-
|
|
|
- SessionModel::addSession($openId,$userId);
|
|
|
- $session = SessionModel::getSessionByUserId($userId);
|
|
|
- $rddpAccessToken=$session->access_token;
|
|
|
- $response = new Response(['code'=>'0','msg'=>'登录成功','data'=>array(
|
|
|
- 'user_id'=>$userId,
|
|
|
- 'rddp_access_token'=>$rddpAccessToken,
|
|
|
- 'user_permission'=>$userPermission,
|
|
|
- )]);
|
|
|
- UserModel::editUserFirstLogin($openId);
|
|
|
- $result=json_encode($response);
|
|
|
- app('log')->info("login result:".$result);
|
|
|
- return $response;
|
|
|
- }
|
|
|
-
|
|
|
- */
|
|
|
-
|
|
|
|
|
|
|
|
|
|