Validate.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\User;
  5. use app\common\service\MobileComputer;
  6. /**
  7. * 验证接口
  8. */
  9. class Validate extends Api
  10. {
  11. protected $noNeedLogin = '*';
  12. protected $layout = '';
  13. protected $error = null;
  14. public function _initialize()
  15. {
  16. parent::_initialize();
  17. }
  18. /**
  19. * 检测邮箱
  20. *
  21. * @ApiMethod (POST)
  22. * @param string $email 邮箱
  23. * @param string $id 排除会员ID
  24. */
  25. public function check_email_available()
  26. {
  27. $this->_validate([
  28. 'email'=>['email','required'],
  29. ]);
  30. $email = $this->request->post('email');
  31. $id = (int)$this->request->post('id');
  32. $count = User::where('email', '=', $email)->where('id', '<>', $id)->count();
  33. if ($count > 0) {
  34. $this->error(__('邮箱已经被占用'));
  35. }
  36. $this->success();
  37. }
  38. /**
  39. * 检测用户名
  40. *
  41. * @ApiMethod (POST)
  42. * @param string $username 用户名
  43. * @param string $id 排除会员ID
  44. */
  45. public function check_username_available()
  46. {
  47. $username = $this->request->post('username');
  48. $id = (int)$this->request->post('id');
  49. $count = User::where('username', '=', $username)->where('id', '<>', $id)->count();
  50. if ($count > 0) {
  51. $this->error(__('用户名已经被占用'));
  52. }
  53. $this->success();
  54. }
  55. /**
  56. * 检测昵称
  57. *
  58. * @ApiMethod (POST)
  59. * @param string $nickname 昵称
  60. * @param string $id 排除会员ID
  61. */
  62. public function check_nickname_available()
  63. {
  64. $nickname = $this->request->post('nickname');
  65. $id = (int)$this->request->post('id');
  66. $count = User::where('nickname', '=', $nickname)->where('id', '<>', $id)->count();
  67. if ($count > 0) {
  68. $this->error(__('昵称已经被占用'));
  69. }
  70. $this->success();
  71. }
  72. /**
  73. * 检测手机
  74. *
  75. * @ApiMethod (POST)
  76. * @param string $mobile 手机号
  77. * @param string $id 排除会员ID
  78. */
  79. public function check_mobile_available()
  80. {
  81. $mobile = $this->request->post('mobile');
  82. $id = (int)$this->request->post('id');
  83. $count = User::where('mobile', '=', $mobile)->where('id', '<>', $id)->count();
  84. if ($count > 0) {
  85. $this->error(__('该手机号已经占用'));
  86. }
  87. $this->success();
  88. }
  89. /**
  90. * 检测手机
  91. *
  92. * @ApiMethod (POST)
  93. * @param string $mobile 手机号
  94. */
  95. public function check_mobile_exist()
  96. {
  97. $mobile = $this->request->post('mobile');
  98. $count = User::where('mobile', '=', $mobile)->count();
  99. if (!$count) {
  100. $this->error(__('手机号不存在'));
  101. }
  102. $this->success();
  103. }
  104. /**
  105. * 检测邮箱
  106. *
  107. * @ApiMethod (POST)
  108. * @param string $mobile 邮箱
  109. */
  110. public function check_email_exist()
  111. {
  112. $email = $this->request->post('email');
  113. $count = User::where('email', '=', $email)->count();
  114. if (!$count) {
  115. $this->error(__('邮箱不存在'));
  116. }
  117. $this->success();
  118. }
  119. /**
  120. * 检测手机验证码
  121. *
  122. * @ApiMethod (POST)
  123. * @param string $mobile 手机号
  124. * @param string $captcha 验证码
  125. * @param string $event 事件
  126. */
  127. public function check_sms_correct()
  128. {
  129. $mobile = $this->request->post('mobile');
  130. $captcha = $this->request->post('captcha');
  131. $event = $this->request->post('event');
  132. if (!\app\common\library\Sms::check($mobile, $captcha, $event)) {
  133. $this->error(__('验证码不正确'));
  134. }
  135. $this->success();
  136. }
  137. /**
  138. * 检测邮箱验证码
  139. *
  140. * @ApiMethod (POST)
  141. * @param string $email 邮箱
  142. * @param string $captcha 验证码
  143. * @param string $event 事件
  144. */
  145. public function check_ems_correct()
  146. {
  147. $email = $this->request->post('email');
  148. $captcha = $this->request->post('captcha');
  149. $event = $this->request->post('event');
  150. if (!\app\common\library\Ems::check($email, $captcha, $event)) {
  151. $this->error(__('验证码不正确'));
  152. }
  153. $this->success();
  154. }
  155. /**
  156. * 手机号规律
  157. * @ApiParams (name=mobile)
  158. */
  159. public function check_mobile_rule_validate(){
  160. $mobile=input('mobile');
  161. if(!$mobile){
  162. $this->error();
  163. }
  164. $this->success('',MobileComputer::setMobile($mobile)->filter());
  165. }
  166. }