200, 'token' => '']; $msg = '登录成功'; Db::startTrans(); try { $check_code = $this->checkPhoneCode($account,$code); // if(!$check_code) $this->exception('验证码错误'); // $this->updatePhoneCode($check_code); $where = []; $where[] = $account_type == 1 ? ['email','=',$account] : ['phone','=',$account]; $where[] = ['is_deleted','=',0]; $user_info = User::where($where)->find(); if(!$user_info) { $reg_data = []; $reg_data['account_type'] = $account_type; $reg_data['facility_'.$facility_type] = $facility_code;// 注册设备号 if($account_type == 1){ $group_title = explode('@',$account)[1]; $group_info = UserGroup::where(['title'=>'@'.$group_title])->find(); $reg_data['email'] = $account; $validate = new UserVali(); if (!$validate->scene('email_login')->check(['email'=>$account])) $this->exception($validate->getError()); if($group_info){ $reg_data['name'] = 'G企业用户_'.$group_info->name.'_'.$group_title; $check_group = User::where(['group_id'=>$group_info->id,'is_first'=>1])->value('id');//该公司是否有第一个注册的 $reg_data['group_id'] = $group_info->id; if(!$check_group) $reg_data['is_first'] =1; if($check_group)$reg_data['group_first'] = $check_group; }else{ $this->exception('该企业邮箱ID无效'); // $reg_data['name'] = 'G企业用户_'.$group_title; } }else{ $validate = new UserVali(); if (!$validate->scene('phone_login')->check(['phone'=>$account])) { $this->exception($validate->getError()); } $reg_data['phone'] = $account; $reg_data['name'] = 'G'. substr_replace($account,'****',3,4); } $user_info = User::create($reg_data); if($account_type == 1 && isset_full_check($reg_data,'is_first',1)) User::where('id',$user_info->id)->update(['group_first'=>$user_info->id]); $reg_level = sysconf('vip_experience'); // 非企业会员注册,是否怎送会员 if($reg_level && $account_type == 2) UserLevelRank::create(['user_id'=>$user_info->id,'level_id'=>$reg_level,'start_time'=>time(),'end_time'=>time()+86400*7,'end_date'=>date('Y-m-d H:i:s',time()+86400*7)]); }else{ // 已设置登录设备号 if($user_info['status'] != 1) $this->error('用户被禁用'); // if($user_info['facility_'.$facility_type] != '' && $facility_code != $user_info['facility_'.$facility_type]) $this->exception('设备号错误'); if(!$user_info['facility_'.$facility_type]) User::where('id',$user_info->id)->update(['facility_'.$facility_type=>$facility_code] ); } $ret_data['token'] = $this->createJwt($user_info->id,$facility_code); Db::commit(); }catch (\Exception $e){ $ret_data['code'] = 201; $msg =$e->getMessage(); Db::rollback(); } $ret_data['code'] == 200 ? $this->success($msg,$ret_data):$this->error($msg,$ret_data); } /** * @title 获取验证码 * @desc 获取验证码 * @author qc * @url /api/Login/getCaptcha * @method GET * @return name:image type:string default:-- desc:图片 * @return name:uniqid type:string default:-- desc:uniqid */ public function getCaptcha() { $image = CaptchaService::instance(); $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()]; $this->success('生成验证码成功', $captcha); } }