diff --git a/framework/Framework.php b/framework/Framework.php index 19b2350..015777c 100644 --- a/framework/Framework.php +++ b/framework/Framework.php @@ -2,7 +2,10 @@ namespace top; -use top\library\App; +use top\library\Application; + +// 定义简写文件分割符号常量 +!defined('DS') && define('DS', DIRECTORY_SEPARATOR); /** * 框架入口 @@ -18,31 +21,32 @@ class Framework /** * 框架入口 * @param string $callable + * @param array $namespaceMap */ - public static function startApp($callable = '') + public static function startApp($callable = '', $namespaceMap = []) { - if (is_callable($callable)) { - $callable(self::class); - } + (is_callable($callable)) && $callable(self::class); // 指定时区 date_default_timezone_set('PRC'); - self::debug(); // 强制在入口文件指定应用目录 if (defined('APP_PATH')) { + self::debug(); // self::appPath(); + self::bindModule(); self::appNameSpace(); self::resourcePath(); self::frameworkPath(); self::sessionPath(); - require 'library/App.php'; - App::run(); - } else { - echo '请使用Framework::appPath()指定应用目录'; - } + // 配置文件目录 + !defined('CONFIG_DIR') && define('CONFIG_DIR', APP_PATH . BIND_MODULE . DS . 'config' . DS); + + require 'library/Application.php'; + Application::run($namespaceMap); + } else echo '请使用Framework::appPath()指定应用目录'; } /** @@ -52,10 +56,8 @@ class Framework public static function appPath($path = '') { if (!defined('APP_PATH')) { - if (!$path) { - $path = './application/'; - } - define('APP_PATH', $path); + (!$path) && $path = '.' . DS . 'application' . DS; + define('APP_PATH', str_replace('/', DS, $path)); } } @@ -65,8 +67,18 @@ class Framework */ public static function debug($status = false) { - if (!defined('DEBUG')) { - define('DEBUG', $status); + (!defined('DEBUG')) && define('DEBUG', $status); + } + + /** + * 绑定模块 + * @param string $module + */ + public static function bindModule($module = '') + { + if (!defined('BIND_MODULE')) { + (!$module) && $module = 'home'; + define('BIND_MODULE', $module); } } @@ -77,19 +89,19 @@ class Framework public static function frameworkPath($path = '') { if (!defined('FRAMEWORK_PATH')) { - if (!$path) { - $path = __DIR__ . '/'; - } - define('FRAMEWORK_PATH', $path); + (!$path) && $path = __DIR__ . DS; + define('FRAMEWORK_PATH', str_replace('/', DS, $path)); } } + /** + * 应用命名空间 + * @param string $namespace + */ public static function appNameSpace($namespace = '') { if (!defined('APP_NS')) { - if (!$namespace) { - $namespace = 'app'; - } + (!$namespace) && $namespace = 'app'; define('APP_NS', $namespace); } } @@ -105,9 +117,9 @@ class Framework $scriptName = $_SERVER['SCRIPT_NAME']; $pos = strrpos($scriptName, '/'); $root = substr($scriptName, 0, $pos + 1); - $path = $root . 'resource/'; + $path = $root . 'resource' . DS; } - define('RESOURCE', $path); + define('RESOURCE', str_replace('/', DS, $path)); } } @@ -118,13 +130,9 @@ class Framework public static function sessionPath($path = '') { if (!defined('SESSION_PATH')) { - if (!$path) { - $path = './runtime/session/'; - } - if (!is_dir($path)) { - mkdir($path, 0755, true); - } - define('SESSION_PATH', $path); + (!$path) && $path = '.' . DS . 'runtime' . DS . 'session' . DS; + (!is_dir($path)) && mkdir($path, 0755, true); + define('SESSION_PATH', str_replace('/', DS, $path)); } } diff --git a/framework/config/config.php b/framework/config/config.php index 4820e82..077a97b 100644 --- a/framework/config/config.php +++ b/framework/config/config.php @@ -2,11 +2,15 @@ // 默认配置 return [ + 'default_controller' => 'Index', + 'default_method' => 'index', + 'compel_route' => false, + 'complete_parameter' => true, 'register' => [ 'Top' => \top\library\template\driver\Top::class, ], 'middleware' => [ - \top\middleware\Init::class, + \top\middleware\Action::class, \top\middleware\View::class, ], 'session' => [ diff --git a/framework/create/create.php b/framework/create/create.php index 338dc5c..14fe234 100644 --- a/framework/create/create.php +++ b/framework/create/create.php @@ -14,10 +14,10 @@ class Create private $name = ''; /** - * 命名空间 + * 应用目录 * @var string */ - private $namespace = ''; + private $path = ''; /** * 入口文件名 @@ -43,15 +43,15 @@ class Create */ private $projectPath; - public function __construct($start, $namespace, $name) + public function __construct($start, $path, $name) { $this->name = $name; - $this->dir = __DIR__ . '/'; - $this->namespace = $namespace; - $this->base = $this->dir . '../../'; + $this->dir = __DIR__ . DIRECTORY_SEPARATOR; + $this->path = $path; + $this->base = $this->dir . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR; if ($start) - $this->start = $this->base . $start . '.php'; - $this->projectPath = $this->base . $this->namespace . '/' . $this->name . '/'; + $this->start = $this->base . $start; + $this->projectPath = $this->base . $this->path . DIRECTORY_SEPARATOR . $this->name . DIRECTORY_SEPARATOR; $this->create(); } @@ -63,10 +63,8 @@ class Create public function replaceContent($content) { return str_replace([ - '{namespace}', '{name}' ], [ - $this->namespace, $this->name ], $content); } @@ -78,7 +76,7 @@ class Create public function createStartFile() { if ($this->start && !is_file($this->start)) { - $content = file_get_contents($this->dir . 'tpl/index.tpl'); + $content = file_get_contents($this->dir . 'tpl' . DIRECTORY_SEPARATOR . 'index.tpl'); $content = $this->replaceContent($content); if (file_put_contents($this->start, $content)) { return true; @@ -93,15 +91,14 @@ class Create */ public function createConfig() { - $configPath = $this->projectPath . 'config/'; + $configPath = $this->projectPath . 'config' . DIRECTORY_SEPARATOR; $configFile = $configPath . 'config.php'; if (!is_dir($configPath)) { mkdir($configPath, 0755, true); } if (!is_file($configFile)) { - $content = file_get_contents($this->dir . 'tpl/config/config.tpl'); + $content = file_get_contents($this->dir . 'tpl' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'config.tpl'); $content = $this->replaceContent($content); - $realConfigFile = $this->base . '/' . $this->namespace . '/' . $this->name . '/config/config.php'; if (!file_put_contents($configPath . 'config.php', $content)) { exit('error -2'); } @@ -111,7 +108,7 @@ class Create /** * 创建MVC目录及文件 */ - public function createMVC() + public function createControllerAndView() { $dirArray = [ 'controller', @@ -119,33 +116,25 @@ class Create 'view' ]; for ($i = 0; $i < count($dirArray); $i++) { - if (!is_dir($this->projectPath . $dirArray[$i] . '/')) { - mkdir($this->projectPath . $dirArray[$i] . '/', 0755, true); + if (!is_dir($this->projectPath . $dirArray[$i] . DIRECTORY_SEPARATOR)) { + mkdir($this->projectPath . $dirArray[$i] . DIRECTORY_SEPARATOR, 0755, true); } } - $controllerFile = $this->projectPath . 'controller/index.php'; + $controllerFile = $this->projectPath . 'controller' . DIRECTORY_SEPARATOR . 'index.php'; if (!is_file($controllerFile)) { - $content = file_get_contents($this->dir . 'tpl/controller/index.tpl'); + $content = file_get_contents($this->dir . 'tpl' . DIRECTORY_SEPARATOR . 'controller' . DIRECTORY_SEPARATOR . 'index.tpl'); $content = $this->replaceContent($content); - if (!file_put_contents($this->projectPath . 'controller/Index.php', $content)) { + if (!file_put_contents($this->projectPath . 'controller' . DIRECTORY_SEPARATOR . 'Index.php', $content)) { exit('error -4'); } } - $modelFile = $this->projectPath . 'model/demo.php'; - if (!is_file($modelFile)) { - $content = file_get_contents($this->dir . 'tpl/model/demo.tpl'); - $content = $this->replaceContent($content); - if (!file_put_contents($this->projectPath . 'model/Demo.php', $content)) { - exit('error -5'); - } - } - $viewFile = $this->projectPath . 'view/index/index.html'; + $viewFile = $this->projectPath . 'view' . DIRECTORY_SEPARATOR . 'index' . DIRECTORY_SEPARATOR . 'index.html'; if (!is_file($viewFile)) { - $content = file_get_contents($this->dir . 'tpl/view/index.tpl'); - if (!is_dir($this->projectPath . 'view/Index/')) { - mkdir($this->projectPath . 'view/Index/', 0755, true); + $content = file_get_contents($this->dir . 'tpl' . DIRECTORY_SEPARATOR . 'view' . DIRECTORY_SEPARATOR . 'index.tpl'); + if (!is_dir($this->projectPath . 'view' . DIRECTORY_SEPARATOR . 'Index' . DIRECTORY_SEPARATOR)) { + mkdir($this->projectPath . 'view' . DIRECTORY_SEPARATOR . 'Index' . DIRECTORY_SEPARATOR, 0755, true); } - if (!file_put_contents($this->projectPath . 'view/Index/index.html', $content)) { + if (!file_put_contents($this->projectPath . 'view' . DIRECTORY_SEPARATOR . 'Index' . DIRECTORY_SEPARATOR . 'index.html', $content)) { exit('error -6'); } } @@ -164,19 +153,6 @@ class Create } } - /** - * 创建路由文件 - */ - public function createRoute() - { - $file = $this->projectPath . '../route.php'; - if (!is_file($file)) { - if (!file_put_contents($file, file_get_contents($this->dir . 'tpl/route.tpl'))) { - exit('-8'); - } - } - } - /** * 执行创建操作 */ @@ -184,14 +160,13 @@ class Create { $this->createStartFile(); $this->createConfig(); - $this->createMVC(); + $this->createControllerAndView(); $this->createFunctions(); - $this->createRoute(); } } // 准备创建项目 -$namespace = (isset($argv[1]) && $argv[1]) ? $argv[1] : exit('please type namespace~'); +$path = (isset($argv[1]) && $argv[1]) ? $argv[1] : exit('please type path~'); $projectName = (isset($argv[2]) && $argv[2]) ? $argv[2] : exit('please type project name~'); $startFile = (isset($argv[3]) && $argv[3]) ? $argv[3] : false; -new Create($startFile, $namespace, $projectName); +new Create($startFile, $path, $projectName); diff --git a/framework/create/tpl/controller/index.tpl b/framework/create/tpl/controller/index.tpl index c595a95..1f0c4e0 100644 --- a/framework/create/tpl/controller/index.tpl +++ b/framework/create/tpl/controller/index.tpl @@ -2,16 +2,29 @@ namespace app\{name}\controller; -use app\{name}\model\Demo; +use top\library\Controller; +use top\library\http\Request; -class Index +class Index extends Controller { - public function index() + + /** + * 首页 + * @route / + * + * @param Request $request + * @return array + */ + public function index(Request $request) { - $model = model(Demo::class); + $uri = $request->uri(); + (!$uri) && $this->redirect('index'); return [ - 'hello' => $model->get() + 'uri' => $uri, + 'controller' => $request->controllerFullName(), + 'method' => $request->method(), ]; } } + diff --git a/framework/create/tpl/index.tpl b/framework/create/tpl/index.tpl index 961dd3b..da4a2f1 100644 --- a/framework/create/tpl/index.tpl +++ b/framework/create/tpl/index.tpl @@ -30,13 +30,6 @@ require '../framework/Framework.php'; // Framework::resourcePath('/resource/'); // 可使用常量RESOURCE取得该值 -// 当前入口文件默认模块,缺省值:home -// Framework::defaultModule('home'); - -// 路由模式,缺省值:1(pathinfo和兼容模式) -// Framework::runType(1); - Framework::appPath('../application/'); - -// 执行程序 +Framework::bindModule('{name}'); Framework::startApp(); diff --git a/framework/create/tpl/model/demo.tpl b/framework/create/tpl/model/demo.tpl deleted file mode 100644 index 3e1c316..0000000 --- a/framework/create/tpl/model/demo.tpl +++ /dev/null @@ -1,11 +0,0 @@ - [ - null, - 'home/example/login' - ], - 'example-detail' => [ - '[id]', - 'home/example/detail' - ], - 'example' => [ - '[:type]', - 'home/example/index' - ], -]; \ No newline at end of file diff --git a/framework/create/tpl/view/index.tpl b/framework/create/tpl/view/index.tpl index a3b3c03..e838aa1 100644 --- a/framework/create/tpl/view/index.tpl +++ b/framework/create/tpl/view/index.tpl @@ -9,23 +9,16 @@
-URI: {$uri}
+Controller: {$controller}
+Method: {$method}
+TOP-Framework