2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Providers;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
use Illuminate\Cache\RateLimiting\Limit;
|
2015-07-12 15:01:42 -04:00
|
|
|
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
2021-10-30 16:29:59 -04:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\RateLimiter;
|
2021-09-26 10:37:55 -04:00
|
|
|
use Illuminate\Support\Facades\Route;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
class RouteServiceProvider extends ServiceProvider
|
|
|
|
{
|
2021-10-30 16:29:59 -04:00
|
|
|
/**
|
|
|
|
* The path to the "home" route for your application.
|
|
|
|
*
|
|
|
|
* This is used by Laravel authentication to redirect users after login.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public const HOME = '/';
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
|
|
|
* This namespace is applied to the controller routes in your routes file.
|
|
|
|
*
|
|
|
|
* In addition, it is set as the URL generator's root namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define your route model bindings, pattern filters, etc.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-09-17 13:22:04 -04:00
|
|
|
public function boot()
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2021-10-30 16:29:59 -04:00
|
|
|
$this->configureRateLimiting();
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
$this->routes(function () {
|
|
|
|
$this->mapWebRoutes();
|
|
|
|
$this->mapApiRoutes();
|
|
|
|
});
|
2016-09-17 13:22:04 -04:00
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2016-09-17 13:22:04 -04:00
|
|
|
/**
|
|
|
|
* Define the "web" routes for the application.
|
|
|
|
*
|
|
|
|
* These routes all receive session state, CSRF protection, etc.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function mapWebRoutes()
|
|
|
|
{
|
|
|
|
Route::group([
|
|
|
|
'middleware' => 'web',
|
2021-06-26 11:23:15 -04:00
|
|
|
'namespace' => $this->namespace,
|
2016-09-17 13:22:04 -04:00
|
|
|
], function ($router) {
|
|
|
|
require base_path('routes/web.php');
|
|
|
|
});
|
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2016-09-17 13:22:04 -04:00
|
|
|
/**
|
|
|
|
* Define the "api" routes for the application.
|
|
|
|
*
|
|
|
|
* These routes are typically stateless.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function mapApiRoutes()
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2016-09-17 13:22:04 -04:00
|
|
|
Route::group([
|
|
|
|
'middleware' => 'api',
|
2021-06-26 11:23:15 -04:00
|
|
|
'namespace' => $this->namespace . '\Api',
|
|
|
|
'prefix' => 'api',
|
2016-09-17 13:22:04 -04:00
|
|
|
], function ($router) {
|
|
|
|
require base_path('routes/api.php');
|
2015-07-12 15:01:42 -04:00
|
|
|
});
|
|
|
|
}
|
2021-10-30 16:29:59 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Configure the rate limiters for the application.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function configureRateLimiting()
|
|
|
|
{
|
|
|
|
RateLimiter::for('api', function (Request $request) {
|
|
|
|
return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
|
|
|
|
});
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|