更新配置加载方式、修改traits、修改装饰器模式实现的中间件的作用、新增Redis部分功能

This commit is contained in:
TOP糯米 2019-08-25 00:00:28 +08:00
parent 4a5bdaee26
commit 278843d6ba
41 changed files with 419 additions and 420 deletions

View File

@ -1,35 +1,9 @@
<?php <?php
return [ return [
'register' => [
// 'Twig' => \top\library\template\driver\Twig::class,
// 'Smarty' => \top\library\template\driver\Smarty::class,
'Top' => \top\library\template\driver\Top::class,
],
'middleware' => [],
'session' => [
'open' => true,
'prefix' => 'home',
],
'db' => [ 'db' => [
'driver' => 'MySQLi', 'port' => 3306
'host' => '127.0.0.1',
'user' => '',
'passwd' => '',
'dbname' => '',
'prefix' => '',
'charset' => 'utf8'
], ],
'view' => [ 'middleware' => [
'engine' => 'Top', \app\home\middleware\Test::class
'tagLib' => [
\app\home\taglib\Extend::class
],
'ext' => 'html',
'dir' => APP_PATH . 'home/view/',
'cacheDir' => './runtime/cache/application/home/',
'compileDir' => './runtime/compile/application/home/',
'left' => '<',
'right' => '>',
'cacheTime' => 5
], ],
]; ];

View File

@ -1,2 +0,0 @@
<?php
return [];

View File

@ -2,11 +2,10 @@
namespace app\home\controller; namespace app\home\controller;
use top\blocks\Json; use top\library\cache\Redis;
class Index extends Common class Index
{ {
use Json;
public function index() public function index()
{ {
@ -20,7 +19,7 @@ class Index extends Common
public function testPage() public function testPage()
{ {
// return $this->fetch(); // return $this->view();
return []; return [];
} }
} }

View File

@ -0,0 +1,19 @@
<?php
namespace app\home\middleware;
use top\middleware\ifs\MiddlewareIfs;
class Test implements MiddlewareIfs
{
public function before()
{
return true;
}
public function after($data)
{
}
}

View File

@ -5,7 +5,8 @@ namespace app\home\taglib;
class Extend class Extend
{ {
public $tags = [ public $tags = [
'say' => ['attr' => 'what', 'close' => 0] 'say' => ['attr' => 'what', 'close' => 0],
'lists' => ['attr' => 'name', 'close' => 1]
]; ];
public function _say($tag) public function _say($tag)
@ -13,4 +14,12 @@ class Extend
return '<?php echo \'' . $tag['what'] . '\'; ?>'; return '<?php echo \'' . $tag['what'] . '\'; ?>';
} }
public function _lists($tag, $content)
{
$parse = "<?php echo '{$tag['name']} start'; ?>";
$parse .= $content;
$parse .= "<?php echo '{$tag['name']} end'; ?>";
return $parse;
}
} }

View File

@ -2,8 +2,6 @@
<block name="body"> <block name="body">
BODY BODY
<assign name="b" value="1" />
{$b}
<raw> <raw>
<volist name="b" id="vo"> <volist name="b" id="vo">
<if condition="$a == 1"> <if condition="$a == 1">
@ -16,4 +14,14 @@
{:date('Y-m-d H:i:s', time())} {:date('Y-m-d H:i:s', time())}
<include file="Base/a" /> <include file="Base/a" />
<say what="你好" /> <say what="你好" />
cut
<lists name="one">
content
<lists name="two">
content
<lists name="three">
content
</lists>
</lists>
</lists>
</block> </block>

View File

@ -1,16 +1,17 @@
<?php <?php
// 自定义路由示例 // 自定义路由示例
return [ return [
'auth' => [ 'login' => [
null, null,
'home/auth/login' 'home/example/login'
], ],
'intention-detail' => [ 'example-detail' => [
'[id]', '[id]',
'home/intention/detail' 'home/example/detail'
], ],
'permission' => [ 'example' => [
'[:type]', '[:type]',
'home/permission/index' 'home/example/index'
], ],
]; ];

View File

@ -0,0 +1,40 @@
<?php
// 默认配置
return [
'register' => [
'Top' => \top\library\template\driver\Top::class,
],
'middleware' => [],
'session' => [
'open' => true,
'prefix' => '',
],
'db' => [
'driver' => 'MySQLi',
'host' => '127.0.0.1',
'user' => '',
'passwd' => '',
'dbname' => '',
'prefix' => '',
'charset' => 'utf8'
],
'redis' => [
'host' => '127.0.0.1',
'port' => 6379,
'auth' => '',
],
'view' => [
'engine' => 'Top',
'tagLib' => [
\app\home\taglib\Extend::class
],
'ext' => 'html',
'dir' => '',
'cacheDir' => '',
'compileDir' => '',
'left' => '<',
'right' => '>',
'cacheTime' => 5
],
];

View File

