2026-08-04 21:40:49 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
2026-08-09 20:59:00 +07:00
|
|
|
use Illuminate\Cache\RateLimiting\Limit;
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
use Illuminate\Support\Facades\RateLimiter;
|
2026-08-04 21:40:49 +07:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Register any application services.
|
|
|
|
|
*/
|
|
|
|
|
public function register(): void
|
|
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Bootstrap any application services.
|
|
|
|
|
*/
|
|
|
|
|
public function boot(): void
|
|
|
|
|
{
|
2026-08-09 20:59:00 +07:00
|
|
|
$this->configureRateLimiting();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Named api/* rate limiters (T6.1, domain.md §8) — read-only catalog/
|
|
|
|
|
* routing endpoints get a looser limit than the write-heavy booking/
|
|
|
|
|
* payment endpoints; auth/token issuance and the inbound KBZ webhook
|
|
|
|
|
* each get their own tighter limiter.
|
|
|
|
|
*/
|
|
|
|
|
private function configureRateLimiting(): void
|
|
|
|
|
{
|
|
|
|
|
RateLimiter::for('api-read', function (Request $request) {
|
|
|
|
|
return Limit::perMinute(120)->by($request->user()?->id ?: $request->ip());
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
RateLimiter::for('api-write', function (Request $request) {
|
|
|
|
|
return Limit::perMinute(20)->by($request->user()?->id ?: $request->ip());
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
RateLimiter::for('api-auth', function (Request $request) {
|
|
|
|
|
return Limit::perMinute(10)->by($request->ip());
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
RateLimiter::for('api-webhooks', function (Request $request) {
|
|
|
|
|
return Limit::perMinute(30)->by($request->ip());
|
|
|
|
|
});
|
2026-08-04 21:40:49 +07:00
|
|
|
}
|
|
|
|
|
}
|