xieruidong 2 năm trước cách đây
mục cha
commit
672e6a87f7
3 tập tin đã thay đổi với 22 bổ sung3 xóa
  1. 2 2
      app/data/controller/api/Login.php
  2. 18 0
      app/data/service/MessageService.php
  3. 2 1
      composer.json

+ 2 - 2
app/data/controller/api/Login.php

@@ -60,7 +60,7 @@ class Login extends Auth
             'verify.require'          => '验证码不能为空!',
             'password.require'        => '登录密码不能为空!',
         ]);
-        if (!MessageService::instance()->checkVerifyCode($data['verify'], $data['phone'])) {
+        if (!MessageService::instance()->checkCode($data['verify'], $data['phone'],2)) {
             $this->error('手机短信验证失败!');
         }
         $map = ['phone' => $data['phone'], 'deleted' => 0];
@@ -107,7 +107,7 @@ class Login extends Auth
             'verify.require'=>'验证码必须',
             'password.require'=>'密码必须',
         ]);
-        if (!MessageService::instance()->checkVerifyCode($data['verify'], $data['phone'])) {
+        if (!MessageService::instance()->checkCode($data['verify'], $data['phone'],3)) {
             $this->error('手机短信验证失败!');
         }
         $user=DataUser::where('phone',$data['phone'])->find();

+ 18 - 0
app/data/service/MessageService.php

@@ -3,6 +3,7 @@
 namespace app\data\service;
 
 use app\data\model\DataUserMessage;
+use Carbon\Carbon;
 use think\admin\Service;
 
 /**
@@ -162,6 +163,23 @@ class MessageService extends Service
         });
     }
 
+    public function checkCode($phone,$type,$code){
+        $msg=DataUserMessage::mk()
+            ->where('phone',$phone)
+            ->where('type',$type)
+            ->where('result',$code)
+            ->where('create_at','>',Carbon::now()->subMinutes(5))
+            ->order('id','desc')
+            ->where('status',1)
+            ->find();
+        if(!$msg){
+            return false;
+        }
+        $msg['status']=2;
+        $msg->save();
+        return true;
+    }
+
     /**
      * 发送自定义短信内容
      * @param string $phone

+ 2 - 1
composer.json

@@ -31,7 +31,8 @@
     "zoujingli/ip2region": "^2.0",
     "zoujingli/think-library": "^6.0.37",
     "zoujingli/wechat-developer": "^1.2",
-    "hg/apidoc": "3.1.9"
+    "hg/apidoc": "3.1.9",
+    "nesbot/carbon": "^2.62"
   },
   "autoload": {
     "psr-0": {