@ -55,7 +55,6 @@ class Create
{ {
$configPath = $this->projectPath . 'config/'; $configPath = $this->projectPath . 'config/';
$configFile = $configPath . 'config.php'; $configFile = $configPath . 'config.php';
$tagsFile = $configPath . 'tags.php';
if (!is_dir($configPath)) { if (!is_dir($configPath)) {
mkdir($configPath, 0777, true); mkdir($configPath, 0777, true);
} }
@ -67,12 +66,6 @@ class Create
exit('error -2'); exit('error -2');
} }
} }
if (!file_exists($tagsFile)) {
$content = file_get_contents($this->dir . 'tpl/config/tags.tpl');
if (!file_put_contents($configPath . 'tags.php', $content)) {
exit('error -3');
}
}
return true; return true;
} }
@ -130,7 +123,7 @@ class Create
{ {
$file = $this->projectPath . '../route.php'; $file = $this->projectPath . '../route.php';
if (!file_exists($file)) { if (!file_exists($file)) {
if (!file_put_contents($file, "<?php \r\nreturn [];")) { if (!file_put_contents($file, file_get_contents($this->dir . 'route.tpl'))) {
exit('-8'); exit('-8');
} }
} }

View File

@ -1,31 +1,4 @@
<?php <?php
return [ return [
'register' => [
'Twig' => \top\library\template\driver\Twig::class,
// 'Smarty' => \top\library\template\driver\Smarty::class,
// 'Top' => \top\library\template\driver\Top::class,
],
'decorator' => [],
'session' => [
'open' => true,
'prefix' => '{name}',
],
'db' => [
'driver' => 'MySQLi',
'host' => '',
'user' => '',
'passwd' => '',
'dbname' => '',
'charset' => 'utf8'
],
'view' => [
'engine' => 'Twig',
'ext' => 'html',
'dir' => '../application/{name}/view/',
'cacheDir' => './runtime/cache/application/{name}/',
'compileDir' => './runtime/compile/application/{name}/',
'left' => '{',
'right' => '}',
'cacheTime' => 5
],
]; ];

View File

@ -1,2 +0,0 @@
<?php
return [];

View File

@ -2,16 +2,15 @@
namespace app\{name}\controller; namespace app\{name}\controller;
use top\library\Controller; use top\library\Controller;
use app\{name}\model\Demo;
class Index extends Controller class Index extends Controller
{ {
public function index() public function index()
{ {
$model = new Demo(); $model = model(\app\{name}\model\Demo::class);
return [ return [
'data' => $model->get(1) 'hello' => $model->get()
]; ];
} }
} }

View File

@ -18,6 +18,10 @@ require '../framework/Framework.php';
// Framework::appNameSpace('app'); // Framework::appNameSpace('app');
// 可使用常量APP_NS取得该值 // 可使用常量APP_NS取得该值
// session保存目录缺省值./runtime/session/
// Framework::sessionPath('./runtime/session/');
// 可使用常量SESSION_PATH取得该值
// 框架目录缺省值Framework.php的绝对路径 // 框架目录缺省值Framework.php的绝对路径
// Framework::frameworkPath('../framework'); // Framework::frameworkPath('../framework');
// 可使用常量FRAMEWORK_PATH取得该值 // 可使用常量FRAMEWORK_PATH取得该值

View File

@ -10,8 +10,8 @@ class Demo extends Model
protected $pk = ''; protected $pk = '';
protected $map = []; protected $map = [];
public function get($id) public function get()
{ {
return $id; return 'Hello';
} }
} }

View File

@ -0,0 +1,17 @@
<?php
// 自定义路由示例
return [
'login' => [
null,
'home/example/login'
],
'example-detail' => [
'[id]',
'home/example/detail'
],
'example' => [
'[:type]',
'home/example/index'
],
];

View File

@ -1 +1,13 @@
{{ data }} <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
{$hello}
</body>
</html>

View File

