Files
framework/library/think/create.php
thinkphp 257a31551f 添加自动生成机制
增加模块禁止访问列表设置
2015-12-08 22:46:29 +08:00

158 lines
5.7 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2015 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace think;
class Create
{
public static function build($build)
{
// 锁定
$lockfile = APP_PATH . 'create.lock';
if (is_writable($lockfile)) {
return;
} else {
if (!touch($lockfile)) {
throw new Exception('目录 [ ' . APP_PATH . ' ] 不可写!');
}
}
foreach ($build as $module => $list) {
if ('__dir__' == $module) {
// 创建目录列表
self::buildDir($list);
} elseif ('__file__' == $module) {
// 创建文件列表
self::buildFile($list);
} else {
// 创建模块
self::buildModule($module, $list);
}
}
// 解除锁定
unlink($lockfile);
}
// 创建目录
protected static function buildDir($list)
{
foreach ($list as $dir) {
if (!is_dir(APP_PATH . $dir)) {
// 创建目录
mkdir(APP_PATH . $dir, 0777, true);
}
}
}
// 创建文件
protected static function buildFile($list)
{
foreach ($list as $file) {
if (!is_dir(APP_PATH . dirname($file))) {
// 创建目录
mkdir(APP_PATH . dirname($file), 0777, true);
}
if (!is_file(APP_PATH . $file)) {
file_put_contents(APP_PATH . $file, '');
}
}
}
// 创建模块
protected static function buildModule($module, $list)
{
if (!is_dir(APP_PATH . $module)) {
// 创建模块目录
mkdir(APP_PATH . $module);
}
// 创建配置文件和公共文件
self::buildCommon($module);
// 创建模块的默认页面
self::buildHello($module);
// 创建子目录和文件
foreach ($list as $path => $file) {
$modulePath = APP_PATH . $module . '/';
if ('__dir__' == $path) {
// 生成子目录
foreach ($file as $dir) {
if (!is_dir($modulePath . $dir)) {
// 创建目录
mkdir($modulePath . $dir, 0777, true);
}
}
} elseif ('__file__' == $path) {
// 生成(空白)文件
foreach ($file as $name) {
if (!is_file($modulePath . $name)) {
file_put_contents($modulePath . $name, '');
}
}
} else {
// 生成相关MVC文件
foreach ($file as $val) {
$filename = $modulePath . $path . '/' . Loader::parseName($val) . EXT;
switch ($path) {
case CONTROLLER_LAYER: // 控制器
$content = "<?php\nnamespace {$module}\\{$path};\n\nclass {$val} {\n\n}";
break;
case MODEL_LAYER: // 模型
$content = "<?php\nnamespace {$module}\\{$path};\n\nclass {$val} extends \Think\Model{\n\n}";
break;
case VIEW_LAYER: // 视图
$filename = $modulePath . $path . '/' . Loader::parseName($val) . '.html';
if (!is_dir(dirname($filename))) {
// 创建目录
mkdir(dirname($filename), 0777, true);
}
$content = '';
break;
default:
// 其他文件
$content = "<?php\nnamespace {$module}\\{$path};\n\nclass {$val} {\n\n}";
}
if (!is_file($filename)) {
file_put_contents($filename, $content);
}
}
}
}
}
// 创建欢迎页面
protected static function buildHello($module)
{
$filename = APP_PATH . $module . '/' . CONTROLLER_LAYER . '/' . Config::get('default_module') . EXT;
if (!is_file($filename)) {
$content = file_get_contents(THINK_PATH . 'tpl/default_index.tpl');
$content = str_replace('{$module}', $module, $content);
if (!is_dir(APP_PATH . $module . '/' . CONTROLLER_LAYER)) {
mkdir(APP_PATH . $module . '/' . CONTROLLER_LAYER);
}
file_put_contents($filename, $content);
}
}
// 创建模块公共文件
protected static function buildCommon($module)
{
if (!is_file(APP_PATH . $module . '/common.php')) {
file_put_contents(APP_PATH . $module . '/common.php', "<?php\n");
}
if (!is_file(APP_PATH . $module . '/config.php')) {
file_put_contents(APP_PATH . $module . '/config.php', "<?php\nreturn [\n\n];");
}
if (!is_file(APP_PATH . $module . '/alias.php')) {
file_put_contents(APP_PATH . $module . '/alias.php', "<?php\nreturn [\n\n];");
}
}
}