Login.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. namespace app\data\controller\api\business;
  3. use think\admin\Controller;
  4. use think\admin\model\SystemUser;
  5. use hg\apidoc\annotation\Title;
  6. use hg\apidoc\annotation\Method;
  7. use hg\apidoc\annotation\Param;
  8. use hg\apidoc\annotation\Returned;
  9. /**
  10. * 登录商家
  11. */
  12. class Login extends Controller
  13. {
  14. /**
  15. * @Title ("登录注册")
  16. * @Method ("post")
  17. * @Param ("mobile",desc="手机号")
  18. * @Param ("type",desc="登录类型 1密码登录 2短信验证码登录")
  19. * @Param ("password",desc="登录密码")
  20. * @Param ("code",desc="验证码")
  21. * @return void
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\DbException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. */
  26. public function login(){
  27. $data = $this->_vali([
  28. 'mobile.require'=>'登录账号不能为空!',
  29. 'type.require'=>'登录类型不能为空!'
  30. ]);
  31. $password = input('password','');
  32. $code = input('code','');
  33. $user = SystemUser::mk()->where('username|contact_phone',$data['mobile'])->find();
  34. // if($user && !$user->merchant){
  35. // $this->error('您不是商家无法登录');
  36. // }
  37. if($data['type']==1){
  38. if(empty($user)){
  39. $this->error('用户名或手机号不正确');
  40. }
  41. else {
  42. if (empty($password)) {
  43. $this->error('密码不能为空');
  44. } else {
  45. if (md5($password) !== $user['password']) {
  46. $this->error('登录账号或密码错误,请重新输入!');
  47. } else {
  48. $token = $this->token($user['id']);
  49. SystemUser::mk()->where('id', $user['id'])->save(['token' => $token]);
  50. $this->success('登录成功', $token);
  51. }
  52. }
  53. }
  54. }
  55. if($data['type']==2){
  56. if(empty($code)){
  57. $this->error('验证码不能为空');
  58. }
  59. else{
  60. if ($code !== 8888) {
  61. $this->error('验证码错误!');
  62. }
  63. else{
  64. if(empty($user)){
  65. $user_data = [''];
  66. $user['id'] = SystemUser::mk()->insertGetId(['']);
  67. }
  68. $token =$this->token($user['id']);
  69. SystemUser::mk()->where('id',$user['id'])->save(['token'=>$token]);
  70. $this->success('登录成功',$token);
  71. }
  72. }
  73. }
  74. }
  75. public function token($admin_id){
  76. $token = md5(time().rand('0000','9999').$admin_id);
  77. return $token;
  78. }
  79. }