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

119 lines
2.8 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;
2016-08-28 10:05:21 +08:00
use Illuminate\Routing\Router;
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 your route model bindings, pattern filters, etc.
*
* @return void
*/
2018-07-11 16:09:54 +08:00
public function boot()
2016-08-28 10:05:21 +08:00
{
2018-07-11 16:09:54 +08:00
parent::boot();
2016-08-28 10:05:21 +08:00
}
/**
* Define the routes for the application.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function map(Router $router)
{
2016-11-18 16:59:05 +08:00
$this->mapSetupRoutes($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();
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([
2018-08-20 23:09:26 +08:00
'middleware' => ['web', 'csrf'],
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 "setup" routes for the application.
*
* The routes for setup wizard.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
protected function mapSetupRoutes(Router $router)
{
$router->group([
'middleware' => 'web',
'namespace' => $this->namespace,
], function ($router) {
2017-06-27 19:48:18 +08:00
require base_path('routes/setup.php');
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)
{
$router->group([
'middleware' => 'static',
'namespace' => $this->namespace,
2016-08-28 10:05:21 +08:00
], 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')
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
}
2016-08-28 10:05:21 +08:00
}