tethys/app/Providers/RouteServiceProvider.php

113 lines
2.8 KiB
PHP
Raw Normal View History

<?php
2018-08-06 12:30:51 +00:00
namespace App\Providers;
use Illuminate\Support\Facades\Route;
2015-07-19 06:49:24 +00:00
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Support\Facades\RateLimiter;
2015-07-19 06:49:24 +00:00
2018-11-21 12:40:34 +00:00
class RouteServiceProvider extends ServiceProvider
2018-08-06 12:30:51 +00:00
{
2015-07-19 06:49:24 +00: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 = '/settings';
2018-11-21 12:40:34 +00:00
/**
* If specified, this namespace is automatically applied to your controller routes.
2018-11-21 12:40:34 +00:00
*
* In addition, it is set as the URL generator's root namespace.
*
* @var string
*/
protected $namespace = 'App\Http\Controllers';
2015-07-19 06:49:24 +00:00
2018-11-21 12:40:34 +00:00
/**
* Define your route model bindings, pattern filters, etc.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function boot()
{
// parent::boot();
$this->configureRateLimiting();
$this->routes(function () {
// Route::prefix('api')
Route::middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
2015-07-19 06:49:24 +00:00
2018-11-21 12:40:34 +00:00
//
}
2015-07-19 06:49:24 +00:00
2018-11-21 12:40:34 +00:00
/**
* Define the routes for the application.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function map()
{
2018-08-06 12:30:51 +00:00
//Route::group(['namespace' => $this->namespace], function()
//{
// require app_path('Http/routes.php');
2018-11-21 12:40:34 +00:00
//});
$this->mapApiRoutes();
2018-08-06 12:30:51 +00:00
$this->mapWebRoutes();
2018-11-21 12:40:34 +00:00
}
2018-08-06 12:30:51 +00:00
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @return void
*/
protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
2018-11-21 12:40:34 +00:00
}
/**
2018-08-06 12:30:51 +00:00
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
Route::middleware('api')
2019-02-12 11:21:35 +00:00
->namespace($this->namespace)
->group(base_path('routes/api.php'));
2018-08-06 12:30:51 +00: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-19 06:49:24 +00:00
}