v2board/app/Providers/RouteServiceProvider.php

81 lines
1.8 KiB
PHP
Raw Normal View History

2019-10-29 15:33:36 +08:00
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
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
*/
public function boot()
{
//
2022-05-09 23:46:33 +08:00
if (config('v2board.force_https')) {
resolve(\Illuminate\Routing\UrlGenerator::class)->forceScheme('https');
}
2019-10-29 15:33:36 +08:00
parent::boot();
}
/**
* Define the routes for the application.
*
* @return void
*/
public function map()
{
$this->mapApiRoutes();
$this->mapWebRoutes();
//
}
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @return void
*/
protected function mapWebRoutes()
{
Route::middleware('web')
2020-01-11 13:36:52 +08:00
->namespace($this->namespace)
->group(base_path('routes/web.php'));
2019-10-29 15:33:36 +08:00
}
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
2020-02-01 20:51:45 +08:00
Route::group([
2020-02-01 20:58:36 +08:00
'prefix' => '/api/v1',
2020-02-01 20:51:45 +08:00
'middleware' => 'api',
'namespace' => $this->namespace
], function ($router) {
foreach (glob(app_path('Http//Routes') . '/*.php') as $file) {
2023-06-12 02:32:49 +08:00
$this->app->make('App\\Http\\Routes\\V1\\' . basename($file, '.php'))->map($router);
2020-02-01 20:51:45 +08:00
}
});
2019-10-29 15:33:36 +08:00
}
}