ModuleService.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher;
  13. use think\Service;
  14. abstract class ModuleService extends Service
  15. {
  16. abstract public function loadRouteFrom();
  17. /**
  18. * 注册
  19. *
  20. * @time 2020年07月02日
  21. * @return void
  22. */
  23. public function register()
  24. {
  25. $this->app->make('routePath')->loadRouterFrom($this->loadRouteFrom());
  26. $this->registerEvents();
  27. $this->registerCommands();
  28. $this->registerConfig();
  29. }
  30. /**
  31. * 事件注册
  32. *
  33. * @time 2020年06月24日
  34. * @return void
  35. */
  36. protected function registerEvents()
  37. {
  38. if (method_exists($this, 'loadEvents')) {
  39. $this->app->event->listenEvents($this->loadEvents());
  40. }
  41. }
  42. /**
  43. * register config
  44. *
  45. * @time 2020年09月25日
  46. * @return void
  47. */
  48. protected function registerConfig()
  49. {
  50. if (method_exists($this, 'loadConfig')) {
  51. $this->app->config->set(array_merge($this->app->config->get('catch'), $this->loadConfig()), 'catch');
  52. }
  53. }
  54. /**
  55. * 注册commands
  56. *
  57. * @time 2020年07月02日
  58. * @return void
  59. */
  60. protected function registerCommands()
  61. {
  62. if (method_exists($this,'loadCommands') && $this->app->runningInConsole()) {
  63. list($namespace, $path) = $this->loadCommands();
  64. if ($this->app->has('catch\console')) {
  65. $catchConsole = $this->app['catch\console'];
  66. $this->commands($catchConsole->setNamespace($namespace)
  67. ->path($path)
  68. ->commands());
  69. }
  70. }
  71. }
  72. }