Login.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\UserGroup;
  4. use app\common\model\UserLevelRank;
  5. use app\common\validate\UserVali;
  6. use app\common\model\User;
  7. use app\common\model\UserWallet;
  8. use library\service\CaptchaService;
  9. use library\tools\Data;
  10. use think\Db;
  11. use EasyWeChat\Factory;
  12. use app\common\model\InviteInfo;
  13. use function AlibabaCloud\Client\value;
  14. /**
  15. * @title 用户登录
  16. * @controller Login
  17. */
  18. class Login extends Base
  19. {
  20. /**
  21. * @title 用户统一登录
  22. * @desc 用户登录
  23. * @author qc
  24. * @url /api/Login/unifiedLogin
  25. * @method POST
  26. * @tag 登录 授权
  27. * @param name:account_type type:int require:1 default:1 desc:账号类型1企业2个人
  28. * @param name:account type:int require:1 default:-- desc:账号
  29. * @param name:code type:int require:1 default:-- desc:验证码
  30. * @param name:facility_type type:int require:1 default:-- desc:设备类型1安卓手机设备,2ios手机设备,3安卓ipad,4iosipad,5pc电脑设备号
  31. * @param name:facility_code type:string require:1 default:-- desc:设备号
  32. * @return name:token type:string default:-- desc:用户登录成功后的token值
  33. */
  34. public function unifiedLogin()
  35. {
  36. $code = input('post.code','');
  37. $account = input('post.account','');
  38. $account_type = input('post.account_type', 1);
  39. $facility_type = input('post.facility_type', 1);
  40. $facility_code = input('post.facility_code');
  41. $ret_data = ['code' => 200, 'token' => ''];
  42. $msg = '登录成功';
  43. Db::startTrans();
  44. try {
  45. $check_code = $this->checkPhoneCode($account,$code);
  46. // if(!$check_code) $this->exception('验证码错误');
  47. // $this->updatePhoneCode($check_code);
  48. $where = [];
  49. $where[] = $account_type == 1 ? ['email','=',$account] : ['phone','=',$account];
  50. $where[] = ['is_deleted','=',0];
  51. $user_info = User::where($where)->find();
  52. if(!$user_info) {
  53. $reg_data = [];
  54. $reg_data['account_type'] = $account_type;
  55. $reg_data['facility_'.$facility_type] = $facility_code;// 注册设备号
  56. if($account_type == 1){
  57. $group_title = explode('@',$account)[1];
  58. $group_info = UserGroup::where(['title'=>'@'.$group_title])->find();
  59. $reg_data['email'] = $account;
  60. $validate = new UserVali();
  61. if (!$validate->scene('email_login')->check(['email'=>$account])) $this->exception($validate->getError());
  62. if($group_info){
  63. $reg_data['name'] = 'G企业用户_'.$group_info->name.'_'.$group_title;
  64. $check_group = User::where(['group_id'=>$group_info->id,'is_first'=>1])->value('id');//该公司是否有第一个注册的
  65. $reg_data['group_id'] = $group_info->id;
  66. if(!$check_group) $reg_data['is_first'] =1;
  67. if($check_group)$reg_data['group_first'] = $check_group;
  68. }else{
  69. $this->exception('该企业邮箱ID无效');
  70. // $reg_data['name'] = 'G企业用户_'.$group_title;
  71. }
  72. }else{
  73. $validate = new UserVali();
  74. if (!$validate->scene('phone_login')->check(['phone'=>$account])) {
  75. $this->exception($validate->getError());
  76. }
  77. $reg_data['phone'] = $account;
  78. $reg_data['name'] = 'G'. substr_replace($account,'****',3,4);
  79. }
  80. $user_info = User::create($reg_data);
  81. if($account_type == 1 && isset_full_check($reg_data,'is_first',1)) User::where('id',$user_info->id)->update(['group_first'=>$user_info->id]);
  82. $reg_level = sysconf('vip_experience');
  83. // 非企业会员注册,是否怎送会员
  84. 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)]);
  85. }else{
  86. // 已设置登录设备号
  87. if($user_info['status'] != 1) $this->error('用户被禁用');
  88. // if($user_info['facility_'.$facility_type] != '' && $facility_code != $user_info['facility_'.$facility_type]) $this->exception('设备号错误');
  89. if(!$user_info['facility_'.$facility_type]) User::where('id',$user_info->id)->update(['facility_'.$facility_type=>$facility_code] );
  90. }
  91. $ret_data['token'] = $this->createJwt($user_info->id,$facility_code);
  92. Db::commit();
  93. }catch (\Exception $e){
  94. $ret_data['code'] = 201;
  95. $msg =$e->getMessage();
  96. Db::rollback();
  97. }
  98. $ret_data['code'] == 200 ? $this->success($msg,$ret_data):$this->error($msg,$ret_data);
  99. }
  100. /**
  101. * @title 获取验证码
  102. * @desc 获取验证码
  103. * @author qc
  104. * @url /api/Login/getCaptcha
  105. * @method GET
  106. * @return name:image type:string default:-- desc:图片
  107. * @return name:uniqid type:string default:-- desc:uniqid
  108. */
  109. public function getCaptcha()
  110. {
  111. $image = CaptchaService::instance();
  112. $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()];
  113. $this->success('生成验证码成功', $captcha);
  114. }
  115. }