Login.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. namespace app\data\controller\api;
  3. use app\data\service\MessageService;
  4. use app\data\service\UserService;
  5. use think\admin\Controller;
  6. /**
  7. * 用户登录注册接口
  8. * Class Login
  9. * @package app\data\controller\api
  10. */
  11. class Login extends Controller
  12. {
  13. /**
  14. * 接口认证类型
  15. * @var string
  16. */
  17. private $type;
  18. /**
  19. * 绑定数据表
  20. * @var string
  21. */
  22. protected $table = 'DataUser';
  23. /**
  24. * 控制器初始化
  25. */
  26. protected function initialize()
  27. {
  28. $this->type = input('api', UserService::APITYPE_WAP);
  29. if (empty(UserService::TYPES[$this->type])) {
  30. $this->error("接口通道[{$this->type}]未定义规则!");
  31. }
  32. }
  33. /**
  34. * 用户登录接口
  35. * @throws \think\Exception
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public function in()
  41. {
  42. $data = $this->_vali([
  43. 'phone.mobile' => '手机号码格式错误!',
  44. 'phone.require' => '手机号码不能为空!',
  45. 'password.require' => '登录密码不能为空!',
  46. ]);
  47. $map = ['deleted' => 0, 'phone' => $data['phone']];
  48. $user = $this->app->db->name($this->table)->where($map)->find();
  49. if (empty($user)) $this->error('该手机号还没有注册哦!');
  50. if (empty($user['status'])) $this->error('该用户账号状态异常!');
  51. if (md5($data['password']) === $user['password']) {
  52. $this->success('手机登录成功!', UserService::instance()->set($map, [], $this->type, true));
  53. } else {
  54. $this->error('账号登录失败,请稍候再试!');
  55. }
  56. }
  57. /**
  58. * 用户统一注册入口
  59. * @throws \think\db\exception\DbException
  60. */
  61. public function register()
  62. {
  63. $data = $this->_vali([
  64. 'region_province.default' => '',
  65. 'region_city.default' => '',
  66. 'region_area.default' => '',
  67. 'username.default' => '',
  68. 'phone.mobile' => '手机号码格式错误!',
  69. 'phone.require' => '手机号码不能为空!',
  70. // 'verify.require' => '验证码不能为空!',
  71. 'password.require' => '登录密码不能为空!',
  72. ]);
  73. // if (MessageService::instance()->checkVerifyCode($data['verify'], $data['phone'])) {
  74. // @验证码验证能完
  75. // } else {
  76. // $this->error('验证失败!');
  77. // }
  78. $map = ['phone' => $data['phone'], 'deleted' => 0];
  79. if ($this->app->db->name($this->table)->where($map)->count() > 0) {
  80. $this->error('手机号已注册,请使用其它手机号!');
  81. }
  82. $data['password'] = md5($data['password']);
  83. $user = UserService::instance()->set($map, $data, $this->type, true);
  84. empty($user) ? $this->error('手机注册失败!') : $this->success('用户注册成功!', $user);
  85. }
  86. /**
  87. * 发送短信验证码
  88. * @throws \think\db\exception\DataNotFoundException
  89. * @throws \think\db\exception\DbException
  90. * @throws \think\db\exception\ModelNotFoundException
  91. */
  92. public function sendsms()
  93. {
  94. $data = $this->_vali([
  95. 'phone.mobile' => '手机号格式错误!',
  96. 'phone.require' => '手机号不能为空!',
  97. 'secure.require' => '安全码不能为空!',
  98. ]);
  99. if ($data['secure'] !== sysconf('zt.secure_code')) $this->error('接口安全码错误!');
  100. [$state, $message, $data] = MessageService::instance()->sendVerifyCode($data['phone']);
  101. $state ? $this->success($message, $data) : $this->error($message, $data);
  102. }
  103. }