@ -3,6 +3,7 @@
namespace top\library; namespace top\library;
use top\library\http\Request; use top\library\http\Request;
use top\traits\Instance;
/** /**
* 配置类 * 配置类
@ -11,28 +12,19 @@ use top\library\http\Request;
class Config class Config
{ {
use Instance;
// 已加载的文件 // 已加载的文件
private static $files; private static $files;
private static $instance;
// 保存配置的变量 // 保存配置的变量
private $config = []; private $config = [];
private function __construct() private function __construct()
{ {
} // 加载默认配置文件
$configFile = FRAMEWORK_PATH . 'config/config.php';
private function __clone() $this->config = require $configFile;
{
}
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
} }
/** /**
@ -59,14 +51,20 @@ class Config
*/ */
public function get($name = '') public function get($name = '')
{ {
// 加载文件 // 加载用户配置文件
$module = Request::instance()->module(); $module = Request::instance()->module();
$file = APP_PATH . $module . '/config/config.php'; $file = APP_PATH . $module . '/config/config.php';
if (!isset(self::$files[$file])) { if (!isset(self::$files[$file])) {
if (file_exists($file)) { if (file_exists($file)) {
$config = require $file; $config = require $file;
// 与原有的配置项合并 // 合并配置项
$this->config = array_merge($this->config, $config); foreach ($config as $key => $value) {
if (array_key_exists($key, $this->config)) {
$this->config[$key] = array_merge($this->config[$key], $config[$key]);
} else {
$this->config[$key] = $value;
}
}
self::$files[$file] = true; self::$files[$file] = true;
} }
} }

View File

@ -60,7 +60,7 @@ abstract class Controller
* @param bool $cache * @param bool $cache
* @return mixed * @return mixed
*/ */
protected function fetch($file = '', $param = [], $cache = false) protected function view($file = '', $param = [], $cache = false)
{ {
return Register::get('View')->fetch($file, $param, $cache); return Register::get('View')->fetch($file, $param, $cache);
} }
@ -89,7 +89,7 @@ abstract class Controller
$viewConfig = Register::get('Config')->get('view'); $viewConfig = Register::get('Config')->get('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 $this->fetch('tips', [ return $this->view('tips', [
'message' => $message, 'message' => $message,
'url' => $url, 'url' => $url,
'sec' => $sec 'sec' => $sec

View File

@ -52,8 +52,6 @@ class Database
// 关联 // 关联
private $on = []; private $on = [];
private $data = null;
/** /**
* Database constructor. * Database constructor.
* @param $table * @param $table
@ -68,10 +66,6 @@ class Database
$this->setDriver($driver, $this->config); $this->setDriver($driver, $this->config);
} }
private function __clone()
{
}
/** /**
* 指定数据库驱动 * 指定数据库驱动
* *
@ -425,4 +419,9 @@ class Database
} }
return $this->pk; return $this->pk;
} }
private function __clone()
{
}
} }

View File

@ -54,7 +54,16 @@ class Model
$table = get_table_name(get_called_class()); $table = get_table_name(get_called_class());
$this->table = $table; $this->table = $table;
} }
$this->db = Database::table($this->table, $this->pk); // $this->getDb() = Database::table($this->table, $this->pk);
}
/**
* 获取Database实例
* @return mixed
*/
private function getDb()
{
return Database::table($this->table, $this->pk);
} }
/** /**
@ -64,7 +73,7 @@ class Model
*/ */
public function effect($effect) public function effect($effect)
{ {
$this->db->effect($effect); $this->getDb()->effect($effect);
return $this; return $this;
} }
@ -75,7 +84,7 @@ class Model
*/ */
public function distinct($field) public function distinct($field)
{ {
$this->db->distinct($field); $this->getDb()->distinct($field);
return $this; return $this;
} }
@ -86,7 +95,7 @@ class Model
*/ */
public function field($field) public function field($field)
{ {
$this->db->field($field); $this->getDb()->field($field);
return $this; return $this;
} }
@ -97,7 +106,7 @@ class Model
public function where() public function where()
{ {
call_user_func_array([ call_user_func_array([
$this->db, $this->getDb(),
'where' 'where'
], func_get_args()); ], func_get_args());
return $this; return $this;
@ -110,7 +119,7 @@ class Model
public function order() public function order()
{ {
call_user_func_array([ call_user_func_array([
$this->db, $this->getDb(),
'order' 'order'
], func_get_args()); ], func_get_args());
return $this; return $this;
@ -123,7 +132,7 @@ class Model
public function limit() public function limit()
{ {
call_user_func_array([ call_user_func_array([
$this->db, $this->getDb(),
'limit' 'limit'
], func_get_args()); ], func_get_args());
return $this; return $this;
@ -138,7 +147,7 @@ class Model
*/ */
public function join($type, $table, $name) public function join($type, $table, $name)
{ {
$this->db->join($type, $table, $name); $this->getDb()->join($type, $table, $name);
return $this; return $this;
} }
@ -149,7 +158,7 @@ class Model
*/ */
public function on($on) public function on($on)
{ {
$this->db->on($on); $this->getDb()->on($on);
return $this; return $this;
} }
@ -166,7 +175,7 @@ class Model
// 此处取消了数据验证,在$this->>data()方法中验证,减少一次数据库查询 // 此处取消了数据验证,在$this->>data()方法中验证,减少一次数据库查询
// 入库时最后的数据处理 // 入库时最后的数据处理
$data = $this->inHandle($data); $data = $this->inHandle($data);
return $this->db->insert($data); return $this->getDb()->insert($data);
} }
return false; return false;
} }
@ -178,7 +187,7 @@ class Model
*/ */
public function delete($param = false) public function delete($param = false)
{ {
return $this->db->delete($param); return $this->getDb()->delete($param);
} }
/** /**
@ -195,7 +204,7 @@ class Model
// 此处取消了数据验证,在$this->data()方法中验证,减少一次数据库查询 // 此处取消了数据验证,在$this->data()方法中验证,减少一次数据库查询
// 入库时最后的数据处理 // 入库时最后的数据处理
$data = $this->inHandle($data); $data = $this->inHandle($data);
return $this->db->update($data, $param); return $this->getDb()->update($data, $param);
} }
return false; return false;
} }
@ -208,7 +217,7 @@ class Model
*/ */
public function find($param = false, $notRaw = true) public function find($param = false, $notRaw = true)
{ {
$result = $this->db->find($param); $result = $this->getDb()->find($param);
if ($notRaw) { if ($notRaw) {
if (is_array($result)) { if (is_array($result)) {
$result = $this->outHandle($result); $result = $this->outHandle($result);
@ -225,7 +234,7 @@ class Model
*/ */
public function select($param = false, $notRaw = true) public function select($param = false, $notRaw = true)
{ {
$result = $this->db->select($param); $result = $this->getDb()->select($param);
if ($notRaw) { if ($notRaw) {
if (is_array($result)) { if (is_array($result)) {
$result = $this->outHandle($result); $result = $this->outHandle($result);
@ -241,7 +250,7 @@ class Model
*/ */
public function count($param = '') public function count($param = '')
{ {
return $this->db->common($param, 'count'); return $this->getDb()->common($param, 'count');
} }
/** /**
@ -251,7 +260,7 @@ class Model
*/ */
public function avg($param = '') public function avg($param = '')
{ {
return $this->db->common($param, 'avg'); return $this->getDb()->common($param, 'avg');
} }
/** /**
@ -261,7 +270,7 @@ class Model
*/ */
public function max($param = '') public function max($param = '')
{ {
return $this->db->common($param, 'max'); return $this->getDb()->common($param, 'max');
} }
/** /**
@ -271,7 +280,7 @@ class Model
*/ */
public function min($param = '') public function min($param = '')
{ {
return $this->db->common($param, 'min'); return $this->getDb()->common($param, 'min');
} }
/** /**
@ -281,7 +290,7 @@ class Model
*/ */
public function sum($param = '') public function sum($param = '')
{ {
return $this->db->common($param, 'sum'); return $this->getDb()->common($param, 'sum');
} }
/** /**
@ -291,7 +300,7 @@ class Model
*/ */
public function query($query) public function query($query)
{ {
return $this->db->query($query); return $this->getDb()->query($query);
} }
/** /**
@ -301,7 +310,7 @@ class Model
*/ */
public function _sql() public function _sql()
{ {
return $this->db->_sql(); return $this->getDb()->_sql();
} }
/** /**
@ -513,7 +522,7 @@ class Model
*/ */
public function tableDesc($table) public function tableDesc($table)
{ {
return $this->db->tableDesc($table); return $this->getDb()->tableDesc($table);
} }
/** /**

View File

@ -3,6 +3,7 @@
namespace top\library; namespace top\library;
use top\library\template\ifs\TemplateIfs; use top\library\template\ifs\TemplateIfs;
use top\traits\Instance;
/** /**
* 模板类 * 模板类
@ -11,12 +12,11 @@ use top\library\template\ifs\TemplateIfs;
class Template class Template
{ {
use Instance;
// 操作的具体实现 // 操作的具体实现
private $template; private $template;
// 当前类的实例
private static $instance;
private $param = []; private $param = [];
/** /**
@ -27,23 +27,6 @@ class Template
$this->template = $template->run(); $this->template = $template->run();
} }
private function __clone()
{
}
/**
* 获取实例
* @param TemplateIfs $template
* @return \top\library\Template
*/
public static function instance($template)
{
if (!self::$instance) {
self::$instance = new self($template);
}
return self::$instance;
}
/** /**
* 是否开启页面静态缓存 * 是否开启页面静态缓存
* @param $status * @param $status

View File

@ -2,6 +2,8 @@
namespace top\library; namespace top\library;
use top\traits\Instance;
/** /**
* 基础视图类 * 基础视图类
* @author topnuomi 2018年11月22日 * @author topnuomi 2018年11月22日
@ -9,7 +11,7 @@ namespace top\library;
class View class View
{ {
private static $instance; use Instance;
// 用户的配置 // 用户的配置
private $config = []; private $config = [];
@ -17,19 +19,6 @@ class View
// 视图类实例 // 视图类实例
private $template; private $template;
/**
* 获取实例
* @return View
* @throws \Exception
*/
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
/** /**
* View constructor. * View constructor.
* @throws \Exception * @throws \Exception
@ -41,10 +30,6 @@ class View
$this->template = Template::instance($driver); $this->template = Template::instance($driver);
} }
private function __clone()
{
}
/** /**
* 传递参数 * 传递参数
* @param $name * @param $name

View File

@ -3,35 +3,21 @@
namespace top\library\cache; namespace top\library\cache;
use top\library\cache\ifs\CacheIfs; use top\library\cache\ifs\CacheIfs;
use top\traits\Instance;
class File implements CacheIfs class File implements CacheIfs
{ {
private static $instance; use Instance;
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
private function __construct()
{
}
private function __clone()
{
}
/** /**
* 设置缓存 * 设置缓存
* @param string $name * @param string $name
* @param string $value * @param string $value
* @param bool $timeout
* @return bool * @return bool
*/ */
public function set($name = '', $value = '') public function set($name = '', $value = '', $timeout = 0)
{ {
// TODO Auto-generated method stub // TODO Auto-generated method stub
$dirArray = explode('/', $name); $dirArray = explode('/', $name);
@ -58,7 +44,7 @@ class File implements CacheIfs
* 删除缓存 * 删除缓存
* @param string $name * @param string $name
*/ */
public function _unset($name = '') public function remove($name = '')
{ {
} }

77
framework/library/cache/Redis.php vendored Normal file
View File

@ -0,0 +1,77 @@
<?php
namespace top\library\cache;
use top\library\cache\ifs\CacheIfs;
use top\library\Config;
use top\traits\Instance;
class Redis implements CacheIfs
{
use Instance;
private $config = [];
private $redis = null;
private function __construct()
{
$config = Config::instance()->get('redis');
$this->redis = new \Redis();
$this->redis->connect($config['host'], $config['port']);
if ($config['auth']) {
$this->redis->auth($config['auth']);
}
}
/**
* 设置缓存
* @param string $name
* @param string $value
* @return bool
*/
public function set($name = '', $value = '', $timeout = 0)
{
if (is_array($value) || is_object($value)) {
$value = json_encode($value);
}
return $this->redis->set($name, $value, $timeout);
}
/**
* 获取缓存的值
* @param string $name
* @return bool|mixed|string
*/
public function get($name = '')
{
$value = $this->redis->get($name);
$jsonDecode = json_decode($value);
if (is_null($jsonDecode)) {
return $value;
} else {
return $jsonDecode;
}
}
/**
* 删除缓存
* @param string $name
* @return int
*/
public function remove($name = '')
{
return $this->redis->del($name);
}
/**
* 判断缓存是否设置
* @param $name
* @return bool
*/
public function exists($name)
{
return $this->redis->exists($name);
}
}

View File

@ -5,9 +5,9 @@ namespace top\library\cache\ifs;
interface CacheIfs interface CacheIfs
{ {
public function set($name = '', $value = ''); public function set($name = '', $value = '', $timeout = 0);
public function get($name = ''); public function get($name = '');
public function _unset($name = ''); public function remove($name = '');
} }

View File

@ -4,36 +4,21 @@ namespace top\library\database\driver;
use top\library\database\ifs\DatabaseIfs; use top\library\database\ifs\DatabaseIfs;
use top\library\exception\DatabaseException; use top\library\exception\DatabaseException;
use top\traits\Instance;
/** /**
* Mysqli数据库驱动 * MySQLi数据库驱动
* @author topnuomi 2018年11月20日 * @author topnuomi 2018年11月20日
*/ */
class MySQLi implements DatabaseIfs class MySQLi implements DatabaseIfs
{ {
private static $instance; use Instance;
private $link; private $link;
private $sql; private $sql;
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
private function __construct()
{
}
private function __clone()
{
}
/** /**
* 连接数据库 * 连接数据库
* @param array $config * @param array $config

View File

@ -9,6 +9,7 @@ use top\library\route\driver\Command;
use top\library\route\driver\Pathinfo; use top\library\route\driver\Pathinfo;
use top\library\Router; use top\library\Router;
use top\middleware\View; use top\middleware\View;
use top\traits\Instance;
/** /**
* 请求类 * 请求类
@ -17,11 +18,7 @@ use top\middleware\View;
class Request class Request
{ {
/** use Instance;
* 当前实例
* @var null
*/
private static $instance = null;
/** /**
* 保存$_SERVER变量 * 保存$_SERVER变量
@ -71,26 +68,11 @@ class Request
*/ */
private $except = []; private $except = [];
/**
* @return null|Request
*/
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
private function __construct() private function __construct()
{ {
$this->server = (!empty($_SERVER)) ? $_SERVER : []; $this->server = (!empty($_SERVER)) ? $_SERVER : [];
} }
private function __clone()
{
}
/** /**
* 当前请求方式 * 当前请求方式
* @return mixed|string * @return mixed|string
@ -334,8 +316,13 @@ class Request
private function beforeRoute() private function beforeRoute()
{ {
foreach ($this->middleware as $middleware) { foreach ($this->middleware as $middleware) {
$middleware->before(); $returnData = $middleware->before();
if ($returnData !== true) {
return $returnData;
}
unset($returnData);
} }
return true;
} }
/** /**
@ -386,6 +373,15 @@ class Request
// 实例化路由,并执行对应方法 // 实例化路由,并执行对应方法
$routeDriver = $this->routeDriver($type); $routeDriver = $this->routeDriver($type);
$this->router = (new Router($routeDriver, $defaultModule))->handler(); $this->router = (new Router($routeDriver, $defaultModule))->handler();
$userMiddleware = Register::get('Config')->get('middleware');
$systemMiddleware = [Init::class, View::class];
$middleware = array_merge($systemMiddleware, $userMiddleware);
foreach ($middleware as $key => $value) {
$this->middleware(new $value());
}
$data = $this->runAction(); $data = $this->runAction();
return $data; return $data;
} }
@ -397,47 +393,43 @@ class Request
*/ */
private function runAction() private function runAction()
{ {
$userMiddleware = Register::get('Config')->get('middleware'); $middlewareData = $this->beforeRoute();
$systemMiddleware = [Init::class, View::class];
$middleware = array_merge($systemMiddleware, $userMiddleware); if ($middlewareData === true) {
foreach ($middleware as $key => $value) { $ctrl = $this->router->class;
$this->middleware(new $value()); $method = $this->router->method;
} $params = $this->router->params;
$this->beforeRoute(); $data = null;
$object = new $ctrl();
$ctrl = $this->router->class; $reflectionClass = new \ReflectionClass($ctrl);
$method = $this->router->method; if ($reflectionClass->hasMethod('_init')) {
$params = $this->router->params; $data = $object->_init();
$data = null;
$object = new $ctrl();
$reflectionClass = new \ReflectionClass($ctrl);
if ($reflectionClass->hasMethod('_init')) {
$data = $object->_init();
}
if ($data === null || $data === '') {
// 前置方法
$beforeReturnData = null;
$beforeMethod = 'before_' . $method;
if ($reflectionClass->hasMethod($beforeMethod)) {
$beforeReturnData = $object->{$beforeMethod}();
} }
if ($beforeReturnData === null || $beforeReturnData === '') { if ($data === null || $data === '') {
$reflectionMethod = new \ReflectionMethod($ctrl, $method); // 前置方法
$data = $reflectionMethod->invokeArgs($object, $params); $beforeReturnData = null;
$beforeMethod = 'before_' . $method;
// 后置方法 if ($reflectionClass->hasMethod($beforeMethod)) {
$afterMethod = 'after_' . $method; $beforeReturnData = $object->{$beforeMethod}();
if ($reflectionClass->hasMethod($afterMethod)) { }
$object->{$afterMethod}();
if ($beforeReturnData === null || $beforeReturnData === '') {
$reflectionMethod = new \ReflectionMethod($ctrl, $method);
$data = $reflectionMethod->invokeArgs($object, $params);
// 后置方法
$afterMethod = 'after_' . $method;
if ($reflectionClass->hasMethod($afterMethod)) {
$object->{$afterMethod}();
}
} else {
$data = $beforeReturnData;
} }
} else {
$data = $beforeReturnData;
} }
} else {
$data = $middlewareData;
} }
$this->afterRoute($data); $this->afterRoute($data);

View File

@ -3,6 +3,7 @@
namespace top\library\http; namespace top\library\http;
use top\library\http\response\ResponseData; use top\library\http\response\ResponseData;
use top\traits\Instance;
/** /**
* 响应类 * 响应类
@ -12,11 +13,7 @@ use top\library\http\response\ResponseData;
class Response class Response
{ {
/** use Instance;
* 当前类实例
* @var null
*/
private static $instance = null;
/** /**
* 响应内容 * 响应内容
@ -30,26 +27,6 @@ class Response
*/ */
private $header = []; private $header = [];
private function __construct()
{
}
private function __clone()
{
}
/**
* 获取当前类单例
* @return null|Response
*/
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
/** /**
* 设置Header * 设置Header
* @param array $header * @param array $header

View File

@ -2,8 +2,8 @@
namespace top\library\http\response; namespace top\library\http\response;
use top\blocks\Json;
use top\library\Register; use top\library\Register;
use top\traits\Json;
/** /**
* 处理响应数据 * 处理响应数据

View File

@ -4,38 +4,27 @@ namespace top\library\template\driver;
use top\library\Register; use top\library\Register;
use top\library\template\ifs\TemplateIfs; use top\library\template\ifs\TemplateIfs;
use top\traits\Instance;
class Smarty implements TemplateIfs class Smarty implements TemplateIfs
{ {
private static $instance; use Instance;
private $config = []; private $config = [];
private $smarty; private $smarty;
private function __construct()
{
}
private function __clone()
{
}
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
public function run() public function run()
{ {
$this->config = Register::get('Config')->get('view'); $this->config = Register::get('Config')->get('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();
(isset($this->config['cacheDir'])) && $this->smarty->setCacheDir($this->config['cacheDir']); $this->smarty->setCacheDir($this->config['cacheDir']);
(isset($this->config['compileDir'])) && $this->smarty->setCompileDir($this->config['compileDir']); $this->smarty->setCompileDir($this->config['compileDir']);
return $this; return $this;
} }
@ -51,7 +40,7 @@ class Smarty implements TemplateIfs
foreach ($params as $k => $v) { foreach ($params as $k => $v) {
$this->smarty->assign($k, $v); $this->smarty->assign($k, $v);
} }
$templateFile = $this->config['dir'] . $file . '.' . $this->config['ext']; $templateFile = $this->config['dir'] . $file . '.' . ltrim($this->config['ext'], '.');
return $this->smarty->fetch($templateFile); return $this->smarty->fetch($templateFile);
} }
} }

View File

@ -5,14 +5,12 @@ namespace top\library\template\driver;
use top\library\Register; use top\library\Register;
use top\library\template\driver\tags\Engine; use top\library\template\driver\tags\Engine;
use top\library\template\ifs\TemplateIfs; use top\library\template\ifs\TemplateIfs;
use top\traits\Instance;
class Top implements TemplateIfs class Top implements TemplateIfs
{ {
/** use Instance;
* @var null 当前实例
*/
private static $instance = null;
/** /**
* @var null 模板引擎实现 * @var null 模板引擎实现
@ -29,30 +27,14 @@ class Top implements TemplateIfs
*/ */
private $cache = false; private $cache = false;
/**
* 构造方法
* Top constructor.
*/
private function __construct()
{
}
/**
* 外部获取当前类实例
* @return null|Top
*/
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
public function run() public function run()
{ {
$this->engine = Engine::instance();
$this->config = Register::get('Config')->get('view'); $this->config = Register::get('Config')->get('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);
return $this; return $this;
} }
@ -98,7 +80,6 @@ class Top implements TemplateIfs
*/ */
private function cacheFile($filename, $params) private function cacheFile($filename, $params)
{ {
if (isset($_SERVER['REQUEST_URI'])) { if (isset($_SERVER['REQUEST_URI'])) {
$fileIdent = md5($_SERVER['REQUEST_URI']); $fileIdent = md5($_SERVER['REQUEST_URI']);
} else { } else {

View File

@ -4,35 +4,24 @@ namespace top\library\template\driver;
use top\library\Register; use top\library\Register;
use top\library\template\ifs\TemplateIfs; use top\library\template\ifs\TemplateIfs;
use top\traits\Instance;
use Twig\Environment; use Twig\Environment;
use Twig\Loader\FilesystemLoader; use Twig\Loader\FilesystemLoader;
class Twig implements TemplateIfs class Twig implements TemplateIfs
{ {
private static $instance; use Instance;
private $config = []; private $config = [];
private function __construct()
{
}
private function __clone()
{
}
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
public function run() public function run()
{ {
$this->config = Register::get('Config')->get('view'); $this->config = Register::get('Config')->get('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;
} }
@ -51,7 +40,7 @@ class Twig implements TemplateIfs
'auto_reload' => true, 'auto_reload' => true,
'debug' => DEBUG 'debug' => DEBUG
]); ]);
$templateFile = '@base/' . $file . '.' . $this->config['ext']; $templateFile = '@base/' . $file . '.' . ltrim($this->config['ext'], '.');
return $template->render($templateFile, $params); return $template->render($templateFile, $params);
} }
} }

View File

@ -3,6 +3,7 @@
namespace top\library\template\driver\tags; namespace top\library\template\driver\tags;
use top\library\Register; use top\library\Register;
use top\traits\Instance;
/** /**
* 模板标签库(支持模板继承) * 模板标签库(支持模板继承)
@ -11,10 +12,8 @@ use top\library\Register;
*/ */
class Engine class Engine
{ {
/**
* @var null 单一实例 use Instance;
*/
private static $instance = null;
/** /**
* @var string 左定界符 * @var string 左定界符
@ -60,11 +59,11 @@ class Engine
/** /**
* 构造方法 * 构造方法
* Engine constructor. * Engine constructor.
* @throws \Exception * @param array $config
*/ */
private function __construct() private function __construct($config = [])
{ {
$this->config = Register::get('Config')->get('view'); $this->config = $config;
if (isset($this->config['left']) && $this->config['left']) { if (isset($this->config['left']) && $this->config['left']) {
$this->left = $this->config['left']; $this->left = $this->config['left'];
} }
@ -73,18 +72,6 @@ class Engine
} }
} }
/**
* 获取类单一实例
* @return null|Engine
*/
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
/** /**
* 处理模板继承 * 处理模板继承
* @param $template * @param $template
@ -98,7 +85,7 @@ class Engine
$blockPattern = '/' . $this->left . 'block.*?name=[\'"](.*?)[\'"]' . $this->right; $blockPattern = '/' . $this->left . 'block.*?name=[\'"](.*?)[\'"]' . $this->right;
$blockPattern .= '([\s\S]*?)' . $this->left . '\/block' . $this->right . '/is'; $blockPattern .= '([\s\S]*?)' . $this->left . '\/block' . $this->right . '/is';
// 获得被继承的模板内容 // 获得被继承的模板内容
$file = $this->config['dir'] . $matches[1] . '.html'; $file = $this->config['dir'] . $matches[1] . '.' . ltrim($this->config['ext'], '.');
$extendFileContent = null; $extendFileContent = null;
if (file_exists($file)) { if (file_exists($file)) {
$extendFileContent = file_get_contents($file); $extendFileContent = file_get_contents($file);
@ -148,7 +135,7 @@ class Engine
$pattern = '/' . $this->left . 'include.*?file=[\'"](.*?)[\'"].*?\/' . $this->right . '/is'; $pattern = '/' . $this->left . 'include.*?file=[\'"](.*?)[\'"].*?\/' . $this->right . '/is';
$template = preg_replace_callback($pattern, function ($result) { $template = preg_replace_callback($pattern, function ($result) {
$string = null; $string = null;
$file = $this->config['dir'] . $result[1] . '.html'; $file = $this->config['dir'] . $result[1] . '.' . ltrim($this->config['ext'], '.');
if (file_exists($file)) { if (file_exists($file)) {
$string = file_get_contents($file); $string = file_get_contents($file);
} }
@ -363,8 +350,8 @@ class Engine
$this->left, $this->right, $this->left, $this->right,
'{', '}' '{', '}'
], [ ], [
'<RAW!--', '--RAW>', '<!RAW--', '--RAW>',
'<RAW!--', '--RAW>' '<!PARAM--', '--PARAM>'
], $matches[1]); ], $matches[1]);
}, $template); }, $template);
return $template; return $template;
@ -378,8 +365,8 @@ class Engine
public function returnRaw($template) public function returnRaw($template)
{ {
$template = str_replace([ $template = str_replace([
'<RAW!--', '--RAW>', '<!RAW--', '--RAW>',
'<RAW!--', '--RAW>' '<!PARAM--', '--PARAM>'
], [ ], [
$this->left, $this->right, $this->left, $this->right,
'{', '}' '{', '}'
@ -443,6 +430,12 @@ class Engine
return $parse; return $parse;
} }
private function _assign($tag)
{
$parse = '<?php $' . $tag['name'] . ' = ' . (is_numeric($tag['value']) ? $tag['value'] : '\'' . $tag['value'] . '\'') . '; ?>';
return $parse;
}
/** /**
* 获取编译后的内容 * 获取编译后的内容
* @param $template * @param $template

View File

@ -21,6 +21,15 @@ class Init implements MiddlewareIfs
*/ */
public function before() public function before()
{ {
// 加载系统函数库
require FRAMEWORK_PATH . 'library/functions/functions.php';
// 加载用户函数库
$funcFile = APP_PATH . request()->module() . '/functions.php';
if (file_exists($funcFile)) {
require $funcFile;
}
$sessionConfig = Register::get('Config')->get('session'); $sessionConfig = Register::get('Config')->get('session');
if (!empty($sessionConfig) && $sessionConfig['open'] === true) { if (!empty($sessionConfig) && $sessionConfig['open'] === true) {
session_save_path(SESSION_PATH); session_save_path(SESSION_PATH);
@ -55,14 +64,7 @@ class Init implements MiddlewareIfs
return View::instance(); return View::instance();
}); });
// 加载系统函数库 return true;
require FRAMEWORK_PATH . 'library/functions/functions.php';
// 加载用户函数库
$funcFile = APP_PATH . request()->module() . '/functions.php';
if (file_exists($funcFile)) {
require $funcFile;
}
} }
/** /**

View File

@ -22,10 +22,10 @@ class View implements MiddlewareIfs
$filename = $config['cacheDir'] . $fileIdent; $filename = $config['cacheDir'] . $fileIdent;
$cache = Register::get('FileCache'); $cache = Register::get('FileCache');
if ($cache->check($filename, $config['cacheTime'])) { if ($cache->check($filename, $config['cacheTime'])) {
echo Response::instance()->dispatch(file_get_contents($filename)); return Response::instance()->dispatch(file_get_contents($filename));
exit;
} }
} }
return true;
} }
public function after($data) public function after($data)

View File

@ -0,0 +1,27 @@
<?php
namespace top\traits;
trait Instance
{
private static $instance;
public static function instance($param = null)
{
if (!self::$instance) {
self::$instance = new self($param);
}
return self::$instance;
}
private function __construct()
{
}
private function __clone()
{
// TODO: Implement __clone() method.
}
}

View File

@ -1,6 +1,6 @@
<?php <?php
namespace top\blocks; namespace top\traits;
trait Json { trait Json {

View File

@ -7,7 +7,7 @@ require '../framework/Framework.php';
// 可能你会使用到下面这些配置 // 可能你会使用到下面这些配置
// 调试模式缺省值false // 调试模式缺省值false
// Framework::debug(true); Framework::debug(true);
// 可使用常量DEBUG取得该值 // 可使用常量DEBUG取得该值
// 项目目录,缺省值:./application/ // 项目目录,缺省值:./application/

View File

@ -1,24 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
父级模板
BODY
1
<volist name="b" id="vo">
<if condition="$a == 1">
{$a}
<else condition="$a == 2" />
{$b}
</if>
</volist>
2019-07-28 16:22:50 a.html
b.html
你好
</body>
</html>

View File

@ -8,7 +8,6 @@
父级模板 父级模板
BODY BODY
<?php $b = 1; echo ($b); ?>
<volist name="b" id="vo"> <volist name="b" id="vo">
<if condition="$a == 1"> <if condition="$a == 1">
@ -22,6 +21,14 @@
a.html a.html
b.html b.html
<?php echo '你好'; ?> <?php echo '你好'; ?>
cut
<?php echo 'one start'; ?>
content
<?php echo 'two start'; ?>
content
<?php echo 'three start'; ?>
content
<?php echo 'three end'; echo 'two end'; echo 'one end'; ?>
</body> </body>
</html> </html>