clrghouz/app/Providers/RouteServiceProvider.php

64 lines
1.6 KiB
PHP
Raw Normal View History

2018-11-15 10:45:49 +00:00
<?php
namespace App\Providers;
2021-05-03 12:53:40 +00:00
use Illuminate\Cache\RateLimiting\Limit;
2018-11-15 10:45:49 +00:00
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
2021-05-03 12:53:40 +00:00
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
2018-11-15 10:45:49 +00:00
class RouteServiceProvider extends ServiceProvider
{
/**
2021-05-03 12:53:40 +00:00
* The path to the "home" route for your application.
2018-11-15 10:45:49 +00:00
*
2021-05-03 12:53:40 +00:00
* This is used by Laravel authentication to redirect users after login.
2018-11-15 10:45:49 +00:00
*
* @var string
*/
2021-06-13 03:56:27 +00:00
public const HOME = '/';
2018-11-15 10:45:49 +00:00
/**
2021-05-03 12:53:40 +00:00
* The controller namespace for the application.
2018-11-15 10:45:49 +00:00
*
2021-05-03 12:53:40 +00:00
* When present, controller route declarations will automatically be prefixed with this namespace.
2018-11-15 10:45:49 +00:00
*
2021-05-03 12:53:40 +00:00
* @var string|null
2018-11-15 10:45:49 +00:00
*/
2021-05-03 12:53:40 +00:00
// protected $namespace = 'App\\Http\\Controllers';
2018-11-15 10:45:49 +00:00
/**
2021-05-03 12:53:40 +00:00
* Define your route model bindings, pattern filters, etc.
2018-11-15 10:45:49 +00:00
*
* @return void
*/
2021-05-03 12:53:40 +00:00
public function boot()
2018-11-15 10:45:49 +00:00
{
2021-05-03 12:53:40 +00:00
$this->configureRateLimiting();
$this->routes(function () {
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
2018-11-15 10:45:49 +00:00
}
/**
2021-05-03 12:53:40 +00:00
* Configure the rate limiters for the application.
2018-11-15 10:45:49 +00:00
*
* @return void
*/
2021-05-03 12:53:40 +00:00
protected function configureRateLimiting()
2018-11-15 10:45:49 +00:00
{
2021-05-03 12:53:40 +00:00
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
});
2018-11-15 10:45:49 +00:00
}
}