blessing-skin-server/app/Providers/RouteServiceProvider.php

97 lines
2.5 KiB
PHP
Raw Normal View History

2016-08-28 10:05:21 +08:00
<?php
namespace App\Providers;
2019-04-23 10:05:58 +08:00
use Route;
use Illuminate\Support\Str;
2016-08-28 10:05:21 +08:00
use Illuminate\Routing\Router;
2019-04-25 23:24:24 +08:00
use Laravel\Passport\Passport;
2016-10-29 18:54:10 +08:00
use App\Events\ConfigureRoutes;
2016-08-28 10:05:21 +08:00
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';
/**
* Define the routes for the application.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function map(Router $router)
{
2016-10-03 21:44:26 +08:00
$this->mapStaticRoutes($router);
2016-08-28 10:05:21 +08:00
$this->mapWebRoutes($router);
2019-04-23 10:05:58 +08:00
$this->mapApiRoutes();
Passport::routes();
foreach ($router->getRoutes()->getRoutesByName() as $name => $route) {
if (Str::startsWith($name, ['passport.authorizations', 'passport.tokens', 'passport.clients'])) {
$route->middleware('verified');
}
}
2019-04-25 23:24:24 +08:00
2016-10-29 18:54:10 +08:00
event(new ConfigureRoutes($router));
2016-08-28 10:05:21 +08:00
}
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
protected function mapWebRoutes(Router $router)
{
$router->group([
2019-04-25 13:01:39 +08:00
'middleware' => ['web'],
2016-10-03 21:44:26 +08:00
'namespace' => $this->namespace,
], function ($router) {
2017-06-27 19:48:18 +08:00
require base_path('routes/web.php');
2016-10-03 21:44:26 +08:00
});
}
2016-11-18 16:59:05 +08:00
/**
* Define the "static" routes for the application.
2016-10-03 21:44:26 +08:00
*
2016-11-18 16:59:05 +08:00
* These routes will not load session, etc.
2016-10-03 21:44:26 +08:00
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
protected function mapStaticRoutes(Router $router)
{
2019-04-25 13:01:39 +08:00
$router->group(['namespace' => $this->namespace], function ($router) {
2017-06-27 19:48:18 +08:00
require base_path('routes/static.php');
2016-08-28 10:05:21 +08:00
});
}
2019-04-23 10:05:58 +08:00
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
Route::prefix('api')
2019-04-27 13:09:10 +08:00
->middleware(
config('app.env') == 'testing' ? ['api'] : ['api', 'throttle:60,1']
)
2019-04-23 10:05:58 +08:00
->namespace($this->namespace)
->group(base_path('routes/api.php'));
}
2016-08-28 10:05:21 +08:00
}