Login.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\UsersModel;
  4. use app\common\controller\Api;
  5. use think\Db;
  6. /**
  7. * 登录接口
  8. */
  9. class Login extends Api
  10. {
  11. protected $noNeedLogin = '*';
  12. protected $noNeedRight = '*';
  13. /**
  14. * 会员登录
  15. *
  16. * @param string $user_tel 账号
  17. * @param string $user_pwd 密码
  18. * @param string $user_openid qq或者微信openID
  19. */
  20. public function Login()
  21. {
  22. $data = $this->request->post();
  23. $rules = [
  24. 'user_tel' => 'require|max:11|number|min:11',
  25. 'user_pwd' => 'require|max:25|min:6'
  26. ];
  27. $msg = [
  28. 'user_tel.require' => '手机号不能为空',
  29. 'user_tel.max' => '手机号长度不正确',
  30. 'user_tel.min' => '手机号长度不正确',
  31. 'user_tel.number' => '手机号必须为数字',
  32. 'user_pwd.require' => '密码不能为空',
  33. 'user_pwd.max' => '密码长度过长',
  34. 'user_pwd.min' => '密码长度不足',
  35. ];
  36. if (isset($data['user_tel']) && isset($data['user_pwd'])) {
  37. $validata = $this->validate($data, $rules, $msg); //验证数据规则
  38. if (is_string($validata)) {
  39. return $this->result($validata, [], 100);
  40. }
  41. $valdatatel = UsersModel::where('user_tel', $data['user_tel'])->find(); //判断手机号是否存在
  42. if ($valdatatel) {
  43. $data['user_pwd'] = sha1(md5($data['user_pwd'])); //加密验证密码
  44. $validatapwd = UsersModel::where('user_pwd', $data['user_pwd'])->where('user_tel', $data['user_tel'])->find(); //判断密码是否正确
  45. if ($validatapwd) {
  46. return $this->result('登录成功,欢迎回来', $validatapwd, 200);
  47. } else {
  48. return $this->result('密码错误', [], 100);
  49. }
  50. } else {
  51. return $this->result('手机号不存在', [], 100);
  52. }
  53. }
  54. if (isset($data['user_openid'])) {
  55. $validataopenid = UsersModel::where('user_openid', $data['user_openid'])->find(); //判断QQ或者微信登录的openid是否正确
  56. if ($validataopenid) {
  57. return $this->result('登陆成功,欢迎回来', $validataopenid, 200);
  58. } else {
  59. return $this->result('暂无该用户', [], 100);
  60. }
  61. }
  62. }
  63. //验证手机号是否已存在
  64. public function validatatel($tel)
  65. {
  66. $tel = UsersModel::where('user_tel', $tel)->find();
  67. $num = count($tel);
  68. if ($num > 0) {
  69. return $this->result('手机号已存在', [], 100);
  70. }
  71. }
  72. /**
  73. * 服务协议
  74. */
  75. public function agreement()
  76. {
  77. $data = Db::name('agreement')->where('type', 0)->find();
  78. if ($data) {
  79. return $this->result('', $data, 200);
  80. } else {
  81. return $this->result('网络错误', [], 100);
  82. }
  83. }
  84. //短信发送
  85. }