ManagementSystem/BACKEND/app/Providers/RouteServiceProvider.php

83 lines
1.9 KiB
PHP
Executable File

<?php
namespace App\Providers;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
/**
* The path to your application's "home" route.
*
* Typically, users are redirected here after authentication.
*
* @var string
*/
public const HOME = '/';
/**
* Define your route model bindings, pattern filters, and other route configuration.
*/
public function boot(): void
{
$this->configureRateLimiting();
}
/**
* Define the routes for the application.
*/
public function map(): void
{
$this->mapWebRoutes();
$this->mapApiRoutes();
$this->mapClientRoutes();
}
/**
* Define the "api" routes for the application.
*
*/
protected function mapWebRoutes(): void
{
Route::middleware('web')
->group(base_path('routes/web.php'));
}
/**
* Define the "api" routes for the application.
*
*/
protected function mapApiRoutes(): void
{
Route::middleware('api')
->prefix('api')
->group(base_path('routes/api.php'));
}
/**
* Define the "client" routes for the application.
*
*/
protected function mapClientRoutes(): void
{
Route::middleware('web')
->group(base_path('routes/client_view.php'));
}
/**
* Configure the rate limiters for the application.
*
* @return void
*/
protected function configureRateLimiting()
{
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip());
});
}
}