123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- namespace app\api\controller;
- use app\common\model\UserGroup;
- use app\common\model\UserLevelRank;
- use app\common\validate\UserVali;
- use app\common\model\User;
- use app\common\model\UserWallet;
- use library\service\CaptchaService;
- use library\tools\Data;
- use think\Db;
- use EasyWeChat\Factory;
- use app\common\model\InviteInfo;
- use function AlibabaCloud\Client\value;
- /**
- * @title 用户登录
- * @controller Login
- */
- class Login extends Base
- {
- /**
- * @title 用户统一登录
- * @desc 用户登录
- * @author qc
- * @url /api/Login/unifiedLogin
- * @method POST
- * @tag 登录 授权
- * @param name:account_type type:int require:1 default:1 desc:账号类型1企业2个人
- * @param name:account type:int require:1 default:-- desc:账号
- * @param name:code type:int require:1 default:-- desc:验证码
- * @param name:facility_type type:int require:1 default:-- desc:设备类型1安卓手机设备,2ios手机设备,3安卓ipad,4iosipad,5pc电脑设备号
- * @param name:facility_code type:string require:1 default:-- desc:设备号
- * @return name:token type:string default:-- desc:用户登录成功后的token值
- */
- public function unifiedLogin()
- {
- $code = input('post.code','');
- $account = input('post.account','');
- $account_type = input('post.account_type', 1);
- $facility_type = input('post.facility_type', 1);
- $facility_code = input('post.facility_code');
- $ret_data = ['code' => 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);
- }
- }
|