遵循PSR-4自动加载规范
This commit is contained in:
parent
04107a40c5
commit
3db0e05509
|
@ -1,12 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
return [
|
return [
|
||||||
'register' => [
|
'register' => [
|
||||||
'Twig' => \framework\library\template\Twig::class,
|
'Twig' => top\library\template\Twig::class,
|
||||||
// 'Smarty' => \framework\library\template\Smarty::class,
|
// 'Smarty' => top\library\template\Smarty::class,
|
||||||
// 'Top' => \framework\library\template\Top::class,
|
// 'Top' => top\library\template\Top::class,
|
||||||
],
|
],
|
||||||
'decorator' => [
|
'decorator' => [
|
||||||
application\home\decorator\Log::class
|
app\home\decorator\Log::class
|
||||||
],
|
],
|
||||||
'session' => [
|
'session' => [
|
||||||
'open' => true,
|
'open' => true,
|
||||||
|
@ -16,9 +16,9 @@ return [
|
||||||
'driver' => 'MySQLi',
|
'driver' => 'MySQLi',
|
||||||
'host' => '127.0.0.1',
|
'host' => '127.0.0.1',
|
||||||
'user' => 'root',
|
'user' => 'root',
|
||||||
'passwd' => '888888',
|
'passwd' => 'root',
|
||||||
'dbname' => 'by_zh',
|
'dbname' => 'hongzheng',
|
||||||
'prefix' => 'ot_',
|
'prefix' => 'cms_',
|
||||||
'charset' => 'utf8'
|
'charset' => 'utf8'
|
||||||
],
|
],
|
||||||
'view' => [
|
'view' => [
|
||||||
|
@ -26,9 +26,9 @@ return [
|
||||||
'ext' => 'html',
|
'ext' => 'html',
|
||||||
'dir' => '../application/home/view/',
|
'dir' => '../application/home/view/',
|
||||||
'cacheDir' => './runtime/cache/application/home/',
|
'cacheDir' => './runtime/cache/application/home/',
|
||||||
// 'compileDir' => './runtime/compile/application/home/',
|
'compileDir' => './runtime/compile/application/home/',
|
||||||
// 'left' => '{',
|
'left' => '{',
|
||||||
// 'right' => '}',
|
'right' => '}',
|
||||||
// 'cacheTime' => 5
|
'cacheTime' => 5
|
||||||
],
|
],
|
||||||
];
|
];
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace application\home\controller;
|
namespace app\home\controller;
|
||||||
|
|
||||||
use framework\library\Controller;
|
use top\library\Controller;
|
||||||
|
|
||||||
class Common extends Controller {
|
class Common extends Controller {
|
||||||
|
|
||||||
|
|
|
@ -1,28 +1,21 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace application\home\controller;
|
namespace app\home\controller;
|
||||||
|
|
||||||
use framework\library\cache\FileCache;
|
use app\home\model\Job;
|
||||||
use framework\library\Loader;
|
|
||||||
use framework\library\Database;
|
|
||||||
|
|
||||||
class Index extends Common {
|
class Index extends Common {
|
||||||
|
|
||||||
public function index() {
|
public function index() {
|
||||||
$model = Loader::model('Category');
|
$model = model(Job::class);
|
||||||
FileCache::instance();
|
|
||||||
// return $model->where(['id' => ['>', 9]])->delete;
|
|
||||||
$db = Database::table('category');
|
|
||||||
return [
|
return [
|
||||||
'title' => '测试模型高级操作',
|
'title' => '测试模型高级操作',
|
||||||
// 'lists' => $model->where('id', '>', 1)->order('id', 'desc')->limit(0, 100)->all,
|
'lists' => $model->select(),
|
||||||
'lists' => $db->where('id', '<', 5)->order('id', 'asc')->select(),
|
|
||||||
'query' => $model->sql
|
'query' => $model->sql
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testPage() {
|
public function testPage() {
|
||||||
// return '测试页面';
|
|
||||||
return $this->fetch('', [
|
return $this->fetch('', [
|
||||||
'a' => '测试页面',
|
'a' => '测试页面',
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace application\home\decorator;
|
namespace app\home\decorator;
|
||||||
|
|
||||||
use framework\decorator\ifs\DecoratorIfs;
|
use top\decorator\ifs\DecoratorIfs;
|
||||||
use framework\library\Register;
|
use top\library\Register;
|
||||||
|
|
||||||
class Log implements DecoratorIfs {
|
class Log implements DecoratorIfs {
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ class Log implements DecoratorIfs {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $data
|
* @param array $data
|
||||||
* @throws \framework\library\exception\BaseException
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function after($data) {
|
public function after($data) {
|
||||||
// TODO: Implement after() method.
|
// TODO: Implement after() method.
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace application\home\model;
|
|
||||||
|
|
||||||
use framework\library\Model;
|
|
||||||
|
|
||||||
class Category extends Model {
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,13 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace application\home\model;
|
namespace app\home\model;
|
||||||
|
|
||||||
use framework\library\Model;
|
use top\library\Model;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 模型示例
|
* 模型示例
|
||||||
* Class Example
|
* Class Example
|
||||||
* @package application\home\model
|
* @package app\home\model
|
||||||
*/
|
*/
|
||||||
class Example extends Model {
|
class Example extends Model {
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace app\home\model;
|
||||||
|
|
||||||
|
use top\library\Model;
|
||||||
|
|
||||||
|
class Job extends Model {
|
||||||
|
|
||||||
|
}
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework;
|
namespace top;
|
||||||
|
|
||||||
use framework\library\App;
|
use top\library\App;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 框架入口
|
* 框架入口
|
||||||
|
@ -21,14 +21,17 @@ class Framework {
|
||||||
private static $defaultAddress = 'home';
|
private static $defaultAddress = 'home';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws library\exception\BaseException
|
* 执行
|
||||||
*/
|
*/
|
||||||
public static function start() {
|
public static function startApp() {
|
||||||
header('content-type: text/html; charset=utf-8');
|
header('content-type: text/html; charset=utf-8');
|
||||||
|
|
||||||
// 指定时区
|
// 指定时区
|
||||||
date_default_timezone_set('PRC');
|
date_default_timezone_set('PRC');
|
||||||
|
|
||||||
defined('DEBUG') || define('DEBUG', false);
|
defined('DEBUG') || define('DEBUG', false);
|
||||||
require __DIR__.'/library/App.php';
|
|
||||||
|
require 'library/App.php';
|
||||||
App::start(self::$type, self::$defaultAddress);
|
App::start(self::$type, self::$defaultAddress);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\decorator;
|
namespace top\decorator;
|
||||||
|
|
||||||
use framework\decorator\ifs\DecoratorIfs;
|
use top\decorator\ifs\DecoratorIfs;
|
||||||
use framework\library\Register;
|
use top\library\Register;
|
||||||
use framework\library\View;
|
use top\library\View;
|
||||||
use framework\library\cache\FileCache;
|
use top\library\cache\FileCache;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 初始化
|
* 初始化
|
||||||
|
@ -16,24 +16,29 @@ class InitDecorator implements DecoratorIfs {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 注册一些可能会用到的类
|
* 注册一些可能会用到的类
|
||||||
* @throws \framework\library\exception\BaseException
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function before() {
|
public function before() {
|
||||||
$route = Register::get('Router');
|
$route = Register::get('Router');
|
||||||
|
|
||||||
$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_start();
|
session_start();
|
||||||
|
}
|
||||||
|
|
||||||
// 数据库驱动
|
// 数据库驱动
|
||||||
$config = Register::get('Config')->get('db');
|
$config = Register::get('Config')->get('db');
|
||||||
$driver = $config['driver'] ? $config['driver'] : 'MySQLi';
|
$driver = $config['driver'] ? $config['driver'] : 'MySQLi';
|
||||||
Register::set('DBDriver', function () use ($driver) {
|
Register::set('DBDriver', function () use ($driver) {
|
||||||
$class = '\\framework\\library\\database\\driver\\' . $driver;
|
$class = '\\top\\library\\database\\driver\\' . $driver;
|
||||||
return $class::instance();
|
return $class::instance();
|
||||||
});
|
});
|
||||||
|
|
||||||
// 视图文件缓存
|
// 视图文件缓存
|
||||||
Register::set('ViewCache', function () {
|
Register::set('ViewCache', function () {
|
||||||
return FileCache::instance();
|
return FileCache::instance();
|
||||||
});
|
});
|
||||||
|
|
||||||
// 配置文件中配置的注册
|
// 配置文件中配置的注册
|
||||||
$initRegister = Register::get('Config')->get('register');
|
$initRegister = Register::get('Config')->get('register');
|
||||||
if (!empty($initRegister)) {
|
if (!empty($initRegister)) {
|
||||||
|
@ -43,14 +48,17 @@ class InitDecorator implements DecoratorIfs {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 注册视图
|
// 注册视图
|
||||||
Register::set('View', function () {
|
Register::set('View', function () {
|
||||||
return View::instance();
|
return View::instance();
|
||||||
});
|
});
|
||||||
|
|
||||||
// 加载系统函数库
|
// 加载系统函数库
|
||||||
require BASEDIR . '/framework/library/functions/functions.php';
|
require FRAMEWORK_PATH . 'library/functions/functions.php';
|
||||||
|
|
||||||
// 加载用户函数库
|
// 加载用户函数库
|
||||||
$funcFile = BASEDIR . '/' . APPNS . '/' . $route->module . '/functions.php';
|
$funcFile = APP_PATH . $route->module . '/functions.php';
|
||||||
if (file_exists($funcFile)) {
|
if (file_exists($funcFile)) {
|
||||||
require $funcFile;
|
require $funcFile;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\decorator;
|
namespace top\decorator;
|
||||||
|
|
||||||
use framework\decorator\ifs\DecoratorIfs;
|
use top\decorator\ifs\DecoratorIfs;
|
||||||
use framework\library\Register;
|
use top\library\Register;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 辅助控制器的装饰器
|
* 辅助控制器的装饰器
|
||||||
|
@ -19,7 +19,7 @@ class ReturnDecorator implements DecoratorIfs {
|
||||||
/**
|
/**
|
||||||
* 布尔或数组则显示视图
|
* 布尔或数组则显示视图
|
||||||
* @param array $data
|
* @param array $data
|
||||||
* @throws \framework\library\exception\BaseException
|
* @throws \top\library\exception\BaseException
|
||||||
*/
|
*/
|
||||||
public function after($data) {
|
public function after($data) {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\decorator;
|
namespace top\decorator;
|
||||||
|
|
||||||
use framework\decorator\ifs\DecoratorIfs;
|
use top\decorator\ifs\DecoratorIfs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 辅助控制器的装饰器
|
* 辅助控制器的装饰器
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\decorator\ifs;
|
namespace top\decorator\ifs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 默认装饰器接口
|
* 默认装饰器接口
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace system\extend;
|
namespace system\extend;
|
||||||
|
|
||||||
use framework\library\Register;
|
use top\library\Register;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分页类
|
* 分页类
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace framework\extend;
|
namespace framework\extend;
|
||||||
|
|
||||||
use framework\library\Loader;
|
use top\library\Loader;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 文件上传类
|
* 文件上传类
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace system\extend;
|
namespace top\extend;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 水印处理类
|
* 水印处理类
|
||||||
|
|
|
@ -1,34 +1,41 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
use framework\library\exception\DatabaseException;
|
use top\library\route\Command;
|
||||||
use framework\library\exception\RouteException;
|
use top\library\route\Pathinfo;
|
||||||
use framework\library\route\Command;
|
|
||||||
use framework\library\route\Pathinfo;
|
|
||||||
|
|
||||||
class App {
|
class App {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $type
|
* @param int $type
|
||||||
* @param string $defaultAddress
|
* @param string $defaultAddress
|
||||||
* @throws exception\BaseException
|
* @throws exception\RouteException
|
||||||
*/
|
*/
|
||||||
public static function start($type = 1, $defaultAddress = 'home') {
|
public static function start($type = 1, $defaultAddress = 'home') {
|
||||||
// 注册框架自动加载
|
// 注册框架自动加载
|
||||||
require __DIR__ . '/Loader.php';
|
require 'Loader.php';
|
||||||
Loader::register();
|
$loader = new Loader();
|
||||||
|
$loader->set('top', FRAMEWORK_PATH);
|
||||||
|
$loader->set('app', APP_PATH);
|
||||||
|
$loader->register();
|
||||||
|
|
||||||
// composer自动加载
|
// composer自动加载
|
||||||
$composerLoadFile = BASEDIR . '/framework/vendor/autoload.php';
|
$composerLoadFile = FRAMEWORK_PATH . '/vendor/autoload.php';
|
||||||
if (file_exists($composerLoadFile))
|
if (file_exists($composerLoadFile)) {
|
||||||
require $composerLoadFile;
|
require $composerLoadFile;
|
||||||
|
}
|
||||||
|
|
||||||
// 使用whoops美化异常输出
|
// 使用whoops美化异常输出
|
||||||
$whoops = new \Whoops\Run;
|
$whoops = new \Whoops\Run;
|
||||||
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
|
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
|
||||||
$whoops->register();
|
$whoops->register();
|
||||||
// if (PHP_VERSION > 5.6)
|
|
||||||
|
// if (PHP_VERSION > 5.6) {
|
||||||
// set_error_handler([new BaseError(), 'handler']);
|
// set_error_handler([new BaseError(), 'handler']);
|
||||||
|
// }
|
||||||
// set_exception_handler([new BaseException(), 'handler']);
|
// set_exception_handler([new BaseException(), 'handler']);
|
||||||
|
|
||||||
$routeDriver = '';
|
$routeDriver = '';
|
||||||
if (php_sapi_name() == 'cli') {
|
if (php_sapi_name() == 'cli') {
|
||||||
// 命令行运行程序
|
// 命令行运行程序
|
||||||
|
@ -43,14 +50,8 @@ class App {
|
||||||
// 其他
|
// 其他
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
try {
|
// 实例化路由
|
||||||
// 实例化路由
|
$route = new Router($routeDriver, $defaultAddress);
|
||||||
$route = new Router($routeDriver, $defaultAddress);
|
$route->handler();
|
||||||
$route->handler();
|
|
||||||
} catch (RouteException $route) {
|
|
||||||
exit($route->handler());
|
|
||||||
} catch (DatabaseException $db) {
|
|
||||||
exit($db->handler());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 配置类
|
* 配置类
|
||||||
|
@ -11,9 +11,25 @@ class Config {
|
||||||
// 已加载的文件
|
// 已加载的文件
|
||||||
private static $files;
|
private static $files;
|
||||||
|
|
||||||
|
private static $instance;
|
||||||
|
|
||||||
// 保存配置的变量
|
// 保存配置的变量
|
||||||
private $config = [];
|
private $config = [];
|
||||||
|
|
||||||
|
private function __construct() {
|
||||||
|
}
|
||||||
|
|
||||||
|
private function __clone() {
|
||||||
|
// TODO: Implement __clone() method.
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function instance() {
|
||||||
|
if (!self::$instance) {
|
||||||
|
self::$instance = new self();
|
||||||
|
}
|
||||||
|
return self::$instance;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 添加配置
|
* 添加配置
|
||||||
*
|
*
|
||||||
|
@ -25,6 +41,7 @@ class Config {
|
||||||
$config = [
|
$config = [
|
||||||
$name => $value
|
$name => $value
|
||||||
];
|
];
|
||||||
|
|
||||||
// 与原有的配置项合并
|
// 与原有的配置项合并
|
||||||
$this->config = array_merge($this->config, $config);
|
$this->config = array_merge($this->config, $config);
|
||||||
}
|
}
|
||||||
|
@ -36,9 +53,9 @@ class Config {
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function get($name = '') {
|
public function get($name = '') {
|
||||||
// 加载的文件名
|
// 加载文件
|
||||||
$module = Register::get('Router')->module;
|
$module = Register::get('Router')->module;
|
||||||
$file = BASEDIR . '/' . APPNS . '/' . $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;
|
||||||
|
@ -47,6 +64,7 @@ class Config {
|
||||||
self::$files[$file] = true;
|
self::$files[$file] = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($this->config)
|
if (empty($this->config)
|
||||||
|| ! isset($this->config)
|
|| ! isset($this->config)
|
||||||
|| ! $this->config
|
|| ! $this->config
|
||||||
|
@ -55,6 +73,7 @@ class Config {
|
||||||
) {
|
) {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->config[$name];
|
return $this->config[$name];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library;
|
|
||||||
|
|
||||||
use framework\library\Register;
|
namespace top\library;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 基础控制器
|
* 基础控制器
|
||||||
|
@ -18,20 +17,22 @@ abstract class Controller {
|
||||||
* @param int $code
|
* @param int $code
|
||||||
* @param array $data
|
* @param array $data
|
||||||
* @param array $ext
|
* @param array $ext
|
||||||
* @return string
|
* @return false|string
|
||||||
*/
|
*/
|
||||||
public function json($msg, $code = 1, $data = [], $ext = []) {
|
public function json($msg, $code = 1, $data = [], $ext = []) {
|
||||||
return json_encode([
|
$array = [
|
||||||
'msg' => $msg,
|
'msg' => $msg,
|
||||||
'code' => $code,
|
'code' => $code,
|
||||||
'data' => $data,
|
'data' => $data,
|
||||||
'ext' => $ext
|
'ext' => $ext
|
||||||
]);
|
];
|
||||||
|
return json_encode($array);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 缓存页面(具体视图驱动完成此功能)
|
* 缓存页面(具体视图驱动完成此功能)
|
||||||
* @param string $status
|
* @param bool $status
|
||||||
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function cache($status = true) {
|
public function cache($status = true) {
|
||||||
Register::get('View')->cache($status);
|
Register::get('View')->cache($status);
|
||||||
|
@ -40,8 +41,8 @@ abstract class Controller {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 赋值到视图
|
* 赋值到视图
|
||||||
* @param string $name
|
* @param $name
|
||||||
* @param int|string|array $value
|
* @param $value
|
||||||
*/
|
*/
|
||||||
public function param($name, $value) {
|
public function param($name, $value) {
|
||||||
Register::get('View')->param($name, $value);
|
Register::get('View')->param($name, $value);
|
||||||
|
@ -51,8 +52,8 @@ abstract class Controller {
|
||||||
* 渲染视图
|
* 渲染视图
|
||||||
* @param string $file
|
* @param string $file
|
||||||
* @param array $param
|
* @param array $param
|
||||||
* @param string $cache
|
* @param bool $cache
|
||||||
* @return unknown
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function fetch($file = '', $param = [], $cache = false) {
|
public function fetch($file = '', $param = [], $cache = false) {
|
||||||
return Register::get('View')->fetch($file, $param, $cache);
|
return Register::get('View')->fetch($file, $param, $cache);
|
||||||
|
@ -68,10 +69,10 @@ abstract class Controller {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 显示提示页面
|
* 显示提示页面
|
||||||
* @param string $message
|
* @param $message
|
||||||
* @param string $url
|
* @param string $url
|
||||||
* @param number $sec
|
* @param int $sec
|
||||||
* @return string|\system\top\unknown
|
* @return false|mixed|string
|
||||||
*/
|
*/
|
||||||
public function tips($message, $url = '', $sec = 3) {
|
public function tips($message, $url = '', $sec = 3) {
|
||||||
if (request()->isAjax()) {
|
if (request()->isAjax()) {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
use framework\library\database\ifs\DatabaseIfs;
|
use top\library\database\ifs\DatabaseIfs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 数据库操作类
|
* 数据库操作类
|
||||||
|
@ -58,7 +58,6 @@ class Database {
|
||||||
* Database constructor.
|
* Database constructor.
|
||||||
* @param $table
|
* @param $table
|
||||||
* @param $pk
|
* @param $pk
|
||||||
* @throws exception\BaseException
|
|
||||||
*/
|
*/
|
||||||
private function __construct($table, $pk) {
|
private function __construct($table, $pk) {
|
||||||
$driver = Register::get('DBDriver');
|
$driver = Register::get('DBDriver');
|
||||||
|
@ -68,6 +67,10 @@ class Database {
|
||||||
$this->setDriver($driver, Register::get('Config')->get('db'));
|
$this->setDriver($driver, Register::get('Config')->get('db'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function __clone() {
|
||||||
|
// TODO: Implement __clone() method.
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 指定数据库驱动
|
* 指定数据库驱动
|
||||||
*
|
*
|
||||||
|
@ -94,7 +97,7 @@ class Database {
|
||||||
/**
|
/**
|
||||||
* 指定多张表
|
* 指定多张表
|
||||||
* @param $effect
|
* @param $effect
|
||||||
* @return \system\library\Database
|
* @return \top\library\Database
|
||||||
*/
|
*/
|
||||||
public function effect($effect) {
|
public function effect($effect) {
|
||||||
$this->effect = $effect;
|
$this->effect = $effect;
|
||||||
|
@ -103,7 +106,7 @@ class Database {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $field
|
* @param $field
|
||||||
* @return \system\library\Database
|
* @return \top\library\Database
|
||||||
*/
|
*/
|
||||||
public function distinct($field) {
|
public function distinct($field) {
|
||||||
$this->distinct = $field;
|
$this->distinct = $field;
|
||||||
|
@ -113,7 +116,7 @@ class Database {
|
||||||
/**
|
/**
|
||||||
* 设置操作字段
|
* 设置操作字段
|
||||||
* @param $field
|
* @param $field
|
||||||
* @return \system\library\Database
|
* @return \top\library\Database
|
||||||
*/
|
*/
|
||||||
public function field($field) {
|
public function field($field) {
|
||||||
$this->field = $field;
|
$this->field = $field;
|
||||||
|
@ -122,7 +125,7 @@ class Database {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设置条件
|
* 设置条件
|
||||||
* @return \system\library\Database
|
* @return \top\library\Database
|
||||||
*/
|
*/
|
||||||
public function where() {
|
public function where() {
|
||||||
$where = func_get_args();
|
$where = func_get_args();
|
||||||
|
@ -151,7 +154,7 @@ class Database {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设置排序
|
* 设置排序
|
||||||
* @return \system\library\Database
|
* @return \top\library\Database
|
||||||
*/
|
*/
|
||||||
public function order() {
|
public function order() {
|
||||||
$order = func_get_args();
|
$order = func_get_args();
|
||||||
|
@ -167,7 +170,7 @@ class Database {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设置记录范围
|
* 设置记录范围
|
||||||
* @return \system\library\Database
|
* @return \top\library\Database
|
||||||
*/
|
*/
|
||||||
public function limit() {
|
public function limit() {
|
||||||
$limit = func_get_args();
|
$limit = func_get_args();
|
||||||
|
@ -187,7 +190,7 @@ class Database {
|
||||||
* @param string $type
|
* @param string $type
|
||||||
* @param string $table
|
* @param string $table
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @return \system\library\Database
|
* @return \top\library\Database
|
||||||
*/
|
*/
|
||||||
public function join($type, $table, $name) {
|
public function join($type, $table, $name) {
|
||||||
$this->join[] = [
|
$this->join[] = [
|
||||||
|
@ -201,7 +204,7 @@ class Database {
|
||||||
/**
|
/**
|
||||||
* 多表关联
|
* 多表关联
|
||||||
* @param string $on
|
* @param string $on
|
||||||
* @return \system\library\Database
|
* @return \top\library\Database
|
||||||
*/
|
*/
|
||||||
public function on($on) {
|
public function on($on) {
|
||||||
$this->on[] = $on;
|
$this->on[] = $on;
|
||||||
|
@ -291,17 +294,20 @@ class Database {
|
||||||
* @return int|boolean
|
* @return int|boolean
|
||||||
*/
|
*/
|
||||||
public function delete($param = false) {
|
public function delete($param = false) {
|
||||||
if (is_callable($param))
|
if (is_callable($param)) {
|
||||||
$param($this);
|
$param($this);
|
||||||
|
}
|
||||||
$field = $this->getPk();
|
$field = $this->getPk();
|
||||||
if (!empty($this->join)) {
|
if (!empty($this->join)) {
|
||||||
$this->table .= ' as this';
|
$this->table .= ' as this';
|
||||||
$field = 'this.' . $field;
|
$field = 'this.' . $field;
|
||||||
}
|
}
|
||||||
if (!is_bool($param) && !is_callable($param))
|
if (!is_bool($param) && !is_callable($param)) {
|
||||||
$this->where([$field => $param]);
|
$this->where([$field => $param]);
|
||||||
|
}
|
||||||
$result = self::$driver->delete($this->effect, $this->table, $this->join, $this->on, $this->where, $this->order, $this->limit);
|
$result = self::$driver->delete($this->effect, $this->table, $this->join, $this->on, $this->where, $this->order, $this->limit);
|
||||||
$this->_reset();
|
$this->_reset();
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -313,14 +319,18 @@ class Database {
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function common($param, $type) {
|
public function common($param, $type) {
|
||||||
if (is_callable($param))
|
if (is_callable($param)) {
|
||||||
$param($this);
|
$param($this);
|
||||||
if (!empty($this->join))
|
}
|
||||||
|
if (!empty($this->join)) {
|
||||||
$this->table .= ' as this';
|
$this->table .= ' as this';
|
||||||
if (empty($this->field) && $param && !is_callable($param))
|
}
|
||||||
|
if (empty($this->field) && $param && !is_callable($param)) {
|
||||||
$this->field = $param;
|
$this->field = $param;
|
||||||
|
}
|
||||||
$result = self::$driver->common($this->table, $this->distinct, $this->field, $this->join, $this->on, $this->where, $type);
|
$result = self::$driver->common($this->table, $this->distinct, $this->field, $this->join, $this->on, $this->where, $type);
|
||||||
$this->_reset();
|
$this->_reset();
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -332,8 +342,10 @@ class Database {
|
||||||
*/
|
*/
|
||||||
public function tableDesc($table = '') {
|
public function tableDesc($table = '') {
|
||||||
$table = ($table) ? $table : $this->table;
|
$table = ($table) ? $table : $this->table;
|
||||||
if (!isset(self::$tableDesc[$table]))
|
if (!isset(self::$tableDesc[$table])) {
|
||||||
self::$tableDesc[$table] = self::$driver->tableDesc($table);
|
self::$tableDesc[$table] = self::$driver->tableDesc($table);
|
||||||
|
}
|
||||||
|
|
||||||
return self::$tableDesc[$table];
|
return self::$tableDesc[$table];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -382,8 +394,10 @@ class Database {
|
||||||
$tableInfo = $this->tableDesc();
|
$tableInfo = $this->tableDesc();
|
||||||
$pk = '';
|
$pk = '';
|
||||||
foreach ($tableInfo as $value) {
|
foreach ($tableInfo as $value) {
|
||||||
if ($value['Key'] == 'PRI')
|
if ($value['Key'] == 'PRI') {
|
||||||
$pk = $value['Field'];
|
$pk = $value['Field'];
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return $pk;
|
return $pk;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,55 +1,61 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
class Loader {
|
class Loader {
|
||||||
|
|
||||||
// 已加载的文件
|
protected $prefixes = [];
|
||||||
private static $files;
|
|
||||||
|
|
||||||
// 模型类实例
|
public function register() {
|
||||||
private static $classInstance = [];
|
spl_autoload_register([$this, 'loadClass']);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
public function set($name, $path) {
|
||||||
* 文件自动加载
|
if (isset($this->prefixes[$name])) {
|
||||||
*/
|
array_push($this->prefixes[$name], $path);
|
||||||
public static function register() {
|
} else {
|
||||||
$autoload = function ($className = '') {
|
$this->prefixes[$name] = [$path];
|
||||||
// 文件从未被加载过
|
}
|
||||||
if (!isset(self::$files[$className])) {
|
}
|
||||||
$classPath = str_replace('\\', '/', $className);
|
|
||||||
$file = BASEDIR . '/' . $classPath . '.php';
|
protected function loadClass($class) {
|
||||||
|
// 首次,将前缀等于当前类名
|
||||||
|
$prefix = $class;
|
||||||
|
// 从最后一个反斜杠开始分割前缀与类名
|
||||||
|
while (($pos = strrpos($prefix, '\\')) !== false) {
|
||||||
|
// 取出当前位置反斜杠分割的前缀
|
||||||
|
$prefix = substr($class, 0, $pos + 1);
|
||||||
|
// 取出分割出的实际类名
|
||||||
|
$className = substr($class, $pos + 1);
|
||||||
|
// 尝试去加载文件
|
||||||
|
$loadFile = $this->loadFile($prefix, $className);
|
||||||
|
if ($loadFile) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
$prefix = rtrim($prefix, '\\');
|
||||||
|
}
|
||||||
|
// 未找到文件
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function loadFile($prefix, $class) {
|
||||||
|
// echo $class . '<br>';
|
||||||
|
$prefix = trim($prefix, '\\');
|
||||||
|
// 如果存在此前缀
|
||||||
|
if (isset($this->prefixes[$prefix])) {
|
||||||
|
// 遍历当前前缀下的目录
|
||||||
|
foreach ($this->prefixes[$prefix] as $key => $value) {
|
||||||
|
// 拼接文件名
|
||||||
|
$file = str_replace('\\', '/', $value . $class) . '.php';
|
||||||
|
/*echo '<br>';
|
||||||
|
echo $file . '<br>';*/
|
||||||
|
// 如果文件存在则加载文件
|
||||||
if (file_exists($file)) {
|
if (file_exists($file)) {
|
||||||
// 文件存在
|
|
||||||
self::$files[$className] = $file;
|
|
||||||
require $file;
|
require $file;
|
||||||
} else if (file_exists(BASEDIR . '/composer.json')) {
|
return true;
|
||||||
self::$files[$className] = $file;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
};
|
|
||||||
spl_autoload_register($autoload);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 手动加载模型
|
|
||||||
* @param $name
|
|
||||||
* @param string $module
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public static function model($name, $module = '') {
|
|
||||||
(!$module) && $module = Register::get('Router')->module;
|
|
||||||
if (!isset(self::$classInstance[$module . $name])) {
|
|
||||||
$className = '\\' . APPNS . '\\' . $module . '\\model\\' . $name;
|
|
||||||
if (class_exists($className)) {
|
|
||||||
self::$classInstance[$module . $name] = new $className();
|
|
||||||
} else {
|
|
||||||
self::$classInstance[$module . $name] = new Model($name);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return self::$classInstance[$module . $name];
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -8,7 +8,7 @@ namespace framework\library;
|
||||||
*
|
*
|
||||||
* @author topnuomi 2018年11月23日
|
* @author topnuomi 2018年11月23日
|
||||||
*/
|
*/
|
||||||
class Model {
|
abstract class Model {
|
||||||
|
|
||||||
// 数据库操作实例
|
// 数据库操作实例
|
||||||
private $db;
|
private $db;
|
||||||
|
@ -37,9 +37,6 @@ class Model {
|
||||||
// 自动验证
|
// 自动验证
|
||||||
protected $validate = [];
|
protected $validate = [];
|
||||||
|
|
||||||
// 当前操作的数据(仅能在insert、update操作后获取到操作的数据,否则请使用模型data方法获取进行验证后的数据)
|
|
||||||
private $data = [];
|
|
||||||
|
|
||||||
// 是否为insert操作,决定如何验证数据
|
// 是否为insert操作,决定如何验证数据
|
||||||
// true:验证模型中配置的全部字段
|
// true:验证模型中配置的全部字段
|
||||||
// false:仅验证$data中存在的字段
|
// false:仅验证$data中存在的字段
|
||||||
|
@ -62,8 +59,8 @@ class Model {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 影响的表(仅多表delete)
|
* 影响的表(仅多表delete)
|
||||||
* @param string|array $effect
|
* @param $effect
|
||||||
* @return \system\top\Model
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function effect($effect) {
|
public function effect($effect) {
|
||||||
$this->db->effect($effect);
|
$this->db->effect($effect);
|
||||||
|
@ -72,8 +69,8 @@ class Model {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 过滤重复值的字段
|
* 过滤重复值的字段
|
||||||
* @param string|array $field
|
* @param $field
|
||||||
* @return \system\top\Model
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function distinct($field) {
|
public function distinct($field) {
|
||||||
$this->db->distinct($field);
|
$this->db->distinct($field);
|
||||||
|
@ -82,8 +79,8 @@ class Model {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 指定字段
|
* 指定字段
|
||||||
* @param string|array $field
|
* @param $field
|
||||||
* @return \system\top\Model
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function field($field) {
|
public function field($field) {
|
||||||
$this->db->field($field);
|
$this->db->field($field);
|
||||||
|
@ -92,7 +89,7 @@ class Model {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询条件
|
* 查询条件
|
||||||
* @return \system\top\Model
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function where() {
|
public function where() {
|
||||||
call_user_func_array([
|
call_user_func_array([
|
||||||
|
@ -104,7 +101,7 @@ class Model {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 排序
|
* 排序
|
||||||
* @return \system\top\Model
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function order() {
|
public function order() {
|
||||||
call_user_func_array([
|
call_user_func_array([
|
||||||
|
@ -116,7 +113,7 @@ class Model {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 限制
|
* 限制
|
||||||
* @return \system\top\Model
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function limit() {
|
public function limit() {
|
||||||
call_user_func_array([
|
call_user_func_array([
|
||||||
|
@ -131,7 +128,7 @@ class Model {
|
||||||
* @param $type
|
* @param $type
|
||||||
* @param $table
|
* @param $table
|
||||||
* @param $name
|
* @param $name
|
||||||
* @return \system\top\Model
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function join($type, $table, $name) {
|
public function join($type, $table, $name) {
|
||||||
$this->db->join($type, $table, $name);
|
$this->db->join($type, $table, $name);
|
||||||
|
@ -141,7 +138,7 @@ class Model {
|
||||||
/**
|
/**
|
||||||
* 多表
|
* 多表
|
||||||
* @param $on
|
* @param $on
|
||||||
* @return \system\top\Model
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function on($on) {
|
public function on($on) {
|
||||||
$this->db->on($on);
|
$this->db->on($on);
|
||||||
|
@ -462,7 +459,7 @@ class Model {
|
||||||
* @param $data
|
* @param $data
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
private function validateCallUserFunction($key = '', $validate, $data) {
|
private function validateCallUserFunction($key, $validate, $data) {
|
||||||
$funcName = $validate[0];
|
$funcName = $validate[0];
|
||||||
$tips = end($validate);
|
$tips = end($validate);
|
||||||
// 将第一个值赋值为将要检查的值
|
// 将第一个值赋值为将要检查的值
|
||||||
|
@ -484,17 +481,16 @@ class Model {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取表结构
|
* 获取表结构
|
||||||
*
|
* @param $table
|
||||||
* @return array
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function tableDesc($table = '') {
|
public function tableDesc($table) {
|
||||||
return $this->db->tableDesc($table);
|
return $this->db->tableDesc($table);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取信息
|
* 获取信息
|
||||||
*
|
* @return string
|
||||||
* @return string|mixed
|
|
||||||
*/
|
*/
|
||||||
public function getMessage() {
|
public function getMessage() {
|
||||||
return $this->message;
|
return $this->message;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 注册器
|
* 注册器
|
||||||
|
@ -12,6 +12,14 @@ class Register {
|
||||||
// 存放类的变量
|
// 存放类的变量
|
||||||
public static $register;
|
public static $register;
|
||||||
|
|
||||||
|
|
||||||
|
private function __construct() {
|
||||||
|
}
|
||||||
|
|
||||||
|
private function __clone() {
|
||||||
|
// TODO: Implement __clone() method.
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 注册类
|
* 注册类
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
use framework\decorator\ifs\DecoratorIfs;
|
use top\decorator\ifs\DecoratorIfs;
|
||||||
use framework\decorator\InitDecorator;
|
use top\decorator\InitDecorator;
|
||||||
use framework\decorator\ReturnDecorator;
|
use top\decorator\ReturnDecorator;
|
||||||
use framework\decorator\StringDecorator;
|
use top\decorator\StringDecorator;
|
||||||
use framework\library\exception\RouteException;
|
use top\library\exception\RouteException;
|
||||||
use framework\library\route\ifs\RouteIfs;
|
use top\library\route\ifs\RouteIfs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 路由类
|
* 路由类
|
||||||
|
@ -43,17 +43,20 @@ class Router {
|
||||||
$this->route = $route;
|
$this->route = $route;
|
||||||
$this->route->default = $default;
|
$this->route->default = $default;
|
||||||
$this->route->processing();
|
$this->route->processing();
|
||||||
|
|
||||||
$this->module = $this->route->module;
|
$this->module = $this->route->module;
|
||||||
$this->className = $this->route->className;
|
$this->class = $this->route->class;
|
||||||
$this->ctrl = $this->route->ctrl;
|
$this->ctrl = $this->route->ctrl;
|
||||||
$this->action = $this->route->action;
|
$this->action = $this->route->action;
|
||||||
$this->param = $this->route->param;
|
$this->param = $this->route->param;
|
||||||
|
|
||||||
$this->check();
|
$this->check();
|
||||||
|
|
||||||
Register::set('Router', function () {
|
Register::set('Router', function () {
|
||||||
return $this->route;
|
return $this->route;
|
||||||
});
|
});
|
||||||
Register::set('Config', function () {
|
Register::set('Config', function () {
|
||||||
return new Config();
|
return Config::instance();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,36 +94,45 @@ class Router {
|
||||||
*/
|
*/
|
||||||
public function check() {
|
public function check() {
|
||||||
// 检查模块是否存在
|
// 检查模块是否存在
|
||||||
if (!is_dir(BASEDIR . '/' . APPNS . '/' . $this->module))
|
if (!is_dir(APP_PATH . $this->module)) {
|
||||||
throw new RouteException('模块' . $this->module . '不存在');
|
throw new RouteException('模块' . $this->module . '不存在');
|
||||||
|
}
|
||||||
// 检查控制器是否存在
|
// 检查控制器是否存在
|
||||||
if (!class_exists($this->className))
|
if (!class_exists($this->class)) {
|
||||||
throw new RouteException('控制器' . $this->className . '不存在');
|
throw new RouteException('控制器' . $this->class . '不存在');
|
||||||
|
}
|
||||||
// 检查方法在控制器中是否存在
|
// 检查方法在控制器中是否存在
|
||||||
if (!in_array($this->action, get_class_methods($this->className)))
|
if (!in_array($this->action, get_class_methods($this->class))) {
|
||||||
throw new RouteException('方法' . $this->action . '在控制器' . $this->ctrl . '中不存在');
|
throw new RouteException('方法' . $this->action . '在控制器' . $this->ctrl . '中不存在');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 调用方法并执行程序
|
* 调用方法并执行程序
|
||||||
* @throws exception\BaseException
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function handler() {
|
public function handler() {
|
||||||
$userDecorators = Register::get('Config')->get('decorator');
|
$userDecorators = Register::get('Config')->get('decorator');
|
||||||
$systemDecorators = [InitDecorator::class, ReturnDecorator::class, StringDecorator::class];
|
$systemDecorators = [InitDecorator::class, ReturnDecorator::class, StringDecorator::class];
|
||||||
|
|
||||||
$decorators = array_merge($systemDecorators, $userDecorators);
|
$decorators = array_merge($systemDecorators, $userDecorators);
|
||||||
foreach ($decorators as $key => $value)
|
foreach ($decorators as $key => $value) {
|
||||||
$this->decorator(new $value());
|
$this->decorator(new $value());
|
||||||
|
}
|
||||||
|
|
||||||
$this->beforeRoute();
|
$this->beforeRoute();
|
||||||
$object = new $this->className();
|
|
||||||
if (method_exists($object, '_init'))
|
$object = new $this->class();
|
||||||
|
if (method_exists($object, '_init')) {
|
||||||
$data = $object->_init();
|
$data = $object->_init();
|
||||||
|
}
|
||||||
if (!isset($data) || $data == null) {
|
if (!isset($data) || $data == null) {
|
||||||
$data = call_user_func_array([
|
$data = call_user_func_array([
|
||||||
$object,
|
$object,
|
||||||
$this->action
|
$this->action
|
||||||
], $this->param);
|
], $this->param);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->afterRoute($data);
|
$this->afterRoute($data);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
use framework\library\template\ifs\TemplateIfs;
|
use top\library\template\ifs\TemplateIfs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 模板类
|
* 模板类
|
||||||
|
@ -26,11 +26,15 @@ class Template {
|
||||||
$this->template = $template->run();
|
$this->template = $template->run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function __clone() {
|
||||||
|
// TODO: Implement __clone() method.
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取实例
|
* 获取实例
|
||||||
*
|
*
|
||||||
* @param TemplateIfs $template
|
* @param TemplateIfs $template
|
||||||
* @return \system\library\Template
|
* @return \top\library\Template
|
||||||
*/
|
*/
|
||||||
public static function instance($template) {
|
public static function instance($template) {
|
||||||
if (! self::$instance) {
|
if (! self::$instance) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library;
|
namespace top\library;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 基础视图类
|
* 基础视图类
|
||||||
|
@ -38,6 +38,10 @@ class View {
|
||||||
$this->template = Template::instance($driver);
|
$this->template = Template::instance($driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function __clone() {
|
||||||
|
// TODO: Implement __clone() method.
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 传递参数
|
* 传递参数
|
||||||
* @param $name
|
* @param $name
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library\cache;
|
namespace top\library\cache;
|
||||||
|
|
||||||
use framework\library\cache\ifs\CacheIfs;
|
use top\library\cache\ifs\CacheIfs;
|
||||||
|
|
||||||
class FileCache implements CacheIfs {
|
class FileCache implements CacheIfs {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ class FileCache implements CacheIfs {
|
||||||
*
|
*
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \system\library\cache\CacheIfs::set()
|
* @see \top\library\cache\CacheIfs::set()
|
||||||
*/
|
*/
|
||||||
public function set($name = '', $value = '') {
|
public function set($name = '', $value = '') {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
|
@ -42,7 +42,7 @@ class FileCache implements CacheIfs {
|
||||||
*
|
*
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \system\library\cache\CacheIfs::get()
|
* @see \top\library\cache\CacheIfs::get()
|
||||||
*/
|
*/
|
||||||
public function get($name = '') {
|
public function get($name = '') {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
|
@ -52,7 +52,7 @@ class FileCache implements CacheIfs {
|
||||||
*
|
*
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \system\library\cache\CacheIfs::_unset()
|
* @see \top\library\cache\CacheIfs::_unset()
|
||||||
*/
|
*/
|
||||||
public function _unset($name = '') {
|
public function _unset($name = '') {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library\cache\ifs;
|
namespace top\library\cache\ifs;
|
||||||
|
|
||||||
interface CacheIfs {
|
interface CacheIfs {
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\database\driver;
|
namespace top\library\database\driver;
|
||||||
|
|
||||||
use framework\library\database\ifs\DatabaseIfs;
|
use top\library\database\ifs\DatabaseIfs;
|
||||||
use framework\library\exception\DatabaseException;
|
use top\library\exception\DatabaseException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mysqli数据库驱动
|
* Mysqli数据库驱动
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library\database\ifs;
|
namespace top\library\database\ifs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 数据库操作接口
|
* 数据库操作接口
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\error;
|
namespace top\library\error;
|
||||||
|
|
||||||
use framework\library\exception\BaseException;
|
use top\library\exception\BaseException;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
class BaseError extends \Error {
|
class BaseError extends \Error {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\exception;
|
namespace top\library\exception;
|
||||||
|
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\exception;
|
namespace top\library\exception;
|
||||||
|
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\exception;
|
namespace top\library\exception;
|
||||||
|
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,22 @@
|
||||||
* 调用请求类
|
* 调用请求类
|
||||||
*/
|
*/
|
||||||
function request() {
|
function request() {
|
||||||
$request = \framework\library\http\Request::instance();
|
$request = \top\library\http\Request::instance();
|
||||||
return $request;
|
return $request;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function model($class) {
|
||||||
|
static $model = [];
|
||||||
|
if (!isset($model[$class])) {
|
||||||
|
if (class_exists($class)) {
|
||||||
|
$model[$class] = new $class();
|
||||||
|
} else {
|
||||||
|
$model[$class] = new \top\library\Model($class);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $model[$class];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* print_r
|
* print_r
|
||||||
* @param array|string|int|object $value
|
* @param array|string|int|object $value
|
||||||
|
@ -57,8 +69,9 @@ function get_table_name($classname) {
|
||||||
$arr = str_split($class);
|
$arr = str_split($class);
|
||||||
for ($i = 0; $i < count($arr); $i++) {
|
for ($i = 0; $i < count($arr); $i++) {
|
||||||
$ord = ord($arr[$i]);
|
$ord = ord($arr[$i]);
|
||||||
if ($ord > 64 && $ord < 91 && $i != 0)
|
if ($ord > 64 && $ord < 91 && $i != 0) {
|
||||||
$arr[$i-1] = $arr[$i-1] . '_';
|
$arr[$i - 1] = $arr[$i - 1] . '_';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$table = implode('', $arr);
|
$table = implode('', $arr);
|
||||||
return strtolower($table);
|
return strtolower($table);
|
||||||
|
@ -69,7 +82,7 @@ function get_table_name($classname) {
|
||||||
* @return NULL|number|string
|
* @return NULL|number|string
|
||||||
*/
|
*/
|
||||||
function get_client_ip() {
|
function get_client_ip() {
|
||||||
return \request()->ip();
|
return request()->ip();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -121,12 +134,12 @@ function filter($str) {
|
||||||
* @param $name
|
* @param $name
|
||||||
* @param string $value
|
* @param string $value
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws \framework\library\exception\BaseException
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function session($name, $value = '') {
|
function session($name, $value = '') {
|
||||||
$config = \framework\library\Register::get('Config')->get('session');
|
$config = \top\library\Register::get('Config')->get('session');
|
||||||
if (empty($config) || !$config['prefix']) {
|
if (empty($config) || !$config['prefix']) {
|
||||||
$route = \framework\library\Register::get('Route');
|
$route = \top\library\Register::get('Route');
|
||||||
$prefix = $route->module;
|
$prefix = $route->module;
|
||||||
} else {
|
} else {
|
||||||
$prefix = $config['prefix'];
|
$prefix = $config['prefix'];
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\http;
|
namespace top\library\http;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 请求类
|
* 请求类
|
||||||
|
@ -11,13 +11,13 @@ class Request {
|
||||||
|
|
||||||
private $server = [];
|
private $server = [];
|
||||||
|
|
||||||
private static $instanct;
|
private static $instance;
|
||||||
|
|
||||||
public static function instance() {
|
public static function instance() {
|
||||||
if (!self::$instanct) {
|
if (!self::$instance) {
|
||||||
self::$instanct = new self();
|
self::$instance = new self();
|
||||||
}
|
}
|
||||||
return self::$instanct;
|
return self::$instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function __construct() {
|
private function __construct() {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library\route;
|
namespace top\library\route;
|
||||||
|
|
||||||
use framework\library\route\ifs\RouteIfs;
|
use top\library\route\ifs\RouteIfs;
|
||||||
|
|
||||||
class Command implements RouteIfs {
|
class Command implements RouteIfs {
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\route;
|
namespace top\library\route;
|
||||||
|
|
||||||
use framework\library\route\ifs\RouteIfs;
|
use top\library\route\ifs\RouteIfs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* pathinfo(如果运行环境不支持pathinfo则使用兼容模式)
|
* pathinfo模式
|
||||||
*
|
*
|
||||||
* @author topnuomi 2018年11月19日
|
* @author topnuomi 2018年11月19日
|
||||||
*/
|
*/
|
||||||
|
@ -39,14 +39,11 @@ class Pathinfo implements RouteIfs {
|
||||||
public $param = [];
|
public $param = [];
|
||||||
|
|
||||||
// 类名
|
// 类名
|
||||||
public $className = '';
|
public $class = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 模块名
|
* 模块名
|
||||||
*
|
* @return string
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @see \system\core\route\ifs\RouteIfs::module()
|
|
||||||
*/
|
*/
|
||||||
public function module() {
|
public function module() {
|
||||||
if (isset($this->uriArray[0]) && $this->uriArray[0]) {
|
if (isset($this->uriArray[0]) && $this->uriArray[0]) {
|
||||||
|
@ -58,10 +55,7 @@ class Pathinfo implements RouteIfs {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 控制器名
|
* 控制器名
|
||||||
*
|
* @return string
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @see \system\core\route\ifs\RouteIfs::ctrl()
|
|
||||||
*/
|
*/
|
||||||
public function ctrl() {
|
public function ctrl() {
|
||||||
if (isset($this->uriArray[1]) && $this->uriArray[1]) {
|
if (isset($this->uriArray[1]) && $this->uriArray[1]) {
|
||||||
|
@ -73,10 +67,7 @@ class Pathinfo implements RouteIfs {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 具体执行的方法名
|
* 具体执行的方法名
|
||||||
*
|
* @return mixed|string
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @see \system\core\route\ifs\RouteIfs::action()
|
|
||||||
*/
|
*/
|
||||||
public function action() {
|
public function action() {
|
||||||
if (isset($this->uriArray[2]) && $this->uriArray[2]) {
|
if (isset($this->uriArray[2]) && $this->uriArray[2]) {
|
||||||
|
@ -95,8 +86,8 @@ class Pathinfo implements RouteIfs {
|
||||||
unset($this->uriArray[1]);
|
unset($this->uriArray[1]);
|
||||||
unset($this->uriArray[2]);
|
unset($this->uriArray[2]);
|
||||||
$this->uriArray = array_merge($this->uriArray, []);
|
$this->uriArray = array_merge($this->uriArray, []);
|
||||||
if (!empty($this->uriArray) && class_exists($this->className)) {
|
if (!empty($this->uriArray) && class_exists($this->class)) {
|
||||||
$paramName = (new \ReflectionMethod($this->className, $this->action))->getParameters();
|
$paramName = (new \ReflectionMethod($this->class, $this->action))->getParameters();
|
||||||
$paramNameArray = [];
|
$paramNameArray = [];
|
||||||
for ($i = 0; $i < count($paramName); $i++) {
|
for ($i = 0; $i < count($paramName); $i++) {
|
||||||
$paramNameArray[$paramName[$i]->name] = '';
|
$paramNameArray[$paramName[$i]->name] = '';
|
||||||
|
@ -119,8 +110,7 @@ class Pathinfo implements RouteIfs {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 处理URI
|
* 处理URI
|
||||||
*
|
* @return mixed|string
|
||||||
* @return string
|
|
||||||
*/
|
*/
|
||||||
private function getUri() {
|
private function getUri() {
|
||||||
if (isset($_SERVER['PATH_INFO'])) {
|
if (isset($_SERVER['PATH_INFO'])) {
|
||||||
|
@ -133,7 +123,7 @@ class Pathinfo implements RouteIfs {
|
||||||
$this->rawUri = $uri;
|
$this->rawUri = $uri;
|
||||||
$paramArray = explode('/', $uri);
|
$paramArray = explode('/', $uri);
|
||||||
$name = $paramArray[0];
|
$name = $paramArray[0];
|
||||||
$file = BASEDIR . '/' . APPNS . '/route.php';
|
$file = APP_PATH . 'route.php';
|
||||||
if (file_exists($file)) {
|
if (file_exists($file)) {
|
||||||
$routeConfig = require $file;
|
$routeConfig = require $file;
|
||||||
if (isset($routeConfig[$name])) {
|
if (isset($routeConfig[$name])) {
|
||||||
|
@ -165,7 +155,6 @@ class Pathinfo implements RouteIfs {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据URI得到带参数的数组
|
* 根据URI得到带参数的数组
|
||||||
*
|
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
private function processUriArray() {
|
private function processUriArray() {
|
||||||
|
@ -174,13 +163,13 @@ class Pathinfo implements RouteIfs {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 返回解析出的数据 home/controller/index
|
* 返回解析出的数据 home/controller/index
|
||||||
* @throws \Exception
|
* @throws \ReflectionException
|
||||||
*/
|
*/
|
||||||
public function processing() {
|
public function processing() {
|
||||||
$this->uriArray = $this->processUriArray();
|
$this->uriArray = $this->processUriArray();
|
||||||
$this->module = $this->module();
|
$this->module = $this->module();
|
||||||
$this->ctrl = $this->ctrl();
|
$this->ctrl = $this->ctrl();
|
||||||
$this->className = '\\' . APPNS . '\\' . $this->module . '\\controller\\' . $this->ctrl;
|
$this->class = '\app\\' . $this->module . '\\controller\\' . $this->ctrl;
|
||||||
$this->action = $this->action();
|
$this->action = $this->action();
|
||||||
$this->param = $this->param();
|
$this->param = $this->param();
|
||||||
unset($this->uriArray);
|
unset($this->uriArray);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library\route\ifs;
|
namespace top\library\route\ifs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 路由接口
|
* 路由接口
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\template;
|
namespace top\library\template;
|
||||||
|
|
||||||
use framework\library\Register;
|
use top\library\Register;
|
||||||
use framework\library\template\ifs\TemplateIfs;
|
use top\library\template\ifs\TemplateIfs;
|
||||||
|
|
||||||
class Smarty implements TemplateIfs {
|
class Smarty implements TemplateIfs {
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\template;
|
namespace top\library\template;
|
||||||
|
|
||||||
use framework\library\template\ifs\TemplateIfs;
|
use top\library\template\ifs\TemplateIfs;
|
||||||
use framework\library\Register;
|
use top\library\Register;
|
||||||
use framework\library\template\tags\Tags;
|
use top\library\template\tags\Tags;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 默认的视图驱动
|
* 默认的视图驱动
|
||||||
|
@ -32,7 +32,7 @@ class Top implements TemplateIfs {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws \framework\library\exception\BaseException
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function run() {
|
public function run() {
|
||||||
// TODO: Implement run() method.
|
// TODO: Implement run() method.
|
||||||
|
@ -62,7 +62,7 @@ class Top implements TemplateIfs {
|
||||||
* @param $file
|
* @param $file
|
||||||
* @param $param
|
* @param $param
|
||||||
* @return string
|
* @return string
|
||||||
* @throws \framework\library\exception\BaseException
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function cacheFile($file, $param) {
|
public function cacheFile($file, $param) {
|
||||||
if (isset($_SERVER['REQUEST_URI'])) {
|
if (isset($_SERVER['REQUEST_URI'])) {
|
||||||
|
@ -98,8 +98,8 @@ class Top implements TemplateIfs {
|
||||||
* @param $file
|
* @param $file
|
||||||
* @param $param
|
* @param $param
|
||||||
* @param $cache
|
* @param $cache
|
||||||
* @return mixed|string
|
* @return false|mixed|string
|
||||||
* @throws \framework\library\exception\BaseException
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function fetch($file, $param, $cache) {
|
public function fetch($file, $param, $cache) {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\template;
|
namespace top\library\template;
|
||||||
|
|
||||||
use framework\library\Register;
|
use top\library\Register;
|
||||||
use framework\library\template\ifs\TemplateIfs;
|
use top\library\template\ifs\TemplateIfs;
|
||||||
use Twig\Environment;
|
use Twig\Environment;
|
||||||
use Twig\Loader\FilesystemLoader;
|
use Twig\Loader\FilesystemLoader;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace framework\library\template\ifs;
|
namespace top\library\template\ifs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 模板接口
|
* 模板接口
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
namespace framework\library\template\tags;
|
namespace top\library\template\tags;
|
||||||
|
|
||||||
use framework\library\Register;
|
use top\library\Register;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 模板标签处理类
|
* 模板标签处理类
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
// 是否开启DEBUG模式
|
// 是否开启DEBUG模式
|
||||||
define('DEBUG', true);
|
define('DEBUG', true);
|
||||||
// 根目录
|
// APP目录
|
||||||
define('BASEDIR', __DIR__ . '/..');
|
define('APP_PATH', '../application/');
|
||||||
// APP的根命名空间
|
// 框架目录
|
||||||
define('APPNS', 'application');
|
define('FRAMEWORK_PATH', '../framework/');
|
||||||
// 加载框架
|
// 加载框架
|
||||||
require BASEDIR . '/framework/Framework.php';
|
require '../framework/Framework.php';
|
||||||
|
|
||||||
\framework\Framework::start();
|
\top\Framework::startApp();
|
||||||
|
|
Loading…
Reference in New Issue