phpldapadmin/app/Providers/RouteServiceProvider.php

53 lines
1.3 KiB
PHP
Raw Normal View History

2019-05-14 07:52:49 +00:00
<?php
namespace App\Providers;
use Illuminate\Cache\RateLimiting\Limit;
2019-05-14 07:52:49 +00:00
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
2020-08-23 01:37:08 +00:00
use Illuminate\Support\Facades\Route;
2019-05-14 07:52:49 +00:00
class RouteServiceProvider extends ServiceProvider
{
2020-08-23 01:37:08 +00:00
/**
* The path to the "home" route for your application.
*
2023-01-27 10:35:00 +00:00
* Typically, users are redirected here after authentication.
*
2020-08-23 01:37:08 +00:00
* @var string
*/
public const HOME = '/';
2020-08-23 01:37:08 +00:00
2019-05-14 07:52:49 +00:00
/**
2023-01-27 10:35:00 +00:00
* Define your route model bindings, pattern filters, and other route configuration.
2019-05-14 07:52:49 +00:00
*
* @return void
*/
public function boot()
2019-05-14 07:52:49 +00:00
{
$this->configureRateLimiting();
$this->routes(function () {
2023-01-27 10:35:00 +00:00
Route::middleware('api')
->prefix('api')
->group(base_path('routes/api.php'));
Route::middleware('web')
->group(base_path('routes/web.php'));
});
2019-05-14 07:52:49 +00:00
}
/**
* Configure the rate limiters for the application.
2019-05-14 07:52:49 +00:00
*
* @return void
*/
protected function configureRateLimiting()
2019-05-14 07:52:49 +00:00
{
RateLimiter::for('api', function (Request $request) {
2023-01-27 10:35:00 +00:00
return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip());
});
2019-05-14 07:52:49 +00:00
}
}