| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 | <?php// +—————————————————————————————————————————————————————————————————————// | Created by Yunbao// +—————————————————————————————————————————————————————————————————————// | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.// +—————————————————————————————————————————————————————————————————————// | Author: https://gitee.com/yunbaokeji// +—————————————————————————————————————————————————————————————————————// | Date: 2022-02-17// +—————————————————————————————————————————————————————————————————————namespace app\user\controller;use cmf\controller\HomeBaseController;use think\facade\Validate;class VerificationCodeController extends HomeBaseController{    public function send()    {        $validate = new \think\Validate([            'username' => 'require',            'captcha'  => 'require',        ]);        $validate->message([            'username.require' => '请输入手机号或邮箱!',            'captcha.require'  => '图片验证码不能为空',        ]);        $data = $this->request->param();        if (!$validate->check($data)) {            $this->error($validate->getError());        }        $captchaId = empty($data['captcha_id']) ? '' : $data['captcha_id'];        if (!cmf_captcha_check($data['captcha'], $captchaId, false)) {            $this->error('图片验证码错误!');        }        $registerCaptcha = session('register_captcha');        session('register_captcha', $data['captcha']);        if ($registerCaptcha == $data['captcha']) {            cmf_captcha_check($data['captcha'], $captchaId, true);            $this->error('请输入新图片验证码!');        }        $accountType = '';        if (Validate::is($data['username'], 'email')) {            $accountType = 'email';        } else if (cmf_check_mobile($data['username'])) {            $accountType = 'mobile';        } else {            $this->error("请输入正确的手机或者邮箱格式!");        }        if (isset($data['type']) && $data['type'] == 'register') {            if ($accountType == 'email') {                $findUserCount = db('user')->where('user_email', $data['username'])->count();            } else if ($accountType == 'mobile') {                $findUserCount = db('user')->where('mobile', $data['username'])->count();            }            if ($findUserCount > 0) {                $this->error('账号已注册!');            }        }        //TODO 限制 每个ip 的发送次数        $code = cmf_get_verification_code($data['username']);        if (empty($code)) {            $this->error("验证码发送过多,请明天再试!");        }        if ($accountType == 'email') {            $emailTemplate = cmf_get_option('email_template_verification_code');            $user     = cmf_get_current_user();            $username = empty($user['user_nicename']) ? $user['user_login'] : $user['user_nicename'];            $message = htmlspecialchars_decode($emailTemplate['template']);            $message = $this->view->display($message, ['code' => $code, 'username' => $username]);            $subject = empty($emailTemplate['subject']) ? 'ThinkCMF验证码' : $emailTemplate['subject'];            $result  = cmf_send_email($data['username'], $subject, $message);            if (empty($result['error'])) {                cmf_verification_code_log($data['username'], $code);                $this->success("验证码已经发送成功!");            } else {                $this->error("邮箱验证码发送失败:" . $result['message']);            }        } else if ($accountType == 'mobile') {            $param  = ['mobile' => $data['username'], 'code' => $code];            $result = hook_one("send_mobile_verification_code", $param);            if ($result !== false && !empty($result['error'])) {                $this->error($result['message']);            }            if ($result === false) {                $this->error('未安装验证码发送插件,请联系管理员!');            }            $expireTime = empty($result['expire_time']) ? 0 : $result['expire_time'];            cmf_verification_code_log($data['username'], $code, $expireTime);            if (!empty($result['message'])) {                $this->success($result['message']);            } else {                $this->success('验证码已经发送成功!');            }        }    }}
 |