316 lines
13 KiB
PHP
Executable File
316 lines
13 KiB
PHP
Executable File
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||
// +----------------------------------------------------------------------
|
||
// | Author: liu21st <liu21st@gmail.com>
|
||
// +----------------------------------------------------------------------
|
||
namespace Think;
|
||
/**
|
||
* ThinkPHP路由解析类
|
||
*/
|
||
class Route {
|
||
|
||
// 路由检测
|
||
public static function check(){
|
||
$depr = C('URL_PATHINFO_DEPR');
|
||
$regx = preg_replace('/\.'.__EXT__.'$/i','',trim($_SERVER['PATH_INFO'],$depr));
|
||
// 分隔符替换 确保路由定义使用统一的分隔符
|
||
if('/' != $depr){
|
||
$regx = str_replace($depr,'/',$regx);
|
||
}
|
||
// URL映射定义(静态路由)
|
||
$maps = C('URL_MAP_RULES');
|
||
if(isset($maps[$regx])) {
|
||
$var = self::parseUrl($maps[$regx]);
|
||
$_GET = array_merge($var, $_GET);
|
||
return true;
|
||
}
|
||
// 动态路由处理
|
||
$routes = C('URL_ROUTE_RULES');
|
||
if(!empty($routes)) {
|
||
foreach ($routes as $rule=>$route){
|
||
if(is_numeric($rule)){
|
||
// 支持 array('rule','adddress',...) 定义路由
|
||
$rule = array_shift($route);
|
||
}
|
||
if(is_array($route) && isset($route[2])){
|
||
// 路由参数
|
||
$options = $route[2];
|
||
if(isset($options['ext']) && __EXT__ != $options['ext']){
|
||
// URL后缀检测
|
||
continue;
|
||
}
|
||
if(isset($options['method']) && REQUEST_METHOD != strtoupper($options['method'])){
|
||
// 请求类型检测
|
||
continue;
|
||
}
|
||
// 自定义检测
|
||
if(!empty($options['callback']) && is_callable($options['callback'])) {
|
||
if(false === call_user_func($options['callback'])) {
|
||
continue;
|
||
}
|
||
}
|
||
}
|
||
if(0===strpos($rule,'/') && preg_match($rule,$regx,$matches)) { // 正则路由
|
||
if($route instanceof \Closure) {
|
||
// 执行闭包
|
||
$result = self::invokeRegx($route, $matches);
|
||
// 如果返回布尔值 则继续执行
|
||
return is_bool($result) ? $result : exit;
|
||
}else{
|
||
return self::parseRegex($matches,$route,$regx);
|
||
}
|
||
}else{ // 规则路由
|
||
$len1 = substr_count($regx,'/');
|
||
$len2 = substr_count($rule,'/');
|
||
if($len1>=$len2 || strpos($rule,'[')) {
|
||
if('$' == substr($rule,-1,1)) {// 完整匹配
|
||
if($len1 != $len2) {
|
||
continue;
|
||
}else{
|
||
$rule = substr($rule,0,-1);
|
||
}
|
||
}
|
||
$match = self::checkUrlMatch($regx,$rule);
|
||
if(false !== $match) {
|
||
if($route instanceof \Closure) {
|
||
// 执行闭包
|
||
$result = self::invokeRule($route, $match);
|
||
// 如果返回布尔值 则继续执行
|
||
return is_bool($result) ? $result : exit;
|
||
}else{
|
||
return self::parseRule($rule,$route,$regx);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
// 检测URL和规则路由是否匹配
|
||
private static function checkUrlMatch($regx,$rule) {
|
||
$m1 = explode('/',$regx);
|
||
$m2 = explode('/',$rule);
|
||
$var = array();
|
||
foreach ($m2 as $key=>$val){
|
||
if(0 === strpos($val,'[:')){
|
||
$val = substr($val,1,-1);
|
||
}
|
||
|
||
if(':' == substr($val,0,1)) {// 动态变量
|
||
if($pos = strpos($val,'|')){
|
||
// 使用函数过滤
|
||
$val = substr($val,1,$pos-1);
|
||
}
|
||
if(strpos($val,'\\')) {
|
||
$type = substr($val,-1);
|
||
if('d'==$type) {
|
||
if(isset($m1[$key]) && !is_numeric($m1[$key]))
|
||
return false;
|
||
}
|
||
$name = substr($val, 1, -2);
|
||
}elseif($pos = strpos($val,'^')){
|
||
$array = explode('-',substr(strstr($val,'^'),1));
|
||
if(in_array($m1[$key],$array)) {
|
||
return false;
|
||
}
|
||
$name = substr($val, 1, $pos - 1);
|
||
}else{
|
||
$name = substr($val, 1);
|
||
}
|
||
$var[$name] = isset($m1[$key])?$m1[$key]:'';
|
||
}elseif(0 !== strcasecmp($val,$m1[$key])){
|
||
return false;
|
||
}
|
||
}
|
||
// 成功匹配后返回URL中的动态变量数组
|
||
return $var;
|
||
}
|
||
|
||
// 解析规范的路由地址
|
||
// 地址格式 [控制器/操作?]参数1=值1&参数2=值2...
|
||
private static function parseUrl($url) {
|
||
$var = array();
|
||
if(false !== strpos($url,'?')) { // [控制器/操作?]参数1=值1&参数2=值2...
|
||
$info = parse_url($url);
|
||
$path = explode('/',$info['path']);
|
||
parse_str($info['query'],$var);
|
||
}elseif(strpos($url,'/')){ // [控制器/操作]
|
||
$path = explode('/',$url);
|
||
}else{ // 参数1=值1&参数2=值2...
|
||
parse_str($url,$var);
|
||
}
|
||
if(isset($path)) {
|
||
$var[C('VAR_ACTION')] = array_pop($path);
|
||
if(!empty($path)) {
|
||
$var[C('VAR_CONTROLLER')] = array_pop($path);
|
||
}
|
||
if(!empty($path)) {
|
||