RouteServiceProvider.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Cache\RateLimiting\Limit;
  4. use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
  5. use Illuminate\Http\Request;
  6. use Illuminate\Support\Facades\RateLimiter;
  7. use Illuminate\Support\Facades\Route;
  8. class RouteServiceProvider extends ServiceProvider
  9. {
  10. /**
  11. * The path to the "home" route for your application.
  12. *
  13. * This is used by Laravel authentication to redirect users after login.
  14. *
  15. * @var string
  16. */
  17. public const HOME = '/home';
  18. /**
  19. * The controller namespace for the application.
  20. *
  21. * When present, controller route declarations will automatically be prefixed with this namespace.
  22. *
  23. * @var string|null
  24. */
  25. // protected $namespace = 'App\\Http\\Controllers';
  26. /**
  27. * Define your route model bindings, pattern filters, etc.
  28. *
  29. * @return void
  30. */
  31. public function boot()
  32. {
  33. // $this->configureRateLimiting();
  34. //后台接口路由
  35. $this->mapAdminApiRoutes();
  36. //前台接口路由
  37. $this->mapApiRoutes();
  38. $this->routes(function () {
  39. Route::middleware('web')
  40. ->namespace($this->namespace)
  41. ->group(base_path('routes/web.php'));
  42. });
  43. }
  44. /**
  45. * Configure the rate limiters for the application.
  46. *
  47. * @return void
  48. */
  49. protected function configureRateLimiting()
  50. {
  51. RateLimiter::for('api', function (Request $request) {
  52. return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
  53. });
  54. }
  55. /**
  56. * 总后台API路由
  57. */
  58. protected function mapAdminApiRoutes(){
  59. foreach ( glob(base_path('routes'.DIRECTORY_SEPARATOR.'adminApi'.DIRECTORY_SEPARATOR).'*.php' ) as $fileName ) {
  60. $fileName = basename( $fileName );
  61. $prefix = substr( $fileName,0,strrpos($fileName,'.') );
  62. $nameSpace = ucfirst($prefix);
  63. //中间件过滤加载
  64. Route::middleware('adminApi_verify')
  65. ->namespace( $this->namespace."\\AdminApi" )
  66. ->group( base_path('routes'.DIRECTORY_SEPARATOR.'adminApi'.DIRECTORY_SEPARATOR."{$fileName}") );
  67. }
  68. }
  69. /**
  70. * Define the "api" routes for the application.
  71. *
  72. * These routes are typically stateless.
  73. *
  74. * @return void
  75. */
  76. protected function mapApiRoutes()
  77. {
  78. Route::prefix('api')
  79. ->middleware('api')
  80. ->namespace($this->namespace)
  81. ->group(base_path('routes/api.php'));
  82. foreach ( glob(base_path('routes'.DIRECTORY_SEPARATOR.'api'.DIRECTORY_SEPARATOR).'*.php' ) as $fileName ) {
  83. $fileName = basename( $fileName );
  84. Route::middleware('api_verify')
  85. ->namespace( $this->namespace."\\Api" )
  86. ->prefix('api')
  87. ->group( base_path('routes'.DIRECTORY_SEPARATOR.'api'.DIRECTORY_SEPARATOR."{$fileName}") );
  88. }
  89. }
  90. }