<?php
|
// +----------------------------------------------------------------------
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
// +----------------------------------------------------------------------
|
// | Copyright (c) 2006~2025 http://thinkphp.cn All rights reserved.
|
// +----------------------------------------------------------------------
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
// +----------------------------------------------------------------------
|
// | Author: liu21st <liu21st@gmail.com>
|
// +----------------------------------------------------------------------
|
declare (strict_types = 1);
|
|
namespace think\route;
|
|
use Closure;
|
use think\Container;
|
use think\middleware\AllowCrossDomain;
|
use think\middleware\CheckRequestCache;
|
use think\middleware\FormTokenCheck;
|
use think\Request;
|
use think\Route;
|
use think\route\dispatch\Callback as CallbackDispatch;
|
use think\route\dispatch\Controller as ControllerDispatch;
|
|
/**
|
* 路由规则基础类
|
*/
|
abstract class Rule
|
{
|
/**
|
* 路由标识
|
* @var string
|
*/
|
protected $name;
|
|
/**
|
* 所在域名
|
* @var string
|
*/
|
protected $domain;
|
|
/**
|
* 路由对象
|
* @var Route
|
*/
|
protected $router;
|
|
/**
|
* 路由所属分组
|
* @var RuleGroup
|
*/
|
protected $parent;
|
|
/**
|
* 路由规则
|
* @var mixed
|
*/
|
protected $rule;
|
|
/**
|
* 路由地址
|
* @var string|Closure
|
*/
|
protected $route;
|
|
/**
|
* 请求类型
|
* @var string
|
*/
|
protected $method = '*';
|
|
/**
|
* 路由变量
|
* @var array
|
*/
|
protected $vars = [];
|
|
/**
|
* 路由参数
|
* @var array
|
*/
|
protected $option = [];
|
|
/**
|
* 路由变量规则
|
* @var array
|
*/
|
protected $pattern = [];
|
|
/**
|
* 预定义变量规则
|
* @var array
|
*/
|
protected $regex = [
|
'int' => '\d+',
|
'float' => '\d+\.\d+',
|
'alpha' => '[A-Za-z]+',
|
'alphaNum' => '[A-Za-z0-9]+',
|
'alphaDash' => '[A-Za-z0-9\-\_]+',
|
];
|
|
/**
|
* 需要和分组合并的路由参数
|
* @var array
|
*/
|
protected $mergeOptions = ['model', 'append', 'middleware'];
|
|
abstract public function check(Request $request, string $url, bool $completeMatch = false);
|
|
/**
|
* 设置路由参数
|
* @access public
|
* @param array $option 参数
|
* @return $this
|
*/
|
public function option(array $option)
|
{
|
$this->option = array_merge($this->option, $option);
|
|
return $this;
|
}
|
|
/**
|
* 设置单个路由参数
|
* @access public
|
* @param string $name 参数名
|
* @param mixed $value 值
|
* @return $this
|
*/
|
public function setOption(string $name, $value)
|
{
|
$this->option[$name] = $value;
|
|
return $this;
|
}
|
|
/**
|
* 注册变量规则
|
* @access public
|
* @param array $regex 变量规则
|
* @return $this
|
*/
|
public function regex(array $regex)
|
{
|
$this->regex = array_merge($this->regex, $regex);
|
|
return $this;
|
}
|
|
/**
|
* 注册变量(正则)规则
|
* @access public
|
* @param array $pattern 变量规则
|
* @return $this
|
*/
|
public function pattern(array $pattern)
|
{
|
$this->pattern = array_merge($this->pattern, $pattern);
|
|
return $this;
|
}
|
|
/**
|
* 注册路由变量和请求变量的匹配规则(支持验证类的所有内置规则)
|
*
|
* @access public
|
* @param string $name 变量名
|
* @param mixed $rule 变量规则
|
* @return $this
|
*/
|
public function when(string | array $name, $rule = null)
|
{
|
if (is_array($name)) {
|
$this->option['var_rule'] = $name;
|
} else {
|
$this->option['var_rule'][$name] = $rule;
|
}
|
|
return $this;
|
}
|
|
/**
|
* 设置标识
|
* @access public
|
* @param string $name 标识名
|
* @return $this
|
*/
|
public function name(string $name)
|
{
|
$this->name = $name;
|
|
return $this;
|
}
|
|
/**
|
* 获取路由对象
|
* @access public
|
* @return Route
|
*/
|
public function getRouter(): Route
|
{
|
return $this->router;
|
}
|
|
/**
|
* 获取Name
|
* @access public
|
* @return string
|
*/
|
public function getName(): string
|
{
|
return $this->name ?: '';
|
}
|
|
/**
|
* 获取当前路由规则
|
* @access public
|
* @return mixed
|
*/
|
public function getRule()
|
{
|
return $this->rule;
|
}
|
|
/**
|
* 获取当前路由地址
|
* @access public
|
* @return mixed
|
*/
|
public function getRoute()
|
{
|
return $this->route;
|
}
|
|
/**
|
* 获取当前路由的变量
|
* @access public
|
* @return array
|
*/
|
public function getVars(): array
|
{
|
return $this->vars;
|
}
|
|
/**
|
* 获取Parent对象
|
* @access public
|
* @return $this|null
|
*/
|
public function getParent()
|
{
|
return $this->parent;
|
}
|
|
/**
|
* 获取路由所在域名
|
* @access public
|
* @return string
|
*/
|
public function getDomain(): string
|
{
|
return $this->domain ?: $this->parent->getDomain();
|
}
|
|
/**
|
* 获取路由参数
|
* @access public
|
* @param string $name 变量名
|
* @return mixed
|
*/
|
public function config(string $name = '')
|
{
|
return $this->router->config($name);
|
}
|
|
/**
|
* 获取变量规则定义
|
* @access public
|
* @param string $name 变量名
|
* @return mixed
|
*/
|
public function getPattern(string $name = '')
|
{
|
$pattern = $this->pattern;
|
|
if ($this->parent) {
|
$pattern = array_merge($this->parent->getPattern(), $pattern);
|
}
|
|
if ('' === $name) {
|
return $pattern;
|
}
|
|
return $pattern[$name] ?? null;
|
}
|
|
/**
|
* 获取路由参数定义
|
* @access public
|
* @param string $name 参数名
|
* @param mixed $default 默认值
|
* @return mixed
|
*/
|
public function getOption(string $name = '', $default = null)
|
{
|
$option = $this->option;
|
|
if ($this->parent) {
|
$parentOption = $this->parent->getOption();
|
|
// 合并分组参数
|
foreach ($this->mergeOptions as $item) {
|
if (isset($parentOption[$item]) && isset($option[$item])) {
|
$option[$item] = array_merge($parentOption[$item], $option[$item]);
|
}
|
}
|
|
$option = array_merge($parentOption, $option);
|
}
|
|
if ('' === $name) {
|
return $option;
|
}
|
|
return $option[$name] ?? $default;
|
}
|
|
/**
|
* 获取当前路由的请求类型
|
* @access public
|
* @return string
|
*/
|
public function getMethod(): string
|
{
|
return strtolower($this->method);
|
}
|
|
/**
|
* 设置路由请求类型
|
* @access public
|
* @param string $method 请求类型
|
* @return $this
|
*/
|
public function method(string $method)
|
{
|
return $this->setOption('method', strtolower($method));
|
}
|
|
/**
|
* 检查后缀
|
* @access public
|
* @param string $ext URL后缀
|
* @return $this
|
*/
|
public function ext(string $ext = '')
|
{
|
return $this->setOption('ext', $ext);
|
}
|
|
/**
|
* 检查禁止后缀
|
* @access public
|
* @param string $ext URL后缀
|
* @return $this
|
*/
|
public function denyExt(string $ext = '')
|
{
|
return $this->setOption('deny_ext', $ext);
|
}
|
|
/**
|
* 检查域名
|
* @access public
|
* @param string $domain 域名
|
* @return $this
|
*/
|
public function domain(string $domain)
|
{
|
$this->domain = $domain;
|
return $this->setOption('domain', $domain);
|
}
|
|
/**
|
* 是否区分大小写
|
* @access public
|
* @param bool $case 是否区分
|
* @return $this
|
*/
|
public function caseUrl(bool $case)
|
{
|
return $this->setOption('case_sensitive', $case);
|
}
|
|
/**
|
* 设置参数过滤检查
|
* @access public
|
* @param array $filter 参数过滤
|
* @return $this
|
*/
|
public function filter(array $filter)
|
{
|
$this->option['filter'] = $filter;
|
|
return $this;
|
}
|
|
/**
|
* 设置路由变量默认值
|
* @access public
|
* @param array $default 可选路由变量默认值
|
* @return $this
|
*/
|
public function default(array $default)
|
{
|
$this->option['default'] = $default;
|
|
return $this;
|
}
|
|
/**
|
* 设置路由自动注册中间件
|
* @access public
|
* @param bool $auto
|
* @return $this
|
*/
|
public function autoMiddleware(bool $auto = true)
|
{
|
$this->option['auto_middleware'] = $auto;
|
|
return $this;
|
}
|
|
/**
|
* 绑定模型
|
* @access public
|
* @param array|string|Closure $var 路由变量名 多个使用 & 分割
|
* @param string|Closure|null $model 绑定模型类
|
* @param bool $exception 是否抛出异常
|
* @return $this
|
*/
|
public function model(array | string | Closure $var, string | Closure | null $model = null, bool $exception = true)
|
{
|
if ($var instanceof Closure) {
|
$this->option['model'][] = $var;
|
} elseif (is_array($var)) {
|
$this->option['model'] = $var;
|
} elseif (is_null($model)) {
|
$this->option['model']['id'] = [$var, true];
|
} else {
|
$this->option['model'][$var] = [$model, $exception];
|
}
|
|
return $this;
|
}
|
|
/**
|
* 附加路由隐式参数
|
* @access public
|
* @param array $append 追加参数
|
* @return $this
|
*/
|
public function append(array $append = [])
|
{
|
$this->option['append'] = array_merge($this->option['append'] ?? [], $append);
|
|
return $this;
|
}
|
|
/**
|
* 绑定验证
|
* @access public
|
* @param mixed $validate 验证器类
|
* @param string|array $scene 验证场景
|
* @param array $message 验证提示
|
* @param bool $batch 批量验证
|
* @return $this
|
*/
|
public function validate($validate, string | array $scene = '', array $message = [], bool $batch = false)
|
{
|
$this->option['validate'] = [$validate, $scene, $message, $batch];
|
|
return $this;
|
}
|
|
/**
|
* 指定路由中间件
|
* @access public
|
* @param string|array|Closure $middleware 中间件
|
* @param mixed $params 参数
|
* @return $this
|
*/
|
public function middleware(string | array | Closure $middleware, ...$params)
|
{
|
if (empty($params) && is_array($middleware)) {
|
$this->option['middleware'] = array_merge($this->option['middleware'] ?? [], $middleware);
|
} else {
|
foreach ((array) $middleware as $item) {
|
$this->option['middleware'][] = [$item, $params];
|
}
|
}
|
|
return $this;
|
}
|
|
/**
|
* 设置不使用的中间件 留空则为全部不用
|
* @access public
|
* @param array $middleware 中间件
|
* @return $this
|
*/
|
public function withoutMiddleware(array $middleware = [])
|
{
|
$this->option['without_middleware'] = $middleware;
|
|
return $this;
|
}
|
|
/**
|
* 允许跨域
|
* @access public
|
* @param array $header 自定义Header
|
* @return $this
|
*/
|
public function allowCrossDomain(array $header = [])
|
{
|
return $this->middleware(AllowCrossDomain::class, $header);
|
}
|
|
/**
|
* 表单令牌验证
|
* @access public
|
* @param string $token 表单令牌token名称
|
* @return $this
|
*/
|
public function token(string $token = '__token__')
|
{
|
return $this->middleware(FormTokenCheck::class, $token);
|
}
|
|
/**
|
* 设置路由缓存
|
* @access public
|
* @param array|string|int $cache 缓存
|
* @return $this
|
*/
|
public function cache(array | string | int $cache)
|
{
|
return $this->middleware(CheckRequestCache::class, $cache);
|
}
|
|
/**
|
* 检查URL分隔符
|
* @access public
|
* @param string $depr URL分隔符
|
* @return $this
|
*/
|
public function depr(string $depr)
|
{
|
return $this->setOption('param_depr', $depr);
|
}
|
|
/**
|
* 设置需要合并的路由参数
|
* @access public
|
* @param array $option 路由参数
|
* @return $this
|
*/
|
public function mergeOptions(array $option = [])
|
{
|
$this->mergeOptions = array_merge($this->mergeOptions, $option);
|
return $this;
|
}
|
|
/**
|
* 检查是否为HTTPS请求
|
* @access public
|
* @param bool $https 是否为HTTPS
|
* @return $this
|
*/
|
public function https(bool $https = true)
|
{
|
return $this->setOption('https', $https);
|
}
|
|
/**
|
* 检查是否为JSON请求
|
* @access public
|
* @param bool $json 是否为JSON
|
* @return $this
|
*/
|
public function json(bool $json = true)
|
{
|
return $this->setOption('json', $json);
|
}
|
|
/**
|
* 检查是否为AJAX请求
|
* @access public
|
* @param bool $ajax 是否为AJAX
|
* @return $this
|
*/
|
public function ajax(bool $ajax = true)
|
{
|
return $this->setOption('ajax', $ajax);
|
}
|
|
/**
|
* 检查是否为PJAX请求
|
* @access public
|
* @param bool $pjax 是否为PJAX
|
* @return $this
|
*/
|
public function pjax(bool $pjax = true)
|
{
|
return $this->setOption('pjax', $pjax);
|
}
|
|
/**
|
* 路由到一个模板地址 需要额外传入的模板变量
|
* @access public
|
* @param array $view 视图
|
* @return $this
|
*/
|
public function view(array $view = [])
|
{
|
return $this->setOption('view', $view);
|
}
|
|
/**
|
* 通过闭包检查路由是否匹配
|
* @access public
|
* @param callable $match 闭包
|
* @return $this
|
*/
|
public function match(callable $match)
|
{
|
return $this->setOption('match', $match);
|
}
|
|
/**
|
* 设置路由完整匹配
|
* @access public
|
* @param bool $match 是否完整匹配
|
* @return $this
|
*/
|
public function completeMatch(bool $match = true)
|
{
|
return $this->setOption('complete_match', $match);
|
}
|
|
/**
|
* 是否去除URL最后的斜线
|
* @access public
|
* @param bool $remove 是否去除最后斜线
|
* @return $this
|
*/
|
public function removeSlash(bool $remove = true)
|
{
|
return $this->setOption('remove_slash', $remove);
|
}
|
|
/**
|
* 设置路由规则全局有效
|
* @access public
|
* @return $this
|
*/
|
public function crossDomainRule()
|
{
|
$this->router->setCrossDomainRule($this);
|
return $this;
|
}
|
|
/**
|
* 解析匹配到的规则路由
|
* @access public
|
* @param Request $request 请求对象
|
* @param string $rule 路由规则
|
* @param mixed $route 路由地址
|
* @param string $url URL地址
|
* @param array $option 路由参数
|
* @param array $matches 匹配的变量
|
* @return Dispatch
|
*/
|
public function parseRule(Request $request, string $rule, $route, string $url, array $option = [], array $matches = []): Dispatch
|
{
|
if (is_string($route) && isset($option['prefix'])) {
|
// 路由地址前缀
|
$route = $option['prefix'] . $route;
|
}
|
|
// 替换路由地址中的变量
|
$extraParams = true;
|
$search = $replace = [];
|
$depr = $this->config('pathinfo_depr');
|
|
foreach ($matches as $key => $value) {
|
$search[] = '<' . $key . '>';
|
$replace[] = $value;
|
$search[] = '{' . $key . '}';
|
$replace[] = $value;
|
$search[] = ':' . $key;
|
$replace[] = $value;
|
|
if (str_contains($value, $depr)) {
|
$extraParams = false;
|
}
|
}
|
|
if (is_string($route)) {
|
$route = str_replace($search, $replace, $route);
|
}
|
|
// 解析额外参数
|
if ($extraParams) {
|
$count = substr_count($rule, '/');
|
$url = array_slice(explode('|', $url), $count + 1);
|
$this->parseUrlParams(implode('/', $url), $matches);
|
}
|
|
foreach ($matches as $key => &$val) {
|
if (isset($this->pattern[$key]) && in_array($this->pattern[$key], ['\d+', 'int', 'float'])) {
|
$val = match ($this->pattern[$key]) {
|
'int', '\d+' => (int) $val,
|
'float' => (float) $val,
|
default => $val,
|
};
|
} elseif (in_array($key, ['__module__','__controller__','__action__'])) {
|
unset($matches[$key]);
|
}
|
}
|
|
$this->vars = $matches;
|
|
// 发起路由调度
|
return $this->dispatch($request, $route, $option);
|
}
|
|
/**
|
* 发起路由调度
|
* @access protected
|
* @param Request $request Request对象
|
* @param mixed $route 路由地址
|
* @param array $option 路由参数
|
* @return Dispatch
|
*/
|
protected function dispatch(Request $request, $route, array $option): Dispatch
|
{
|
if (isset($option['dispatcher']) && is_subclass_of($option['dispatcher'], Dispatch::class)) {
|
// 指定分组的调度处理对象
|
$result = new $option['dispatcher']($request, $this, $route, $this->vars, $option);
|
} elseif (is_subclass_of($route, Dispatch::class)) {
|
$result = new $route($request, $this, $route, $this->vars, $option);
|
} elseif ($route instanceof Closure) {
|
// 执行闭包
|
$result = new CallbackDispatch($request, $this, $route, $this->vars, $option);
|
} elseif (is_array($route)) {
|
// 路由到类的方法
|
$result = $this->dispatchMethod($request, $route, $option);
|
} elseif (str_contains($route, '@') || str_contains($route, '::') || str_contains($route, '\\')) {
|
// 路由到类的方法
|
$route = str_replace('::', '@', $route);
|
$result = $this->dispatchMethod($request, $route, $option);
|
} else {
|
// 路由到模块/控制器/操作
|
$result = $this->dispatchController($request, $route, $option);
|
}
|
|
return $result;
|
}
|
|
/**
|
* 调度到类的方法
|
* @access protected
|
* @param Request $request Request对象
|
* @param string|array $route 路由地址
|
* @return CallbackDispatch
|
*/
|
protected function dispatchMethod(Request $request, string | array $route, array $option = []): CallbackDispatch
|
{
|
if (is_string($route)) {
|
$path = $this->parseUrlPath($route);
|
|
$route = str_replace('/', '@', implode('/', $path));
|
$method = str_contains($route, '@') ? explode('@', $route) : $route;
|
} else {
|
$method = $route;
|
}
|
|
return new CallbackDispatch($request, $this, $method, $this->vars, $option);
|
}
|
|
/**
|
* 调度到控制器方法 规则:模块/控制器/操作
|
* @access protected
|
* @param Request $request Request对象
|
* @param string $route 路由地址
|
* @return ControllerDispatch
|
*/
|
protected function dispatchController(Request $request, string $route, array $option = []): ControllerDispatch
|
{
|
$path = $this->parseUrlPath($route);
|
|
// 路由到模块/控制器/操作
|
return new ControllerDispatch($request, $this, $path, $this->vars, $option);
|
}
|
|
/**
|
* 路由检查
|
* @access protected
|
* @param array $option 路由参数
|
* @param Request $request Request对象
|
* @return bool
|
*/
|
protected function checkOption(array $option, Request $request): bool
|
{
|
// 检查当前路由是否匹配
|
if (isset($option['match']) && is_callable($option['match'])) {
|
if (false === $option['match']($this, $request)) {
|
return false;
|
}
|
}
|
|
// 请求类型检测
|
if (!empty($option['method'])) {
|
if (is_string($option['method']) && false === stripos($option['method'], $request->method())) {
|
return false;
|
}
|
}
|
|
// AJAX PJAX 请求检查
|
foreach (['ajax', 'pjax', 'json'] as $item) {
|
if (isset($option[$item])) {
|
$call = 'is' . $item;
|
if ($option[$item] && !$request->$call() || !$option[$item] && $request->$call()) {
|
return false;
|
}
|
}
|
}
|
|
// 伪静态后缀检测
|
if ($request->url() != '/' && ((isset($option['ext']) && false === stripos('|' . $option['ext'] . '|', '|' . $request->ext() . '|'))
|
|| (isset($option['deny_ext']) && false !== stripos('|' . $option['deny_ext'] . '|', '|' . $request->ext() . '|')))) {
|
return false;
|
}
|
|
// 域名检查
|
if ((isset($option['domain']) && !in_array($option['domain'], [$request->host(true), $request->subDomain()]))) {
|
return false;
|
}
|
|
// HTTPS检查
|
if ((isset($option['https']) && $option['https'] && !$request->isSsl())
|
|| (isset($option['https']) && !$option['https'] && $request->isSsl())
|
) {
|
return false;
|
}
|
|
// 请求参数过滤
|
if (isset($option['filter'])) {
|
foreach ($option['filter'] as $name => $value) {
|
if ($request->param($name, '') != $value) {
|
return false;
|
}
|
}
|
}
|
|
return true;
|
}
|
|
/**
|
* 解析URL地址中的参数Request对象
|
* @access protected
|
* @param string $rule 路由规则
|
* @param array $var 变量
|
* @return void
|
*/
|
protected function parseUrlParams(string $url, array &$var = []): void
|
{
|
if ($url) {
|
preg_replace_callback('/(\w+)\/([^\/]+)/', function ($match) use (&$var) {
|
$var[$match[1]] = strip_tags($match[2]);
|
}, $url);
|
}
|
}
|
|
/**
|
* 解析URL的pathinfo参数
|
* @access public
|
* @param string $url URL地址
|
* @return array
|
*/
|
public function parseUrlPath(string $url): array
|
{
|
// 分隔符替换 确保路由定义使用统一的分隔符
|
$url = str_replace('|', '/', $url);
|
$url = trim($url, '/');
|
|
if (str_contains($url, '/')) {
|
// [模块/.../控制器/操作]
|
$path = explode('/', $url);
|
} else {
|
$path = [$url];
|
}
|
|
return $path;
|
}
|
|
/**
|
* 生成路由的正则规则
|
* @access protected
|
* @param string $rule 路由规则
|
* @param array $match 匹配的变量
|
* @param array $pattern 路由变量规则
|
* @param array $option 路由参数
|
* @param bool $completeMatch 路由是否完全匹配
|
* @param string $suffix 路由正则变量后缀
|
* @return string
|
*/
|
protected function buildRuleRegex(string $rule, array $match, array $pattern = [], array $option = [], bool $completeMatch = false, string $suffix = ''): string
|
{
|
foreach ($match as $name) {
|
$value = $this->buildNameRegex($name, $pattern, $suffix);
|
if ($value) {
|
$origin[] = $name;
|
$replace[] = $value;
|
}
|
}
|
|
// 是否区分 / 地址访问
|
if ('/' != $rule) {
|
if (!empty($option['remove_slash'])) {
|
$rule = rtrim($rule, '/');
|
} elseif (str_ends_with($rule, '/')) {
|
$rule = rtrim($rule, '/');
|
$hasSlash = true;
|
}
|
}
|
|
$regex = isset($replace) ? str_replace($origin, $replace, $rule) : $rule;
|
$regex = str_replace([')?/', ')?-'], [')/', ')-'], $regex);
|
|
if (isset($hasSlash)) {
|
$regex .= '/';
|
}
|
|
return $regex . ($completeMatch ? '$' : '');
|
}
|
|
/**
|
* 生成路由变量的正则规则
|
* @access protected
|
* @param string $name 路由变量
|
* @param array $pattern 变量规则
|
* @param string $suffix 路由正则变量后缀
|
* @return string
|
*/
|
protected function buildNameRegex(string $name, array $pattern, string $suffix): string
|
{
|
$optional = '';
|
$slash = substr($name, 0, 1);
|
|
if (in_array($slash, ['/', '-'])) {
|
$prefix = $slash;
|
$name = substr($name, 1);
|
$slash = substr($name, 0, 1);
|
} else {
|
$prefix = '';
|
}
|
|
if ('<' != $slash) {
|
return '';
|
}
|
|
if (str_contains($name, '?')) {
|
$name = substr($name, 1, -2);
|
$optional = '?';
|
} elseif (str_contains($name, '>')) {
|
$name = substr($name, 1, -1);
|
}
|
|
if (isset($pattern[$name])) {
|
$nameRule = $pattern[$name];
|
if (isset($this->regex[$nameRule])) {
|
$nameRule = $this->regex[$nameRule];
|
}
|
|
if (str_starts_with($nameRule, '/') && str_ends_with($nameRule, '/')) {
|
$nameRule = substr($nameRule, 1, -1);
|
}
|
} else {
|
$nameRule = $this->config('default_route_pattern');
|
}
|
|
return '(' . $prefix . '(?<' . $name . $suffix . '>' . $nameRule . '))' . $optional;
|
}
|
|
/**
|
* 设置路由参数
|
* @access public
|
* @param string $method 方法名
|
* @param array $args 调用参数
|
* @return $this
|
*/
|
public function __call($method, $args)
|
{
|
if (count($args) > 1) {
|
$args[0] = $args;
|
}
|
array_unshift($args, $method);
|
|
return call_user_func_array([$this, 'setOption'], $args);
|
}
|
|
public function __sleep()
|
{
|
return ['name', 'rule', 'route', 'method', 'vars', 'option', 'pattern'];
|
}
|
|
public function __wakeup()
|
{
|
$this->router = Container::pull('route');
|
}
|
|
public function __debugInfo()
|
{
|
return [
|
'name' => $this->name,
|
'rule' => $this->rule,
|
'route' => $this->route,
|
'method' => $this->method,
|
'vars' => $this->vars,
|
'option' => $this->option,
|
'pattern' => $this->pattern,
|
];
|
}
|
}
|