From d136ca240f6c6adc5577c4b1d46c6e9f2b269f19 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Sun, 9 Mar 2025 15:08:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=A8=E6=8F=90=E7=8E=B0=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E4=B8=AD=E6=B7=BB=E5=8A=A0=E9=A2=91=E7=B9=81=E6=8F=90?= =?UTF-8?q?=E7=8E=B0=E9=99=90=E5=88=B6=EF=BC=8C=E7=94=A8=E6=88=B7=E9=9C=80?= =?UTF-8?q?=E7=AD=89=E5=BE=85=E4=B8=89=E5=88=86=E9=92=9F=E5=90=8E=E5=86=8D?= =?UTF-8?q?=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/WithdrawController.php | 41 ++++++++++++++--------- 1 file changed, 26 insertions(+), 15 deletions(-) diff --git a/app/controller/api/WithdrawController.php b/app/controller/api/WithdrawController.php index 5923b48..9aee095 100644 --- a/app/controller/api/WithdrawController.php +++ b/app/controller/api/WithdrawController.php @@ -31,7 +31,7 @@ class WithdrawController /** * 手续费 */ - protected static $handlingFee=0; + protected static $handlingFee = 0; /** * @Apidoc\Title("1.0 查询当前用户提现订单") * @Apidoc\Url("api/withdraw/withdrawCashList") @@ -115,9 +115,20 @@ class WithdrawController return ApiResponseApp::error(null, '每天只能提现三次'); } $user = User::find($user_id); - if($money_no>$user->money){ + if ($money_no > $user->money) { return ApiResponseApp::error(null, '提现积分不足'); - } + } + + // 获取当前时间的 3 分钟前 + $threeMinutesAgo = Carbon::now()->subMinutes(3); + + // 使用 exists() 查询,判断是否有记录 + if (Withdraw::where('user_id', $user_id) + ->where('created_at', '>=', $threeMinutesAgo) + ->exists() + ) { + return ApiResponseApp::error(null, '提现频繁请三分钟后再试'); + } //提现金额 $rate = ExchangeRate::where('type', 'BDT')->get(); $money = (int)$money_no / 100 * $rate[0]['points']; @@ -136,7 +147,7 @@ class WithdrawController UserRewardDao::base($user_id, 1, - ($money_no + self::$handlingFee), '提现'); return ApiResponseApp::success(null, '等待管理员审核'); } - + //用户积分减少$money UserRewardDao::base($user_id, 1, - ($money_no + self::$handlingFee), '提现'); $userbank = Userbank::where('id', $bank_id)->first(); @@ -153,36 +164,36 @@ class WithdrawController return ApiResponseApp::success(null, '转账成功'); } else { $errorMsg = ''; - if($res->ErrorMessage == "CheckIpAddressFailed"){ + if ($res->ErrorMessage == "CheckIpAddressFailed") { $errorMsg = 'IP 检查失败'; } - if($res->ErrorMessage == "CheckEncryptValueFailed "){ + if ($res->ErrorMessage == "CheckEncryptValueFailed ") { $errorMsg = '加密检查失败'; } - if($res->ErrorMessage == "PaymentChannelClosed"){ + if ($res->ErrorMessage == "PaymentChannelClosed") { $errorMsg = '平台休息中,暂不接单'; } - if($res->ErrorMessage == "InsufficientBalance"){ + if ($res->ErrorMessage == "InsufficientBalance") { $errorMsg = '余额不足'; } - if($res->ErrorMessage == "TryAgainLater"){ + if ($res->ErrorMessage == "TryAgainLater") { $errorMsg = '系统忙碌中,请稍后再试'; } - if($res->ErrorMessage == "DevError"){ + if ($res->ErrorMessage == "DevError") { $errorMsg = '程式错误,请联络开发人员'; } - if($res->ErrorMessage == "PayeeAccountNameFormatError"){ + if ($res->ErrorMessage == "PayeeAccountNameFormatError") { $errorMsg = '收款人帐号格式错误'; } - if($res->ErrorMessage == "PayeeAccountNumberFormatError"){ + if ($res->ErrorMessage == "PayeeAccountNumberFormatError") { $errorMsg = '收款人卡号格式错误'; } - if($errorMsg == ''){ + if ($errorMsg == '') { $errorMsg = '未知错误'; } $withdraw->update([ 'status' => 5, // - 'status_text' => trans('支付错误:').$res->ErrorMessage + 'status_text' => trans('支付错误:') . $res->ErrorMessage ]); UserRewardDao::base($user_id, 1, $money_no + self::$handlingFee, '提现失败返还'); // if ($res->ErrorMessage == "PayeeAccountNameFormatError") { @@ -210,7 +221,7 @@ class WithdrawController $withdraw = Withdraw::where('order_number', $orderId)->first(); //$failedMessage为null就是成功 if ($failedMessage != null) { - if($withdraw->status == 5){ + if ($withdraw->status == 5) { return; } $rate = ExchangeRate::where('type', 'BDT')->get();