1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- namespace app\data\controller\api\business;
- use think\admin\Controller;
- use think\admin\model\SystemUser;
- use hg\apidoc\annotation\Title;
- use hg\apidoc\annotation\Method;
- use hg\apidoc\annotation\Param;
- use hg\apidoc\annotation\Returned;
- /**
- * 登录商家
- */
- class Login extends Controller
- {
- /**
- * @Title ("登录注册")
- * @Method ("post")
- * @Param ("mobile",desc="手机号")
- * @Param ("type",desc="登录类型 1密码登录 2短信验证码登录")
- * @Param ("password",desc="登录密码")
- * @Param ("code",desc="验证码")
- * @return void
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function login(){
- $data = $this->_vali([
- 'mobile.require'=>'登录账号不能为空!',
- 'type.require'=>'登录类型不能为空!'
- ]);
- $password = input('password','');
- $code = input('code','');
- $user = SystemUser::mk()->where('username|contact_phone',$data['mobile'])->find();
- // if($user && !$user->merchant){
- // $this->error('您不是商家无法登录');
- // }
- if($data['type']==1){
- if(empty($user)){
- $this->error('用户名或手机号不正确');
- }
- else {
- if (empty($password)) {
- $this->error('密码不能为空');
- } else {
- if (md5($password) !== $user['password']) {
- $this->error('登录账号或密码错误,请重新输入!');
- } else {
- $token = $this->token($user['id']);
- SystemUser::mk()->where('id', $user['id'])->save(['token' => $token]);
- $this->success('登录成功', $token);
- }
- }
- }
- }
- if($data['type']==2){
- if(empty($code)){
- $this->error('验证码不能为空');
- }
- else{
- if ($code !== 8888) {
- $this->error('验证码错误!');
- }
- else{
- if(empty($user)){
- $user_data = [''];
- $user['id'] = SystemUser::mk()->insertGetId(['']);
- }
- $token =$this->token($user['id']);
- SystemUser::mk()->where('id',$user['id'])->save(['token'=>$token]);
- $this->success('登录成功',$token);
- }
- }
- }
- }
- public function token($admin_id){
- $token = md5(time().rand('0000','9999').$admin_id);
- return $token;
- }
- }
|