|
@@ -4,39 +4,64 @@ namespace app\api\controller;
|
|
|
use Firebase\JWT\JWT;
|
|
|
use library\Controller;
|
|
|
use think\Db;
|
|
|
-use think\facade\Config;
|
|
|
+use think\facade\Request;
|
|
|
|
|
|
class Login extends Controller{
|
|
|
|
|
|
- public $uid = '';
|
|
|
/**
|
|
|
- * 验证token,获取用户id
|
|
|
+ * 用户注册
|
|
|
* */
|
|
|
- public function initialize(){
|
|
|
- $token = isset($_SERVER['HTTP_TOKEN']) ? $_SERVER['HTTP_TOKEN'] : '';
|
|
|
- if ($token == ''){
|
|
|
- $this->error('请先登录','','502');
|
|
|
+ public function register(){
|
|
|
+ $data = $this->request->post();
|
|
|
+ if (empty($data['phone'])){
|
|
|
+ $this->error('手机号不能为空','','400');
|
|
|
+ }
|
|
|
+ if (empty($data['code'])){
|
|
|
+ $this->error('验证码不能为空','','400');
|
|
|
+ }
|
|
|
+ if (strlen($data['phone']) != 11){
|
|
|
+ $this->error('手机号格式不正确','','400');
|
|
|
+ }
|
|
|
+
|
|
|
+ $code_info = Db::table('jst_sms')->where('phone',$data['phone'])->order('id desc')->find();
|
|
|
+ if (!$code_info){
|
|
|
+ $this->error('请先获取验证码','','400');
|
|
|
+ }
|
|
|
+ $sms_time = Config('sms_time');
|
|
|
+ $jwt_key = Config('jwt_key');
|
|
|
+ $time = time();
|
|
|
+ $code_time = strtotime($code_info['create_at']);
|
|
|
+ if (($code_time+$sms_time) < $time){
|
|
|
+ $this->error('验证码失效,请重新获取','','400');
|
|
|
+ }
|
|
|
+ if (md5(md5($data['code'].$jwt_key)) != $code_info['code_pass']){
|
|
|
+ $this->error('验证码错误','','400');
|
|
|
+ }
|
|
|
+ $in_data['phone'] = $data['phone'];
|
|
|
+ $user_info = Db::table('jst_user')->where($in_data)->where('is_deleted',0)->find();
|
|
|
+ if ($user_info){
|
|
|
+ $token_arr = [
|
|
|
+ 'time' => Config('jwt_time')+time(),
|
|
|
+ 'uid'=>$user_info['id'],
|
|
|
+ ];
|
|
|
+ $token = JWT::encode($token_arr, Config('jwt_key'), 'HS256');
|
|
|
+ $this->success('登录成功',$token,'200');
|
|
|
}else{
|
|
|
- $user_info = JWT::decode($token, Config('jwt_key'),['HS256']);
|
|
|
-
|
|
|
- if(!$user_info || $user_info->time<time()){
|
|
|
- $this->error('登录超时','','502');
|
|
|
- }
|
|
|
- if ($user_info->uid <= 0 ){
|
|
|
- $this->error('请先注册','','502');
|
|
|
- }
|
|
|
- $uid = $user_info->uid;
|
|
|
- //$password = $user_info->password;
|
|
|
- $user=Db::table('jst_user')->where(['id'=>$uid])->find();
|
|
|
- if (empty($user)){
|
|
|
- $this->error('用户不存在','','502');
|
|
|
- }
|
|
|
- /*if ($password != $user['password']){
|
|
|
- $this->error('用户已修改密码,请重新登陆','','502');
|
|
|
- }*/
|
|
|
- $this->uid = $uid;
|
|
|
+ $in_data['phone'] = $data['phone'];
|
|
|
+ $in_data['add_time'] = date('Y-m-d H:i:s',time());
|
|
|
+ $uid = Db::table('jst_user')->insertGetId($in_data);
|
|
|
+ $token_arr = [
|
|
|
+ 'time' => Config('jwt_time')+time(),
|
|
|
+ 'uid'=>$uid,
|
|
|
+ ];
|
|
|
+ $token = JWT::encode($token_arr, Config('jwt_key'), 'HS256');
|
|
|
+ $this->success('登录成功',$token,'200');
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|