Ems.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Ems as Emslib;
  5. use app\common\model\User;
  6. /**
  7. * 邮箱验证码接口
  8. * @ApiInternal
  9. */
  10. class Ems extends Api
  11. {
  12. protected $noNeedLogin = '*';
  13. protected $noNeedRight = '*';
  14. public function _initialize()
  15. {
  16. parent::_initialize();
  17. \think\Hook::add('ems_send', function ($params) {
  18. $obj = \app\common\library\Email::instance();
  19. $result = $obj
  20. ->to($params->email)
  21. ->subject('验证码')
  22. ->message("你的验证码是:" . $params->code)
  23. ->send();
  24. return $result;
  25. });
  26. }
  27. /**
  28. * 发送验证码
  29. *
  30. * @ApiMethod (POST)
  31. * @param string $email 邮箱
  32. * @param string $event 事件名称
  33. */
  34. public function send()
  35. {
  36. $email = $this->request->post("email");
  37. $event = $this->request->post("event");
  38. $event = $event ? $event : 'register';
  39. $last = Emslib::get($email, $event);
  40. if ($last && time() - $last['createtime'] < 60) {
  41. $this->error(__('发送频繁'));
  42. }
  43. if ($event) {
  44. $userinfo = User::getByEmail($email);
  45. if ($event == 'register' && $userinfo) {
  46. //已被注册
  47. $this->error(__('已被注册'));
  48. } elseif (in_array($event, ['changeemail']) && $userinfo) {
  49. //被占用
  50. $this->error(__('已被占用'));
  51. } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
  52. //未注册
  53. $this->error(__('未注册'));
  54. }
  55. }
  56. $ret = Emslib::send($email, null, $event);
  57. if ($ret) {
  58. $this->success(__('发送成功'));
  59. } else {
  60. $this->error(__('发送失败'));
  61. }
  62. }
  63. /**
  64. * 检测验证码
  65. *
  66. * @ApiMethod (POST)
  67. * @param string $email 邮箱
  68. * @param string $event 事件名称
  69. * @param string $captcha 验证码
  70. */
  71. public function check()
  72. {
  73. $email = $this->request->post("email");
  74. $event = $this->request->post("event");
  75. $event = $event ? $event : 'register';
  76. $captcha = $this->request->post("captcha");
  77. if ($event) {
  78. $userinfo = User::getByEmail($email);
  79. if ($event == 'register' && $userinfo) {
  80. //已被注册
  81. $this->error(__('已被注册'));
  82. } elseif (in_array($event, ['changeemail']) && $userinfo) {
  83. //被占用
  84. $this->error(__('已被占用'));
  85. } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
  86. //未注册
  87. $this->error(__('未注册'));
  88. }
  89. }
  90. $ret = Emslib::check($email, $captcha, $event);
  91. if ($ret) {
  92. $this->success(__('成功'));
  93. } else {
  94. $this->error(__('验证码不正确'));
  95. }
  96. }
  97. }