174 lines
4.0 KiB
PHP
174 lines
4.0 KiB
PHP
<?php
|
|
namespace catcher;
|
|
|
|
use catcher\command\install\DisableModuleCommand;
|
|
use catcher\command\install\EnableModuleCommand;
|
|
use catcher\command\install\ModuleServiceDiscoverCommand;
|
|
use catcher\command\publish\WechatCommand;
|
|
use catcher\command\Tools\BackupCommand;
|
|
use catcher\command\Tools\CacheTrieCommand;
|
|
use catcher\command\Tools\CompressPackageCommand;
|
|
use catcher\command\CreateModuleCommand;
|
|
use catcher\command\install\InstallProjectCommand;
|
|
use catcher\command\MigrateCreateCommand;
|
|
use catcher\command\MigrateRollbackCommand;
|
|
use catcher\command\MigrateRunCommand;
|
|
use catcher\command\ModelGeneratorCommand;
|
|
use catcher\command\ModuleCacheCommand;
|
|
use catcher\command\SeedRunCommand;
|
|
use catcher\command\Tools\ExportDataCommand;
|
|
use catcher\command\Tools\MakeMenuCommand;
|
|
use catcher\command\worker\ExcelTaskCommand;
|
|
use catcher\command\worker\WsWorkerCommand;
|
|
use catcher\event\LoadModuleRoutes;
|
|
use think\exception\Handle;
|
|
use think\facade\Validate;
|
|
use think\Service;
|
|
|
|
class CatchAdminService extends Service
|
|
{
|
|
/**
|
|
*
|
|
* @time 2019年11月29日
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{}
|
|
|
|
/**
|
|
* register
|
|
*
|
|
* @author JaguarJack
|
|
* @email njphper@gmail.com
|
|
* @time 2020/1/30
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->registerCommands();
|
|
$this->registerValidates();
|
|
$this->registerMiddleWares();
|
|
$this->registerEvents();
|
|
$this->registerQuery();
|
|
$this->registerExceptionHandle();
|
|
$this->registerRoutePath();
|
|
$this->registerServices();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @time 2019年12月13日
|
|
* @return void
|
|
*/
|
|
protected function registerCommands(): void
|
|
{
|
|
$this->commands((new CatchConsole($this->app))->commands());
|
|
}
|
|
/**
|
|
*
|
|
* @time 2019年12月07日
|
|
* @return void
|
|
*/
|
|
protected function registerValidates(): void
|
|
{
|
|
$validates = config('catch.validates');
|
|
|
|
Validate::maker(function($validate) use ($validates) {
|
|
foreach ($validates as $vali) {
|
|
$vali = app()->make($vali);
|
|
$validate->extend($vali->type(), [$vali, 'verify'], $vali->message());
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @time 2019年12月12日
|
|
* @return void
|
|
*/
|
|
protected function registerMiddleWares(): void
|
|
{
|
|
// todo
|
|
}
|
|
|
|
/**
|
|
* 注册监听者
|
|
*
|
|
* @time 2019年12月12日
|
|
* @return void
|
|
*/
|
|
protected function registerEvents(): void
|
|
{
|
|
$this->app->event->listenEvents([
|
|
'RouteLoaded' => [LoadModuleRoutes::class]
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* register query
|
|
*
|
|
* @time 2020年02月20日
|
|
* @return void
|
|
*/
|
|
protected function registerQuery(): void
|
|
{
|
|
$connections = $this->app->config->get('database.connections');
|
|
|
|
$connections['mysql']['query'] = CatchQuery::class;
|
|
|
|
$this->app->config->set([
|
|
'connections' => $connections
|
|
], 'database');
|
|
}
|
|
|
|
/**
|
|
* register exception
|
|
*
|
|
* @time 2020年02月20日
|
|
* @return void
|
|
*/
|
|
protected function registerExceptionHandle(): void
|
|
{
|
|
$this->app->bind(Handle::class, CatchExceptionHandle::class);
|
|
}
|
|
|
|
/**
|
|
* 注册模块服务
|
|
*
|
|
* @time 2020年06月23日
|
|
* @return void
|
|
*/
|
|
protected function registerServices()
|
|
{
|
|
$services = CatchAdmin::getEnabledService();
|
|
|
|
foreach ($services as $service) {
|
|
if (class_exists($service)) {
|
|
$this->app->register($service);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 注册路由地址
|
|
*
|
|
* @time 2020年06月23日
|
|
* @return void
|
|
*/
|
|
protected function registerRoutePath()
|
|
{
|
|
$this->app->instance('routePath', new class {
|
|
protected $path = [];
|
|
public function loadRouterFrom($path)
|
|
{
|
|
$this->path[] = $path;
|
|
return $this;
|
|
}
|
|
public function get()
|
|
{
|
|
return $this->path;
|
|
}
|
|
});
|
|
}
|
|
}
|