feat: 在提现逻辑中添加频繁提现限制,用户需等待三分钟后再试

This commit is contained in:
lingling 2025-03-09 15:08:44 +08:00
parent 6ae1f5603a
commit d136ca240f
1 changed files with 26 additions and 15 deletions

View File

@ -118,6 +118,17 @@ class WithdrawController
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'];