LoadModuleRoutes.php 871 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. declare (strict_types = 1);
  3. namespace catcher\event;
  4. use think\App;
  5. use think\Route;
  6. class LoadModuleRoutes
  7. {
  8. /**
  9. * 处理
  10. *
  11. * @time 2019年11月29日
  12. * @return void
  13. */
  14. public function handle(): void
  15. {
  16. $router = app(Route::class);
  17. $domain = config('catch.domain');
  18. $paths = app(App::class)->make('routePath')->get();
  19. // $routeMiddleware = config('catch.route_middleware');
  20. if ($domain) {
  21. $router->domain($domain, function () use ($router, $paths) {
  22. foreach ($paths as $path) {
  23. include $path;
  24. }
  25. });
  26. } else {
  27. $router->group(function () use ($router, $paths) {
  28. foreach ($paths as $path) {
  29. include $path;
  30. }
  31. });
  32. }
  33. }
  34. }