修改部分注释

This commit is contained in:
TOP糯米 2020-06-13 20:59:08 +08:00
parent 24907af8e3
commit 4a246c738a
13 changed files with 93 additions and 96 deletions

View File

@ -1,15 +1,13 @@
<?php <?php
// 默认配置 // 默认配置
return [ return [
'default_controller' => 'Index', 'default_controller' => 'Index',
'default_method' => 'index', 'default_method' => 'index',
'compel_route' => false, 'compel_route' => false,
'complete_parameter' => true, 'complete_parameter' => true,
'error_pages' => [ 'error_pages' => [
404 => '.' . DS . '404.html', 404 => './404.html',
],
'register' => [
'Top' => \top\library\template\driver\Top::class,
], ],
'middleware' => [ 'middleware' => [
\top\middleware\Action::class, \top\middleware\Action::class,
@ -38,9 +36,9 @@ return [
'engine' => 'Top', 'engine' => 'Top',
'tagLib' => [], 'tagLib' => [],
'ext' => 'html', 'ext' => 'html',
'dir' => '', 'dir' => APP_PATH . BIND_MODULE . '/view/',
'cacheDir' => '', 'cacheDir' => './runtime/cache/application/' . BIND_MODULE . '/',
'compileDir' => '', 'compileDir' => './runtime/compile/application/' . BIND_MODULE . '/',
'left' => '<', 'left' => '<',
'right' => '>', 'right' => '>',
'cacheTime' => 5 'cacheTime' => 5

View File

@ -33,7 +33,7 @@ class JWT
public function __construct() public function __construct()
{ {
$this->config = Config::instance()->get('jwt'); $this->config = \config('jwt');
if (isset($this->config['key'])) { if (isset($this->config['key'])) {
$this->key = $this->config['key']; $this->key = $this->config['key'];
} else { } else {

View File

@ -6,6 +6,7 @@ use top\library\error\BaseError;
use top\library\exception\BaseException; use top\library\exception\BaseException;
use top\library\http\Request; use top\library\http\Request;
use top\library\http\Response; use top\library\http\Response;
use top\library\template\driver\Top;
/** /**
* Class Application * Class Application
@ -62,22 +63,12 @@ class Application
(is_file($funcFile)) && require $funcFile; (is_file($funcFile)) && require $funcFile;
// session目录 // session目录
$sessionConfig = Config::instance()->get('session'); $sessionConfig = config('session');
if (!empty($sessionConfig) && $sessionConfig['open'] === true) { if (!empty($sessionConfig) && $sessionConfig['open'] === true) {
session_save_path(SESSION_PATH); session_save_path(SESSION_PATH);
session_start(); session_start();
} }
// 配置文件中注册的类
$initRegister = Config::instance()->get('register');
if (!empty($initRegister)) {
foreach ($initRegister as $key => $value) {
Register::set($key, function () use ($value) {
return $value::instance();
});
}
}
// 初始化路由实例 // 初始化路由实例
$router = Router::instance(Request::instance()); $router = Router::instance(Request::instance());
@ -128,47 +119,85 @@ class Application
/** /**
* 获取一个类实例 * 获取一个类实例
* @param $className * @param $className
* @param $parameters
* @return mixed * @return mixed
* @throws \ReflectionException * @throws \ReflectionException
*/ */
public static function getInstance($className) public static function getInstance($className, $parameters = [])
{ {
$classRef = self::getReflectionClass($className); $reflectionClass = self::getReflectionClass($className);
$isInstantiable = $classRef->isInstantiable(); $isInstantiable = $reflectionClass->isInstantiable();
if (!$isInstantiable) { // 不可被实例化 // 获取构造方法(__construct或instance)
if ($classRef->hasMethod('instance')) { if (!$isInstantiable) {
$instance = $classRef->getMethod('instance'); if ($reflectionClass->hasMethod('instance')) {
$constructor = $reflectionClass->getMethod('instance');
} else throw new \Exception('不可实例化的类:' . $className); } else throw new \Exception('不可实例化的类:' . $className);
} else { } else {
$instance = $classRef->getConstructor(); $constructor = $reflectionClass->getConstructor();
} }
// 没有构造方法或者构造方法没有参数则直接返回实例
if (!is_null($instance)) { if (!is_null($constructor)) {
$instanceParams = $instance->getParameters(); $constructorParameters = $constructor->getParameters();
if (empty($instanceParams)) { // 构造函数没有参数直接返回当前类实例 if (empty($constructorParameters)) {
if (!$isInstantiable) return $className::instance(); if (!$isInstantiable) return $className::instance();
return new $className; return new $className;
} }
} else { // 没有构造方法直接返回实例 } else {
if (!$isInstantiable) return $className::instance(); if (!$isInstantiable) return $className::instance();
return new $className; return new $className;
} }
$actualParameters = [];
// 构造函数存在参数则去递归实例化类 foreach ($constructorParameters as $constructorParameter) {
$actualParams = []; $actualClass = $constructorParameter->getClass();
foreach ($instanceParams as $param) { // 参数是一个类实例则递归获取实例,不是类实例则检查是否有默认值或用户传入参数
$actualClass = $param->getClass(); if (!is_null($actualClass)) {
if (!is_null($actualClass)) { // 参数是一个类 $actualParameters[$constructorParameter->name] = Application::getInstance($actualClass->name);
$actualParams[$param->name] = self::getInstance($actualClass->name); } else {
try {
$value = isset($parameters[$constructorParameter->name])
? $parameters[$constructorParameter->name]
: $constructorParameter->getDefaultValue();
} catch (\ReflectionException $exception) {
$value = null;
}
$actualParameters[$constructorParameter->name] = $value;
} }
} }
if ($isInstantiable) { if ($isInstantiable) {
return $classRef->newInstanceArgs($actualParams); return $reflectionClass->newInstanceArgs($actualParameters);
} else { } else {
$reflectionMethod = new \ReflectionMethod($className, 'instance'); $reflectionMethod = Application::getReflectionMethod($className, 'instance');
return $reflectionMethod->invokeArgs(null, $actualParams); return $reflectionMethod->invokeArgs(null, $actualParameters);
} }
} }
/**
* 调用一个类方法
* @param $className
* @param $method
* @param array $parameters
* @return mixed
*/
public static function callMethod($className, $method, $parameters = [])
{
$instance = Application::getInstance($className);
$reflectionMethod = Application::getReflectionMethod($className, $method);
$invokeParams = [];
foreach ($reflectionMethod->getParameters() as $parameter) {
$className = $parameter->getClass();
if (!is_null($className)) {
$invokeParams[$parameter->name] = Application::getInstance($className->name);
} else {
if (isset($parameters[$parameter->name])) {
$invokeParams[$parameter->name] = $parameters[$parameter->name];
} else {
$invokeParams[$parameter->name] = null;
}
}
}
// 返回执行结果
return $reflectionMethod->invokeArgs($instance, $invokeParams);
}
} }

View File

@ -123,10 +123,10 @@ abstract class Controller
*/ */
protected function tips($message, $url = '', $sec = 3) protected function tips($message, $url = '', $sec = 3)
{ {
if (request()->isAjax()) { if (request()->is('ajax')) {
return $this->json($message, '', 'tips', ['url' => $url, 'sec' => $sec]); return $this->json($message, '', 'tips', ['url' => $url, 'sec' => $sec]);
} else { } else {
$viewConfig = Config::instance()->get('view'); $viewConfig = config('view');
$tipsTemplate = $viewConfig['dir'] . 'tips.' . $viewConfig['ext']; $tipsTemplate = $viewConfig['dir'] . 'tips.' . $viewConfig['ext'];
(!file_exists($tipsTemplate)) && file_put_contents($tipsTemplate, ''); (!file_exists($tipsTemplate)) && file_put_contents($tipsTemplate, '');
return view('tips', [ return view('tips', [

View File

@ -94,7 +94,7 @@ class Database
private function __construct($table, $pk, $prefix) private function __construct($table, $pk, $prefix)
{ {
// 获取配置 // 获取配置
$this->config = Config::instance()->get('db'); $this->config = config('db');
// 当前操作表名 // 当前操作表名
$this->table = $this->getTableName($prefix, $table); $this->table = $this->getTableName($prefix, $table);
// 当前操作表主键 // 当前操作表主键

View File

@ -24,7 +24,7 @@ class Router
/** /**
* 请求类 * 请求类
* @var null * @var Request
*/ */
private $request = null; private $request = null;
@ -248,28 +248,10 @@ class Router
} else throw $exception; } else throw $exception;
} }
// 将执行应用打包为一个$application // 路由中间件处理
$application = function () { return $this->middleware(function () {
// 执行控制器方法 return Application::callMethod($this->controllerFullName, $this->method, $this->params);
$object = Application::getInstance($this->controllerFullName); });
$reflectionMethod = Application::getReflectionMethod($this->controllerFullName, $this->method);
$invokeParams = [];
foreach ($reflectionMethod->getParameters() as $parameter) {
$className = $parameter->getClass();
if (!is_null($className)) {
$invokeParams[$parameter->name] = Application::getInstance($className->name);
} else {
if (isset($this->params[$parameter->name])) {
$invokeParams[$parameter->name] = $this->params[$parameter->name];
}
}
}
return $reflectionMethod->invokeArgs($object, $invokeParams);
};
// 路由中间件处理application
return $this->middleware($application);
} }
/** /**

View File

@ -25,9 +25,12 @@ class View
*/ */
private function __construct() private function __construct()
{ {
$this->config = Config::instance()->get('view'); $this->config = config('view');
$driver = Register::get($this->config['engine']); $className = '\\top\\library\\template\\driver\\' . $this->config['engine'];
$this->template = Template::instance($driver); if (!class_exists($className)) {
throw new Exception('不存在的模板引擎:' . $className);
}
$this->template = Template::instance($className::instance());
} }
/** /**

View File

@ -34,7 +34,7 @@ class Redis implements CacheIfs
*/ */
private function __construct() private function __construct()
{ {
$config = Config::instance()->get('redis'); $config = \config('redis');
$this->redis = new \Redis(); $this->redis = new \Redis();
try { try {
$this->redis->connect($config['host'], $config['port']); $this->redis->connect($config['host'], $config['port']);

View File

@ -4,12 +4,13 @@
* 获取/设置配置 * 获取/设置配置
* @param $key * @param $key
* @param string $value * @param string $value
* @return mixed * @return array|bool|mixed
*/ */
function config($key, $value = '__NULL__VALUE__') function config($key, $value = '__NULL__VALUE__')
{ {
if ($value != '__NULL__VALUE__') { if ($value != '__NULL__VALUE__') {
return \top\library\Config::instance()->set($key, $value); \top\library\Config::instance()->set($key, $value);
return true;
} else { } else {
return \top\library\Config::instance()->get($key); return \top\library\Config::instance()->get($key);
} }
@ -17,7 +18,7 @@ function config($key, $value = '__NULL__VALUE__')
/** /**
* 请求类 * 请求类
* @return \top\traits\Instance * @return \top\library\http\Request
*/ */
function request() function request()
{ {
@ -26,7 +27,7 @@ function request()
/** /**
* 响应类 * 响应类
* @return \top\traits\Instance * @return \top\library\http\Response
*/ */
function response() function response()
{ {
@ -168,7 +169,7 @@ function redirect($url)
*/ */
function session($name, $value = '') function session($name, $value = '')
{ {
$config = \top\library\Config::instance()->get('session'); $config = config('session');
if (empty($config) || !$config['prefix']) { if (empty($config) || !$config['prefix']) {
$prefix = request()->module(); $prefix = request()->module();
} else { } else {

View File

@ -2,7 +2,6 @@
namespace top\library\template\driver; namespace top\library\template\driver;
use top\library\Config;
use top\library\template\ifs\TemplateIfs; use top\library\template\ifs\TemplateIfs;
use top\traits\Instance; use top\traits\Instance;
@ -17,11 +16,7 @@ class Smarty implements TemplateIfs
public function run() public function run()
{ {
$this->config = Config::instance()->get('view'); $this->config = \config('view');
$module = request()->module();
(!$this->config['dir']) && $this->config['dir'] = APP_PATH . 'home/view/';
(!$this->config['cacheDir']) && $this->config['cacheDir'] = './runtime/cache/application/' . $module . '/';
(!$this->config['compileDir']) && $this->config['compileDir'] = './runtime/compile/application/' . $module . '/';
$this->smarty = new \Smarty(); $this->smarty = new \Smarty();
$this->smarty->setCacheDir($this->config['cacheDir']); $this->smarty->setCacheDir($this->config['cacheDir']);
$this->smarty->setCompileDir($this->config['compileDir']); $this->smarty->setCompileDir($this->config['compileDir']);

View File

@ -3,7 +3,6 @@
namespace top\library\template\driver; namespace top\library\template\driver;
use top\library\cache\driver\File; use top\library\cache\driver\File;
use top\library\Config;
use top\library\template\driver\engine\Engine; use top\library\template\driver\engine\Engine;
use top\library\template\ifs\TemplateIfs; use top\library\template\ifs\TemplateIfs;
use top\traits\Instance; use top\traits\Instance;
@ -30,11 +29,7 @@ class Top implements TemplateIfs
public function run() public function run()
{ {
$this->config = Config::instance()->get('view'); $this->config = \config('view');
$module = request()->module();
(!$this->config['dir']) && $this->config['dir'] = APP_PATH . $module . '/view/';
(!$this->config['cacheDir']) && $this->config['cacheDir'] = './runtime/cache/application/' . $module . '/';
(!$this->config['compileDir']) && $this->config['compileDir'] = './runtime/compile/application/' . $module . '/';
$this->engine = Engine::instance($this->config); $this->engine = Engine::instance($this->config);
return $this; return $this;
} }

View File

@ -2,7 +2,6 @@
namespace top\library\template\driver; namespace top\library\template\driver;
use top\library\Config;
use top\library\template\ifs\TemplateIfs; use top\library\template\ifs\TemplateIfs;
use top\traits\Instance; use top\traits\Instance;
use Twig\Environment; use Twig\Environment;
@ -17,11 +16,7 @@ class Twig implements TemplateIfs
public function run() public function run()
{ {
$this->config = Config::instance()->get('view'); $this->config = \config('view');
$module = request()->module();
(!$this->config['dir']) && $this->config['dir'] = APP_PATH . 'home/view/';
(!$this->config['cacheDir']) && $this->config['cacheDir'] = './runtime/cache/application/' . $module . '/';
(!$this->config['compileDir']) && $this->config['compileDir'] = './runtime/compile/application/' . $module . '/';
return $this; return $this;
} }

View File

@ -3,7 +3,6 @@
namespace top\middleware; namespace top\middleware;
use top\library\cache\driver\File; use top\library\cache\driver\File;
use top\library\Config;
use top\library\http\Request; use top\library\http\Request;
use top\library\http\Response; use top\library\http\Response;
use top\middleware\ifs\MiddlewareIfs; use top\middleware\ifs\MiddlewareIfs;
@ -21,7 +20,7 @@ class View implements MiddlewareIfs
// 非调试模式则直接返回静态缓存 // 非调试模式则直接返回静态缓存
if (!DEBUG) { if (!DEBUG) {
$ident = view_cache_ident(); $ident = view_cache_ident();
$config = Config::instance()->get('view'); $config = \config('view');
(!$config['cacheDir']) && $config['cacheDir'] = './runtime/cache/application/' . request()->module() . '/'; (!$config['cacheDir']) && $config['cacheDir'] = './runtime/cache/application/' . request()->module() . '/';
$cache = File::instance($config['cacheDir']); $cache = File::instance($config['cacheDir']);
if ($cache->exists($ident)) return Response::instance()->send($cache->get($ident)); if ($cache->exists($ident)) return Response::instance()->send($cache->get($ident));