| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 | 
							- <?php
 
- namespace app\api\controller;
 
- use app\common\library\Ems as Emslib;
 
- use app\common\model\User;
 
- /**
 
-  * 邮箱验证码接口
 
-  */
 
- class Ems extends Base
 
- {
 
-     protected $noNeedLogin = ['*'];
 
-     public function _initialize()
 
-     {
 
-         parent::_initialize();
 
-         if (!$this->request->isPost()) {
 
-             $this->error("请求错误");
 
-         }
 
-         \think\Hook::add('ems_send', function ($params) {
 
-             $obj = \app\common\library\Email::instance();
 
-             $result = $obj
 
-                 ->to($params->email)
 
-                 ->subject('验证码')
 
-                 ->message("你的验证码是:" . $params->code)
 
-                 ->send();
 
-             return $result;
 
-         });
 
-     }
 
-     /**
 
-      * 发送验证码
 
-      *
 
-      * @param string $email 邮箱
 
-      * @param string $event 事件名称
 
-      */
 
-     public function send()
 
-     {
 
-         $email = $this->request->param("email");
 
-         $event = $this->request->param("event");
 
-         $event = $event ? $event : 'register';
 
-         if (!$email || !filter_var($email, FILTER_VALIDATE_EMAIL)) {
 
-             $this->error(__('邮箱格式错误'));
 
-         }
 
-         if (!preg_match("/^[a-z0-9_\-]{3,30}\$/i", $event)) {
 
-             $this->error(__('事件名称错误'));
 
-         }
 
-         $last = Emslib::get($email, $event);
 
-         if ($last && time() - $last['createtime'] < 60) {
 
-             $this->error(__('发送频繁'));
 
-         }
 
-         if ($event) {
 
-             $userinfo = User::getByEmail($email);
 
-             if ($event == 'register' && $userinfo) {
 
-                 //已被注册
 
-                 $this->error(__('已被注册'));
 
-             } elseif (in_array($event, ['changeemail']) && $userinfo) {
 
-                 //被占用
 
-                 $this->error(__('已被占用'));
 
-             } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
 
-                 //未注册
 
-                 $this->error(__('未注册'));
 
-             }
 
-         }
 
-         $ret = Emslib::send($email, null, $event);
 
-         if ($ret) {
 
-             $this->success(__('发送成功'));
 
-         } else {
 
-             $this->error(__('发送失败'));
 
-         }
 
-     }
 
-     /**
 
-      * 检测验证码
 
-      *
 
-      * @param string $email   邮箱
 
-      * @param string $event   事件名称
 
-      * @param string $captcha 验证码
 
-      */
 
-     public function check()
 
-     {
 
-         $email = $this->request->param("email");
 
-         $event = $this->request->param("event");
 
-         $event = $event ? $event : 'register';
 
-         $captcha = $this->request->param("captcha");
 
-         if (!$email || !filter_var($email, FILTER_VALIDATE_EMAIL)) {
 
-             $this->error(__('邮箱格式错误'));
 
-         }
 
-         if (!preg_match("/^[a-z0-9_\-]{3,30}\$/i", $event)) {
 
-             $this->error(__('事件名称错误'));
 
-         }
 
-         if (!preg_match("/^[a-z0-9]{4,6}\$/i", $captcha)) {
 
-             $this->error(__('验证码格式错误'));
 
-         }
 
-         if ($event) {
 
-             $userinfo = User::getByEmail($email);
 
-             if ($event == 'register' && $userinfo) {
 
-                 //已被注册
 
-                 $this->error(__('已被注册'));
 
-             } elseif (in_array($event, ['changeemail']) && $userinfo) {
 
-                 //被占用
 
-                 $this->error(__('已被占用'));
 
-             } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
 
-                 //未注册
 
-                 $this->error(__('未注册'));
 
-             }
 
-         }
 
-         $ret = Emslib::check($email, $captcha, $event);
 
-         if ($ret) {
 
-             $this->success(__('成功'));
 
-         } else {
 
-             $this->error(__('验证码不正确'));
 
-         }
 
-     }
 
- }
 
 
  |