feat: 在提现逻辑中添加频繁提现限制,用户需等待三分钟后再试
This commit is contained in:
parent
6ae1f5603a
commit
d136ca240f
|
@ -118,6 +118,17 @@ class WithdrawController
|
||||||
if ($money_no > $user->money) {
|
if ($money_no > $user->money) {
|
||||||
return ApiResponseApp::error(null, '提现积分不足');
|
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();
|
$rate = ExchangeRate::where('type', 'BDT')->get();
|
||||||
$money = (int)$money_no / 100 * $rate[0]['points'];
|
$money = (int)$money_no / 100 * $rate[0]['points'];
|
||||||
|
|
Loading…
Reference in New Issue