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

90 lines
2.2 KiB
PHP
Raw Normal View History

2016-08-28 10:05:21 +08:00
<?php
namespace App\Providers;
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;
2019-12-14 11:10:37 +08:00
use Illuminate\Routing\Router;
use Illuminate\Support\Str;
use Laravel\Passport\Passport;
use Route;
2016-08-28 10:05:21 +08:00
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.
*
* @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.
*
* @return void
*/
protected function mapWebRoutes(Router $router)
{
2019-12-20 22:58:04 +08:00
Route::middleware(['web'])
->namespace($this->namespace)
->group(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
*
* @return void
*/
protected function mapStaticRoutes(Router $router)
{
2019-12-20 22:58:04 +08:00
Route::namespace($this->namespace)
->group(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-12-20 22:58:04 +08:00
->middleware(
config('app.env') == 'testing' ? ['api'] : ['api', 'throttle:60,1']
)
->namespace($this->namespace)
->group(base_path('routes/api.php'));
2019-04-23 10:05:58 +08:00
}
2016-08-28 10:05:21 +08:00
}