From ac25e4b2754831fc94941cc7ff7d7c1edcaaf8cc Mon Sep 17 00:00:00 2001 From: Karson Date: Thu, 4 Jul 2024 15:27:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=82=AE=E7=AE=B1=E9=AA=8C?= =?UTF-8?q?=E8=AF=81=E7=A0=81=E5=8F=91=E9=80=81=E5=8F=82=E6=95=B0=E9=AA=8C?= =?UTF-8?q?=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/Ems.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/application/api/controller/Ems.php b/application/api/controller/Ems.php index b70c414e..4c2e8a4d 100644 --- a/application/api/controller/Ems.php +++ b/application/api/controller/Ems.php @@ -34,8 +34,20 @@ class Ems extends Api $event = $this->request->post("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(__('事件名称错误')); + } + //发送前验证码 if (config('fastadmin.user_api_captcha')) { + + if (!preg_match("/^[a-z0-9]{4,6}\$/i", $captcha)) { + $this->error(__('验证码格式错误')); + } + if (!\think\Validate::is($captcha, 'captcha')) { $this->error("验证码不正确"); } @@ -87,6 +99,17 @@ class Ems extends Api $event = $event ? $event : 'register'; $captcha = $this->request->post("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) {