Files
ploi-core/app/Providers/RouteServiceProvider.php
2020-10-20 12:03:44 +02:00

70 lines
1.8 KiB
PHP

<?php
namespace App\Providers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to your controller routes.
*
* In addition, it is set as the URL generator's root namespace.
*
* @var string
*/
protected $namespace = 'App\Http\Controllers';
/**
* The path to the "home" route for your application.
*
* @var string
*/
public const HOME = '/';
/**
* Define your route model bindings, pattern filters, etc.
*
* @return void
*/
public function boot()
{
$this->configureRateLimiting();
$this->routes(function () {
if (setting('enable_api')) {
Route::prefix('api')
->middleware('api')
->namespace($this->namespace . '\Api')
->group(base_path('routes/api.php'));
}
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
Route::middleware(['web', 'auth', 'role:admin'])
->prefix('admin')
->as('admin.')
->namespace($this->namespace . '\\Admin')
->group(base_path('routes/admin.php'));
});
}
/**
* Configure the rate limiters for the application.
*
* @return void
*/
protected function configureRateLimiting()
{
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(60);
});
}
}