[更新]ComposerUpdate

This commit is contained in:
Anyon 2018-04-08 17:46:59 +08:00
parent b8ef8028a0
commit f17e5c00a3
32 changed files with 197 additions and 185 deletions

View File

@ -138,6 +138,8 @@ return [
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
'template' => [ 'template' => [
// 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写
'auto_rule' => 1,
// 模板引擎类型 支持 php think 支持扩展 // 模板引擎类型 支持 php think 支持扩展
'type' => 'Think', 'type' => 'Think',
// 视图基础目录,配置目录为所有模块的视图起始目录 // 视图基础目录,配置目录为所有模块的视图起始目录

View File

@ -29,7 +29,6 @@ use think\facade\Request;
use think\facade\Route; use think\facade\Route;
use think\facade\Session; use think\facade\Session;
use think\facade\Url; use think\facade\Url;
use think\Loader;
use think\Response; use think\Response;
use think\route\RuleItem; use think\route\RuleItem;
@ -659,10 +658,6 @@ if (!function_exists('view')) {
*/ */
function view($template = '', $vars = [], $code = 200, $filter = null) function view($template = '', $vars = [], $code = 200, $filter = null)
{ {
if ('' === $template) {
$template = Loader::parseName(request()->action(true));
}
return Response::create($template, 'view', $code)->assign($vars)->filter($filter); return Response::create($template, 'view', $code)->assign($vars)->filter($filter);
} }
} }

View File

@ -20,7 +20,7 @@ use think\route\Dispatch;
*/ */
class App implements \ArrayAccess class App implements \ArrayAccess
{ {
const VERSION = '5.1.7'; const VERSION = '5.1.8';
/** /**
* 当前模块路径 * 当前模块路径
@ -269,12 +269,13 @@ class App implements \ArrayAccess
if ('' == $module) { if ('' == $module) {
// 加载系统助手函数 // 加载系统助手函数
include $this->thinkPath . 'helper.php'; include $this->thinkPath . 'helper.php';
// 加载全局中间件 }
if (is_file($path . 'middleware.php')) {
$middleware = include $path . 'middleware.php'; // 加载中间件
if (is_array($middleware)) { if (is_file($path . 'middleware.php')) {
$this->middleware->import($middleware); $middleware = include $path . 'middleware.php';
} if (is_array($middleware)) {
$this->middleware->import($middleware);
} }
} }
@ -492,6 +493,10 @@ class App implements \ArrayAccess
} }
} }
if (is_file($this->runtimePath . 'rule_regex.php')) {
$this->route->setRuleRegexs(include $this->runtimePath . 'rule_regex.php');
}
// 是否强制路由模式 // 是否强制路由模式
$must = !is_null($this->routeMust) ? $this->routeMust : $this->config('app.url_route_must'); $must = !is_null($this->routeMust) ? $this->routeMust : $this->config('app.url_route_must');

View File

@ -165,7 +165,7 @@ class Container
* 创建类的实例 * 创建类的实例
* @access public * @access public
* @param string $abstract 类名或者标识 * @param string $abstract 类名或者标识
* @param array|true $args 变量 * @param array|true $vars 变量
* @param bool $newInstance 是否每次创建新的实例 * @param bool $newInstance 是否每次创建新的实例
* @return object * @return object
*/ */

View File

@ -118,10 +118,6 @@ class Controller
*/ */
protected function fetch($template = '', $vars = [], $config = []) protected function fetch($template = '', $vars = [], $config = [])
{ {
if ('' === $template) {
$template = Loader::parseName($this->request->action(true));
}
return $this->view->fetch($template, $vars, $config); return $this->view->fetch($template, $vars, $config);
} }

View File

@ -58,7 +58,9 @@ class Loader
// 注册系统自动加载 // 注册系统自动加载
spl_autoload_register($autoload ?: 'think\\Loader::autoload', true, true); spl_autoload_register($autoload ?: 'think\\Loader::autoload', true, true);
$path = realpath(dirname($_SERVER['SCRIPT_FILENAME'])); $scriptName = 'cli' == PHP_SAPI ? getcwd() . DIRECTORY_SEPARATOR . $_SERVER['argv'][0] : $_SERVER['SCRIPT_FILENAME'];
$path = realpath(dirname($scriptName));
if ('cli-server' == PHP_SAPI || !is_file('./think')) { if ('cli-server' == PHP_SAPI || !is_file('./think')) {
$rootPath = dirname($path) . DIRECTORY_SEPARATOR; $rootPath = dirname($path) . DIRECTORY_SEPARATOR;

View File

@ -80,6 +80,9 @@ class Log implements LoggerInterface
$this->config = $config; $this->config = $config;
unset($config['type']); unset($config['type']);
if (!empty($config['close'])) {
$this->allowWrite = false;
}
if (class_exists($class)) { if (class_exists($class)) {
$this->driver = new $class($config); $this->driver = new $class($config);

View File

@ -11,6 +11,10 @@
namespace think; namespace think;
use InvalidArgumentException;
use LogicException;
use think\exception\HttpResponseException;
class Middleware class Middleware
{ {
protected $queue = []; protected $queue = [];
@ -33,7 +37,9 @@ class Middleware
$middleware = $this->buildMiddleware($middleware); $middleware = $this->buildMiddleware($middleware);
$this->queue[] = $middleware; if ($middleware) {
$this->queue[] = $middleware;
}
} }
/** /**
@ -47,7 +53,9 @@ class Middleware
$middleware = $this->buildMiddleware($middleware); $middleware = $this->buildMiddleware($middleware);
array_unshift($this->queue, $middleware); if ($middleware) {
array_unshift($this->queue, $middleware);
}
} }
/** /**
@ -73,25 +81,27 @@ class Middleware
} }
if ($middleware instanceof \Closure) { if ($middleware instanceof \Closure) {
return [$middleware, null]; return [$middleware, isset($param) ? $param : null];
} }
if (!is_string($middleware)) { if (!is_string($middleware)) {
throw new \InvalidArgumentException('The middleware is invalid'); throw new InvalidArgumentException('The middleware is invalid');
} }
if (false === strpos($middleware, '\\')) { if (false === strpos($middleware, '\\')) {
$value = Container::get('config')->get('middleware.' . $middleware); $value = Container::get('config')->get('middleware.' . $middleware);
$class = $value ?: Container::get('app')->getNamespace() . '\\http\\middleware\\' . $middleware; $middleware = $value ?: Container::get('app')->getNamespace() . '\\http\\middleware\\' . $middleware;
} else {
$class = $middleware;
} }
if (strpos($class, ':')) { if (is_array($middleware)) {
list($class, $param) = explode(':', $class, 2); return $this->import($middleware);
} }
return [[Container::get($class), 'handle'], isset($param) ? $param : null]; if (strpos($middleware, ':')) {
list($middleware, $param) = explode(':', $middleware, 2);
}
return [[Container::get($middleware), 'handle'], isset($param) ? $param : null];
} }
protected function resolve() protected function resolve()
@ -99,19 +109,23 @@ class Middleware
return function (Request $request) { return function (Request $request) {
$middleware = array_shift($this->queue); $middleware = array_shift($this->queue);
if (null !== $middleware) { if (null === $middleware) {
list($call, $param) = $middleware; throw new InvalidArgumentException('The queue was exhausted, with no response returned');
$response = call_user_func_array($call, [$request, $this->resolve(), $param]);
if (!$response instanceof Response) {
throw new \LogicException('The middleware must return Response instance');
}
return $response;
} else {
throw new \InvalidArgumentException('The queue was exhausted, with no response returned');
} }
list($call, $param) = $middleware;
try {
$response = call_user_func_array($call, [$request, $this->resolve(), $param]);
} catch (HttpResponseException $exception) {
$response = $exception->getResponse();
}
if (!$response instanceof Response) {
throw new LogicException('The middleware must return Response instance');
}
return $response;
}; };
} }

View File

@ -323,10 +323,12 @@ class Request
$server['PATH_INFO'] = ''; $server['PATH_INFO'] = '';
$server['REQUEST_METHOD'] = strtoupper($method); $server['REQUEST_METHOD'] = strtoupper($method);
$info = parse_url($uri); $info = parse_url($uri);
if (isset($info['host'])) { if (isset($info['host'])) {
$server['SERVER_NAME'] = $info['host']; $server['SERVER_NAME'] = $info['host'];
$server['HTTP_HOST'] = $info['host']; $server['HTTP_HOST'] = $info['host'];
} }
if (isset($info['scheme'])) { if (isset($info['scheme'])) {
if ('https' === $info['scheme']) { if ('https' === $info['scheme']) {
$server['HTTPS'] = 'on'; $server['HTTPS'] = 'on';
@ -336,27 +338,34 @@ class Request
$server['SERVER_PORT'] = 80; $server['SERVER_PORT'] = 80;
} }
} }
if (isset($info['port'])) { if (isset($info['port'])) {
$server['SERVER_PORT'] = $info['port']; $server['SERVER_PORT'] = $info['port'];
$server['HTTP_HOST'] = $server['HTTP_HOST'] . ':' . $info['port']; $server['HTTP_HOST'] = $server['HTTP_HOST'] . ':' . $info['port'];
} }
if (isset($info['user'])) { if (isset($info['user'])) {
$server['PHP_AUTH_USER'] = $info['user']; $server['PHP_AUTH_USER'] = $info['user'];
} }
if (isset($info['pass'])) { if (isset($info['pass'])) {
$server['PHP_AUTH_PW'] = $info['pass']; $server['PHP_AUTH_PW'] = $info['pass'];
} }
if (!isset($info['path'])) { if (!isset($info['path'])) {
$info['path'] = '/'; $info['path'] = '/';
} }
$options = [];
$options = [];
$queryString = '';
$options[strtolower($method)] = $params; $options[strtolower($method)] = $params;
$queryString = '';
if (isset($info['query'])) { if (isset($info['query'])) {
parse_str(html_entity_decode($info['query']), $query); parse_str(html_entity_decode($info['query']), $query);
if (!empty($params)) { if (!empty($params)) {
$params = array_replace($query, $params); $params = array_replace($query, $params);
$queryString = http_build_query($query, '', '&'); $queryString = http_build_query($params, '', '&');
} else { } else {
$params = $query; $params = $query;
$queryString = $info['query']; $queryString = $info['query'];
@ -364,6 +373,7 @@ class Request
} elseif (!empty($params)) { } elseif (!empty($params)) {
$queryString = http_build_query($params, '', '&'); $queryString = http_build_query($params, '', '&');
} }
if ($queryString) { if ($queryString) {
parse_str($queryString, $get); parse_str($queryString, $get);
$options['get'] = isset($options['get']) ? array_merge($get, $options['get']) : $get; $options['get'] = isset($options['get']) ? array_merge($get, $options['get']) : $get;
@ -1557,7 +1567,11 @@ class Request
return $ip[$type]; return $ip[$type];
} }
if ($adv) { $httpAgentIp = $this->config->get('http_agent_ip');
if ($httpAgentIp && isset($_SERVER[$httpAgentIp])) {
$ip = $_SERVER[$httpAgentIp];
} elseif ($adv) {
if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$arr = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']); $arr = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
$pos = array_search('unknown', $arr); $pos = array_search('unknown', $arr);

View File

@ -313,6 +313,8 @@ class Route
{ {
if (is_null($domain)) { if (is_null($domain)) {
$domain = $this->domain; $domain = $this->domain;
} elseif (!strpos($domain, '.')) {
$domain .= '.' . $this->request->rootDomain();
} }
$subDomain = $this->request->subDomain(); $subDomain = $this->request->subDomain();
@ -596,8 +598,7 @@ class Route
$group = new RuleGroup($this, $this->group, $rule, null, $option, $pattern); $group = new RuleGroup($this, $this->group, $rule, null, $option, $pattern);
foreach ($this->methodPrefix as $type => $val) { foreach ($this->methodPrefix as $type => $val) {
$item = $this->$type(':action', $val . ':action'); $group->addRule('<action>', $val . '<action>', $type);
$group->addRuleItem($item, $type);
} }
return $group->prefix($route . '/'); return $group->prefix($route . '/');

View File

@ -124,7 +124,7 @@ class Url
if ($alias) { if ($alias) {
// 别名路由解析 // 别名路由解析
foreach ($alias as $key => $item) { foreach ($alias as $key => $item) {
$val = $item->gerRoute(); $val = $item->getRoute();
if (0 === strpos($url, $val)) { if (0 === strpos($url, $val)) {
$url = $key . substr($url, strlen($val)); $url = $key . substr($url, strlen($val));
@ -148,7 +148,7 @@ class Url
// 检测URL绑定 // 检测URL绑定
if (!$this->bindCheck) { if (!$this->bindCheck) {
$bind = $this->app['route']->getBind(); $bind = $this->app['route']->getBind($domain ?: null);
if ($bind && 0 === strpos($url, $bind)) { if ($bind && 0 === strpos($url, $bind)) {
$url = substr($url, strlen($bind) + 1); $url = substr($url, strlen($bind) + 1);
@ -252,11 +252,11 @@ class Url
return ''; return '';
} }
$rootDomain = $this->app['request']->rootDomain();
if (true === $domain) { if (true === $domain) {
// 自动判断域名 // 自动判断域名
$domain = $this->app['config']->get('app_host') ?: $this->app['request']->host(); $domain = $this->app['config']->get('app_host') ?: $this->app['request']->host();
$rootDomain = $this->app['config']->get('url_domain_root');
$domains = $this->app['route']->getDomains(); $domains = $this->app['route']->getDomains();
@ -286,6 +286,8 @@ class Url
} }
} }
} }
} elseif (!strpos($domain, '.')) {
$domain .= '.' . $rootDomain;
} }
if (false !== strpos($domain, '://')) { if (false !== strpos($domain, '://')) {

View File

@ -749,7 +749,7 @@ class Validate
$result = in_array($value, [true, false, 0, 1, '0', '1'], true); $result = in_array($value, [true, false, 0, 1, '0', '1'], true);
break; break;
case 'number': case 'number':
$result = is_numeric($value); $result = ctype_digit($value);
break; break;
case 'array': case 'array':
// 是否为数组 // 是否为数组

View File

@ -59,10 +59,11 @@ class File extends Driver
private function init() private function init()
{ {
// 创建项目缓存目录 // 创建项目缓存目录
if (!is_dir($this->options['path'])) { try {
if (mkdir($this->options['path'], 0755, true)) { if (!is_dir($this->options['path']) && mkdir($this->options['path'], 0755, true)) {
return true; return true;
} }
} catch (\Exception $e) {
} }
return false; return false;
@ -92,7 +93,10 @@ class File extends Driver
$dir = dirname($filename); $dir = dirname($filename);
if ($auto && !is_dir($dir)) { if ($auto && !is_dir($dir)) {
mkdir($dir, 0755, true); try {
mkdir($dir, 0755, true);
} catch (\Exception $e) {
}
} }
return $filename; return $filename;

View File

@ -203,39 +203,4 @@ class Redis extends Driver
return $this->handler->flushDB(); return $this->handler->flushDB();
} }
/**
* 如果不存在则写入缓存
* @access public
* @param string $name 缓存变量名
* @param mixed $value 存储数据
* @param int $expire 有效时间 0为永久
* @return mixed
*/
public function remember($name, $value, $expire = null)
{
if (is_null($expire)) {
$expire = $this->options['expire'];
}
// 没有过期参数时使用setnx
if (!$expire) {
$key = $this->getCacheKey($name);
$val = $this->serialize($value);
$res = $this->handler->setnx($key, $val);
if ($res) {
$this->writeTimes++;
return $value;
} else {
return $this->get($name);
}
}
if ($this->has($name)) {
return $this->get($name);
} else {
$this->set($name, $value, $expire);
}
return $value;
}
} }

View File

@ -143,11 +143,6 @@ abstract class Builder
case 'DEC': case 'DEC':
$result[$item] = $item . ' - ' . floatval($val[1]); $result[$item] = $item . ' - ' . floatval($val[1]);
break; break;
default:
$value = $this->parseArrayData($query, $val);
if ($value) {
$result[$item] = $value;
}
} }
} elseif (is_scalar($val)) { } elseif (is_scalar($val)) {
// 过滤非标量数据 // 过滤非标量数据
@ -158,18 +153,6 @@ abstract class Builder
return $result; return $result;
} }
/**
* 数组数据解析
* @access protected
* @param Query $query 查询对象
* @param array $data
* @return mixed
*/
protected function parseArrayData(Query $query, $data)
{
return false;
}
/** /**
* 数据绑定处理 * 数据绑定处理
* @access protected * @access protected
@ -492,13 +475,13 @@ abstract class Builder
/** /**
* 表达式查询 * 表达式查询
* @access protected * @access protected
* @param Query $query 查询对象 * @param Query $query 查询对象
* @param string $key * @param string $key
* @param string $exp * @param string $exp
* @param mixed $value * @param Expression $value
* @param string $field * @param string $field
* @param string $bindName * @param string $bindName
* @param integer $bindType * @param integer $bindType
* @return string * @return string
*/ */
protected function parseExp(Query $query, $key, $exp, Expression $value, $field, $bindName, $bindType) protected function parseExp(Query $query, $key, $exp, Expression $value, $field, $bindName, $bindType)

View File

@ -173,33 +173,6 @@ class Mysql extends Builder
return $fieldsStr; return $fieldsStr;
} }
/**
* 数组数据解析
* @access protected
* @param Query $query 查询对象
* @param array $data
* @return mixed
*/
protected function parseArrayData(Query $query, $data)
{
list($type, $value) = $data;
switch (strtolower($type)) {
case 'point':
$fun = isset($data[2]) ? $data[2] : 'GeomFromText';
$point = isset($data[3]) ? $data[3] : 'POINT';
if (is_array($value)) {
$value = implode(' ', $value);
}
$result = $fun . '(\'' . $point . '(' . $value . ')\')';
break;
default:
$result = false;
}
return $result;
}
/** /**
* 随机排序 * 随机排序
* @access protected * @access protected

View File

@ -61,8 +61,11 @@ class File
$filename = date('Ymd') . $cli . '.log'; $filename = date('Ymd') . $cli . '.log';
$files = glob($this->config['path'] . '*.log'); $files = glob($this->config['path'] . '*.log');
if (count($files) > $this->config['max_files']) { try {
unlink($files[0]); if (count($files) > $this->config['max_files']) {
unlink($files[0]);
}
} catch (\Exception $e) {
} }
} else { } else {
$filename = date('Ym') . DIRECTORY_SEPARATOR . date('d') . $cli . '.log'; $filename = date('Ym') . DIRECTORY_SEPARATOR . date('d') . $cli . '.log';

View File

@ -32,8 +32,12 @@ abstract class Dispatch
$this->dispatch = $dispatch; $this->dispatch = $dispatch;
$this->param = $param; $this->param = $param;
$this->code = $code; $this->code = $code;
$this->init();
} }
protected function init()
{}
public function convert($convert) public function convert($convert)
{ {
$this->convert = $convert; $this->convert = $convert;

View File

@ -20,6 +20,8 @@ use think\route\dispatch\Module as ModuleDispatch;
class Domain extends RuleGroup class Domain extends RuleGroup
{ {
protected $bind;
/** /**
* 架构函数 * 架构函数
* @access public * @access public
@ -68,6 +70,12 @@ class Domain extends RuleGroup
return $result; return $result;
} }
// 添加域名中间件
if (!empty($this->option['middleware'])) {
Container::get('middleware')->import($this->option['middleware']);
unset($this->option['middleware']);
}
return parent::check($request, $url, $depr, $completeMatch); return parent::check($request, $url, $depr, $completeMatch);
} }
@ -79,6 +87,7 @@ class Domain extends RuleGroup
*/ */
public function bind($bind) public function bind($bind)
{ {
$this->bind = $bind;
$this->router->bind($bind, $this->domain); $this->router->bind($bind, $this->domain);
return $this; return $this;
@ -110,10 +119,8 @@ class Domain extends RuleGroup
*/ */
private function checkUrlBind($url, $depr = '/') private function checkUrlBind($url, $depr = '/')
{ {
$bind = $this->router->getBind($this->domain); if (!empty($this->bind)) {
$bind = $this->bind;
if (!empty($bind)) {
$this->parseBindAppendParam($bind); $this->parseBindAppendParam($bind);
// 记录绑定信息 // 记录绑定信息

View File

@ -97,6 +97,16 @@ abstract class Rule
return $this->name; return $this->name;
} }
/**
* 获取Parent对象
* @access public
* @return $this|null
*/
public function getParent()
{
return $this->parent;
}
/** /**
* 获取变量规则定义 * 获取变量规则定义
* @access public * @access public
@ -635,9 +645,7 @@ abstract class Rule
{ {
// 添加中间件 // 添加中间件
if (!empty($option['middleware'])) { if (!empty($option['middleware'])) {
foreach ($option['middleware'] as $middleware) { Container::get('middleware')->import($option['middleware']);
Container::get('middleware')->add($middleware);
}
} }
// 绑定模型数据 // 绑定模型数据

View File

@ -232,7 +232,7 @@ class RuleGroup extends Rule
*/ */
public function lazy($lazy = true) public function lazy($lazy = true)
{ {
if (!$lazy && !is_object($this->rule)) { if (!$lazy) {
$this->parseGroupRule($this->rule); $this->parseGroupRule($this->rule);
$this->rule = null; $this->rule = null;
} }

View File

@ -139,6 +139,20 @@ class RuleItem extends Rule
return $this; return $this;
} }
/**
* 设置别名
* @access public
* @param string $name
* @return $this
*/
public function name($name)
{
$this->name = $name;
$this->setRuleName(true);
return $this;
}
/** /**
* 设置路由标识 用于URL反解生成 * 设置路由标识 用于URL反解生成
* @access protected * @access protected

View File

@ -25,7 +25,7 @@ class RuleName
*/ */
public function set($name, $value, $first = false) public function set($name, $value, $first = false)
{ {
if ($first) { if ($first && isset($this->item[$name])) {
array_unshift($this->item[$name], $value); array_unshift($this->item[$name], $value);
} else { } else {
$this->item[$name][] = $value; $this->item[$name][] = $value;

View File

@ -20,7 +20,10 @@ use think\route\Dispatch;
class Module extends Dispatch class Module extends Dispatch
{ {
public function run() protected $controller;
protected $actionName;
protected function init()
{ {
$result = $this->dispatch; $result = $this->dispatch;
@ -78,21 +81,25 @@ class Module extends Dispatch
// 是否自动转换控制器和操作名 // 是否自动转换控制器和操作名
$convert = is_bool($this->convert) ? $this->convert : $this->app->config('app.url_convert'); $convert = is_bool($this->convert) ? $this->convert : $this->app->config('app.url_convert');
// 获取控制器名 // 获取控制器名
$controller = strip_tags($result[1] ?: $this->app->config('app.default_controller')); $controller = strip_tags($result[1] ?: $this->app->config('app.default_controller'));
$controller = $convert ? strtolower($controller) : $controller; $this->controller = $convert ? strtolower($controller) : $controller;
// 获取操作名 // 获取操作名
$actionName = strip_tags($result[2] ?: $this->app->config('app.default_action')); $this->actionName = strip_tags($result[2] ?: $this->app->config('app.default_action'));
// 设置当前请求的控制器、操作 // 设置当前请求的控制器、操作
$this->app['request']->controller(Loader::parseName($controller, 1))->action($actionName); $this->app['request']->controller(Loader::parseName($this->controller, 1))->action($this->actionName);
// 监听module_init // 监听module_init
$this->app['hook']->listen('module_init'); $this->app['hook']->listen('module_init');
}
public function run()
{
// 实例化控制器 // 实例化控制器
try { try {
$instance = $this->app->controller($controller, $instance = $this->app->controller($this->controller,
$this->app->config('app.url_controller_layer'), $this->app->config('app.url_controller_layer'),
$this->app->config('app.controller_suffix'), $this->app->config('app.controller_suffix'),
$this->app->config('app.empty_controller')); $this->app->config('app.empty_controller'));
@ -101,7 +108,7 @@ class Module extends Dispatch
} }
// 获取当前操作名 // 获取当前操作名
$action = $actionName . $this->app->config('app.action_suffix'); $action = $this->actionName . $this->app->config('app.action_suffix');
if (is_callable([$instance, $action])) { if (is_callable([$instance, $action])) {
// 执行操作方法 // 执行操作方法
@ -121,7 +128,7 @@ class Module extends Dispatch
} elseif (is_callable([$instance, '_empty'])) { } elseif (is_callable([$instance, '_empty'])) {
// 空操作 // 空操作
$call = [$instance, '_empty']; $call = [$instance, '_empty'];
$vars = [$actionName]; $vars = [$this->actionName];
$reflect = new ReflectionMethod($instance, '_empty'); $reflect = new ReflectionMethod($instance, '_empty');
} else { } else {
// 操作不存在 // 操作不存在
@ -129,7 +136,6 @@ class Module extends Dispatch
} }
$this->app['hook']->listen('action_begin', $call); $this->app['hook']->listen('action_begin', $call);
return Container::getInstance()->invokeReflectMethod($instance, $reflect, $vars); return Container::getInstance()->invokeReflectMethod($instance, $reflect, $vars);
} }
} }

View File

@ -17,13 +17,18 @@ use think\route\Dispatch;
class Url extends Dispatch class Url extends Dispatch
{ {
public function run() protected function init()
{ {
// 解析默认的URL规则 // 解析默认的URL规则
$url = str_replace($this->param['depr'], '|', $this->dispatch); $url = str_replace($this->param['depr'], '|', $this->dispatch);
$result = $this->parseUrl($url); $result = $this->parseUrl($url);
return (new Module($result))->run(); $this->dispatch = new Module($result);
}
public function run()
{
return $this->dispatch->run();
} }
/** /**

View File

@ -19,6 +19,8 @@ class Php
{ {
// 模板引擎参数 // 模板引擎参数
protected $config = [ protected $config = [
// 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写
'auto_rule' => 1,
// 视图基础目录(集中式) // 视图基础目录(集中式)
'view_base' => '', 'view_base' => '',
// 模板起始路径 // 模板起始路径
@ -139,7 +141,7 @@ class Php
if ($controller) { if ($controller) {
if ('' == $template) { if ('' == $template) {
// 如果模板文件名为空 按照默认规则定位 // 如果模板文件名为空 按照默认规则定位
$template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . $request->action(); $template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . (1 == $this->config['auto_rule'] ? Loader::parseName($request->action(true)) : $request->action());
} elseif (false === strpos($template, $depr)) { } elseif (false === strpos($template, $depr)) {
$template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . $template; $template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . $template;
} }

View File

@ -22,6 +22,8 @@ class Think
private $template; private $template;
// 模板引擎参数 // 模板引擎参数
protected $config = [ protected $config = [
// 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写
'auto_rule' => 1,
// 视图基础目录(集中式) // 视图基础目录(集中式)
'view_base' => '', 'view_base' => '',
// 模板起始路径 // 模板起始路径
@ -133,7 +135,7 @@ class Think
if ($controller) { if ($controller) {
if ('' == $template) { if ('' == $template) {
// 如果模板文件名为空 按照默认规则定位 // 如果模板文件名为空 按照默认规则定位
$template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . $request->action(); $template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . (1 == $this->config['auto_rule'] ? Loader::parseName($request->action(true)) : $request->action());
} elseif (false === strpos($template, $depr)) { } elseif (false === strpos($template, $depr)) {
$template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . $template; $template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . $template;
} }

2
vendor/autoload.php vendored
View File

@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php'; require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit95af81df6ac420fb6c658e7c9ee159af::getLoader(); return ComposerAutoloaderInit89214cd95eb7c7c04f32b98e8012aa49::getLoader();

View File

@ -163,6 +163,7 @@ return array(
'app\\wechat\\controller\\News' => $baseDir . '/application/wechat/controller/News.php', 'app\\wechat\\controller\\News' => $baseDir . '/application/wechat/controller/News.php',
'app\\wechat\\controller\\Review' => $baseDir . '/application/wechat/controller/Review.php', 'app\\wechat\\controller\\Review' => $baseDir . '/application/wechat/controller/Review.php',
'app\\wechat\\controller\\Tags' => $baseDir . '/application/wechat/controller/Tags.php', 'app\\wechat\\controller\\Tags' => $baseDir . '/application/wechat/controller/Tags.php',
'app\\wechat\\controller\\api\\Js' => $baseDir . '/application/wechat/controller/api/Js.php',
'app\\wechat\\controller\\api\\Push' => $baseDir . '/application/wechat/controller/api/Push.php', 'app\\wechat\\controller\\api\\Push' => $baseDir . '/application/wechat/controller/api/Push.php',
'app\\wechat\\controller\\api\\Tools' => $baseDir . '/application/wechat/controller/api/Tools.php', 'app\\wechat\\controller\\api\\Tools' => $baseDir . '/application/wechat/controller/api/Tools.php',
'app\\wechat\\service\\FansService' => $baseDir . '/application/wechat/service/FansService.php', 'app\\wechat\\service\\FansService' => $baseDir . '/application/wechat/service/FansService.php',

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer // autoload_real.php @generated by Composer
class ComposerAutoloaderInit95af81df6ac420fb6c658e7c9ee159af class ComposerAutoloaderInit89214cd95eb7c7c04f32b98e8012aa49
{ {
private static $loader; private static $loader;
@ -19,15 +19,15 @@ class ComposerAutoloaderInit95af81df6ac420fb6c658e7c9ee159af
return self::$loader; return self::$loader;
} }
spl_autoload_register(array('ComposerAutoloaderInit95af81df6ac420fb6c658e7c9ee159af', 'loadClassLoader'), true, true); spl_autoload_register(array('ComposerAutoloaderInit89214cd95eb7c7c04f32b98e8012aa49', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(); self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit95af81df6ac420fb6c658e7c9ee159af', 'loadClassLoader')); spl_autoload_unregister(array('ComposerAutoloaderInit89214cd95eb7c7c04f32b98e8012aa49', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) { if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php'; require_once __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit95af81df6ac420fb6c658e7c9ee159af::getInitializer($loader)); call_user_func(\Composer\Autoload\ComposerStaticInit89214cd95eb7c7c04f32b98e8012aa49::getInitializer($loader));
} else { } else {
$map = require __DIR__ . '/autoload_namespaces.php'; $map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) { foreach ($map as $namespace => $path) {
@ -48,19 +48,19 @@ class ComposerAutoloaderInit95af81df6ac420fb6c658e7c9ee159af
$loader->register(true); $loader->register(true);
if ($useStaticLoader) { if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit95af81df6ac420fb6c658e7c9ee159af::$files; $includeFiles = Composer\Autoload\ComposerStaticInit89214cd95eb7c7c04f32b98e8012aa49::$files;
} else { } else {
$includeFiles = require __DIR__ . '/autoload_files.php'; $includeFiles = require __DIR__ . '/autoload_files.php';
} }
foreach ($includeFiles as $fileIdentifier => $file) { foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire95af81df6ac420fb6c658e7c9ee159af($fileIdentifier, $file); composerRequire89214cd95eb7c7c04f32b98e8012aa49($fileIdentifier, $file);
} }
return $loader; return $loader;
} }
} }
function composerRequire95af81df6ac420fb6c658e7c9ee159af($fileIdentifier, $file) function composerRequire89214cd95eb7c7c04f32b98e8012aa49($fileIdentifier, $file)
{ {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file; require $file;

View File

@ -4,7 +4,7 @@
namespace Composer\Autoload; namespace Composer\Autoload;
class ComposerStaticInit95af81df6ac420fb6c658e7c9ee159af class ComposerStaticInit89214cd95eb7c7c04f32b98e8012aa49
{ {
public static $files = array ( public static $files = array (
'1cfd2761b63b0a29ed23657ea394cb2d' => __DIR__ . '/..' . '/topthink/think-captcha/src/helper.php', '1cfd2761b63b0a29ed23657ea394cb2d' => __DIR__ . '/..' . '/topthink/think-captcha/src/helper.php',
@ -241,6 +241,7 @@ class ComposerStaticInit95af81df6ac420fb6c658e7c9ee159af
'app\\wechat\\controller\\News' => __DIR__ . '/../..' . '/application/wechat/controller/News.php', 'app\\wechat\\controller\\News' => __DIR__ . '/../..' . '/application/wechat/controller/News.php',
'app\\wechat\\controller\\Review' => __DIR__ . '/../..' . '/application/wechat/controller/Review.php', 'app\\wechat\\controller\\Review' => __DIR__ . '/../..' . '/application/wechat/controller/Review.php',
'app\\wechat\\controller\\Tags' => __DIR__ . '/../..' . '/application/wechat/controller/Tags.php', 'app\\wechat\\controller\\Tags' => __DIR__ . '/../..' . '/application/wechat/controller/Tags.php',
'app\\wechat\\controller\\api\\Js' => __DIR__ . '/../..' . '/application/wechat/controller/api/Js.php',
'app\\wechat\\controller\\api\\Push' => __DIR__ . '/../..' . '/application/wechat/controller/api/Push.php', 'app\\wechat\\controller\\api\\Push' => __DIR__ . '/../..' . '/application/wechat/controller/api/Push.php',
'app\\wechat\\controller\\api\\Tools' => __DIR__ . '/../..' . '/application/wechat/controller/api/Tools.php', 'app\\wechat\\controller\\api\\Tools' => __DIR__ . '/../..' . '/application/wechat/controller/api/Tools.php',
'app\\wechat\\service\\FansService' => __DIR__ . '/../..' . '/application/wechat/service/FansService.php', 'app\\wechat\\service\\FansService' => __DIR__ . '/../..' . '/application/wechat/service/FansService.php',
@ -257,9 +258,9 @@ class ComposerStaticInit95af81df6ac420fb6c658e7c9ee159af
public static function getInitializer(ClassLoader $loader) public static function getInitializer(ClassLoader $loader)
{ {
return \Closure::bind(function () use ($loader) { return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit95af81df6ac420fb6c658e7c9ee159af::$prefixLengthsPsr4; $loader->prefixLengthsPsr4 = ComposerStaticInit89214cd95eb7c7c04f32b98e8012aa49::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit95af81df6ac420fb6c658e7c9ee159af::$prefixDirsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInit89214cd95eb7c7c04f32b98e8012aa49::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit95af81df6ac420fb6c658e7c9ee159af::$classMap; $loader->classMap = ComposerStaticInit89214cd95eb7c7c04f32b98e8012aa49::$classMap;
}, null, ClassLoader::class); }, null, ClassLoader::class);
} }

View File

@ -175,17 +175,17 @@
}, },
{ {
"name": "topthink/framework", "name": "topthink/framework",
"version": "v5.1.7", "version": "v5.1.8",
"version_normalized": "5.1.7.0", "version_normalized": "5.1.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/top-think/framework.git", "url": "https://github.com/top-think/framework.git",
"reference": "81a93819dbbd66774405daf9c27a9219232dba9a" "reference": "8f6c84abd9e2f9db5a071168c0153724b54b083c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://files.phpcomposer.com/files/top-think/framework/81a93819dbbd66774405daf9c27a9219232dba9a.zip", "url": "https://files.phpcomposer.com/files/top-think/framework/8f6c84abd9e2f9db5a071168c0153724b54b083c.zip",
"reference": "81a93819dbbd66774405daf9c27a9219232dba9a", "reference": "8f6c84abd9e2f9db5a071168c0153724b54b083c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -201,7 +201,7 @@
"sebastian/phpcpd": "2.*", "sebastian/phpcpd": "2.*",
"squizlabs/php_codesniffer": "2.*" "squizlabs/php_codesniffer": "2.*"
}, },
"time": "2018-03-29T04:16:43+00:00", "time": "2018-04-06T05:28:49+00:00",
"type": "think-framework", "type": "think-framework",
"installation-source": "dist", "installation-source": "dist",
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
@ -269,8 +269,8 @@
}, },
{ {
"name": "symfony/options-resolver", "name": "symfony/options-resolver",
"version": "v3.4.6", "version": "v3.4.8",
"version_normalized": "3.4.6.0", "version_normalized": "3.4.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/options-resolver.git", "url": "https://github.com/symfony/options-resolver.git",