CatchAdminService.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher;
  4. use catcher\event\LoadModuleRoutes;
  5. use think\exception\Handle;
  6. use think\facade\Validate;
  7. use think\Service;
  8. class CatchAdminService extends Service
  9. {
  10. /**
  11. *
  12. * @time 2019年11月29日
  13. * @return void
  14. */
  15. public function boot()
  16. {}
  17. /**
  18. * register
  19. *
  20. * @author JaguarJack
  21. * @email njphper@gmail.com
  22. * @time 2020/1/30
  23. * @return void
  24. */
  25. public function register()
  26. {
  27. $this->registerCommands();
  28. $this->registerValidates();
  29. $this->registerMiddleWares();
  30. $this->registerEvents();
  31. $this->registerQuery();
  32. $this->registerExceptionHandle();
  33. $this->registerRoutePath();
  34. $this->registerServices();
  35. }
  36. /**
  37. *
  38. * @time 2019年12月13日
  39. * @return void
  40. */
  41. protected function registerCommands(): void
  42. {
  43. if ($this->app->runningInConsole()) {
  44. $catchConsole = new CatchConsole($this->app);
  45. $this->app->bind('catch\console', $catchConsole);
  46. $this->commands($catchConsole->commands());
  47. }
  48. }
  49. /**
  50. *
  51. * @time 2019年12月07日
  52. * @return void
  53. */
  54. protected function registerValidates(): void
  55. {
  56. $validates = config('catch.validates');
  57. Validate::maker(function($validate) use ($validates) {
  58. foreach ($validates as $vali) {
  59. $vali = app()->make($vali);
  60. $validate->extend($vali->type(), [$vali, 'verify'], $vali->message());
  61. }
  62. });
  63. }
  64. /**
  65. *
  66. * @time 2019年12月12日
  67. * @return void
  68. */
  69. protected function registerMiddleWares(): void
  70. {
  71. // todo
  72. }
  73. /**
  74. * 注册监听者
  75. *
  76. * @time 2019年12月12日
  77. * @return void
  78. */
  79. protected function registerEvents(): void
  80. {
  81. $this->app->event->listenEvents([
  82. 'RouteLoaded' => [LoadModuleRoutes::class]
  83. ]);
  84. }
  85. /**
  86. * register query
  87. *
  88. * @time 2020年02月20日
  89. * @return void
  90. */
  91. protected function registerQuery(): void
  92. {
  93. $connections = $this->app->config->get('database.connections');
  94. $connections['mysql']['query'] = CatchQuery::class;
  95. $this->app->config->set([
  96. 'connections' => $connections
  97. ], 'database');
  98. }
  99. /**
  100. * register exception
  101. *
  102. * @time 2020年02月20日
  103. * @return void
  104. */
  105. protected function registerExceptionHandle(): void
  106. {
  107. $this->app->bind(Handle::class, CatchExceptionHandle::class);
  108. }
  109. /**
  110. * 注册模块服务
  111. *
  112. * @time 2020年06月23日
  113. * @return void
  114. */
  115. protected function registerServices()
  116. {
  117. $services = file_exists(CatchAdmin::getCacheServicesFile()) ?
  118. include CatchAdmin::getCacheServicesFile() :
  119. CatchAdmin::getEnabledService();
  120. foreach ($services as $service) {
  121. if (class_exists($service)) {
  122. $this->app->register($service);
  123. }
  124. }
  125. }
  126. /**
  127. * 注册路由地址
  128. *
  129. * @time 2020年06月23日
  130. * @return void
  131. */
  132. protected function registerRoutePath()
  133. {
  134. $this->app->instance('routePath', new class {
  135. protected $path = [];
  136. public function loadRouterFrom($path)
  137. {
  138. $this->path[] = $path;
  139. return $this;
  140. }
  141. public function get()
  142. {
  143. return $this->path;
  144. }
  145. });
  146. }
  147. }