CheckActionRouteBehavior.class.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2012 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace Behavior;
  12. /**
  13. * 系统行为扩展:操作路由检测
  14. */
  15. class CheckActionRouteBehavior {
  16. // 行为扩展的执行入口必须是run
  17. public function run(&$config){
  18. // 优先检测是否存在PATH_INFO
  19. $regx = trim($_SERVER['PATH_INFO'],'/');
  20. if(empty($regx)) return ;
  21. // 路由定义文件优先于config中的配置定义
  22. // 路由处理
  23. $routes = $config['routes'];
  24. if(!empty($routes)) {
  25. $depr = C('URL_PATHINFO_DEPR');
  26. // 分隔符替换 确保路由定义使用统一的分隔符
  27. $regx = str_replace($depr,'/',$regx);
  28. $regx = substr_replace($regx,'',0,strlen(__URL__));
  29. foreach ($routes as $rule=>$route){
  30. if(0===strpos($rule,'/') && preg_match($rule,$regx,$matches)) { // 正则路由
  31. return C('ACTION_NAME',$this->parseRegex($matches,$route,$regx));
  32. }else{ // 规则路由
  33. $len1 = substr_count($regx,'/');
  34. $len2 = substr_count($rule,'/');
  35. if($len1>=$len2) {
  36. if('$' == substr($rule,-1,1)) {// 完整匹配
  37. if($len1 != $len2) {
  38. continue;
  39. }else{
  40. $rule = substr($rule,0,-1);
  41. }
  42. }
  43. $match = $this->checkUrlMatch($regx,$rule);
  44. if($match) return C('ACTION_NAME',$this->parseRule($rule,$route,$regx));
  45. }
  46. }
  47. }
  48. }
  49. }
  50. // 检测URL和规则路由是否匹配
  51. private function checkUrlMatch($regx,$rule) {
  52. $m1 = explode('/',$regx);
  53. $m2 = explode('/',$rule);
  54. $match = true; // 是否匹配
  55. foreach ($m2 as $key=>$val){
  56. if(':' == substr($val,0,1)) {// 动态变量
  57. if(strpos($val,'\\')) {
  58. $type = substr($val,-1);
  59. if('d'==$type && !is_numeric($m1[$key])) {
  60. $match = false;
  61. break;
  62. }
  63. }elseif(strpos($val,'^')){
  64. $array = explode('|',substr(strstr($val,'^'),1));
  65. if(in_array($m1[$key],$array)) {
  66. $match = false;
  67. break;
  68. }
  69. }
  70. }elseif(0 !== strcasecmp($val,$m1[$key])){
  71. $match = false;
  72. break;
  73. }
  74. }
  75. return $match;
  76. }
  77. // 解析规范的路由地址
  78. // 地址格式 操作?参数1=值1&参数2=值2...
  79. private function parseUrl($url) {
  80. $var = array();
  81. if(false !== strpos($url,'?')) { // 操作?参数1=值1&参数2=值2...
  82. $info = parse_url($url);
  83. $path = $info['path'];
  84. parse_str($info['query'],$var);
  85. }else{ // 操作
  86. $path = $url;
  87. }
  88. $var[C('VAR_ACTION')] = $path;
  89. return $var;
  90. }
  91. // 解析规则路由
  92. // '路由规则'=>'操作?额外参数1=值1&额外参数2=值2...'
  93. // '路由规则'=>array('操作','额外参数1=值1&额外参数2=值2...')
  94. // '路由规则'=>'外部地址'
  95. // '路由规则'=>array('外部地址','重定向代码')
  96. // 路由规则中 :开头 表示动态变量
  97. // 外部地址中可以用动态变量 采用 :1 :2 的方式
  98. // 'news/:month/:day/:id'=>array('News/read?cate=1','status=1'),
  99. // 'new/:id'=>array('/new.php?id=:1',301), 重定向
  100. private function parseRule($rule,$route,$regx) {
  101. // 获取路由地址规则
  102. $url = is_array($route)?$route[0]:$route;
  103. // 获取URL地址中的参数
  104. $paths = explode('/',$regx);
  105. // 解析路由规则
  106. $matches = array();
  107. $rule = explode('/',$rule);
  108. foreach ($rule as $item){
  109. if(0===strpos($item,':')) { // 动态变量获取
  110. if($pos = strpos($item,'^') ) {
  111. $var = substr($item,1,$pos-1);
  112. }elseif(strpos($item,'\\')){
  113. $var = substr($item,1,-2);
  114. }else{
  115. $var = substr($item,1);
  116. }
  117. $matches[$var] = array_shift($paths);
  118. }else{ // 过滤URL中的静态变量
  119. array_shift($paths);
  120. }
  121. }
  122. if(0=== strpos($url,'/') || 0===strpos($url,'http')) { // 路由重定向跳转
  123. if(strpos($url,':')) { // 传递动态参数
  124. $values = array_values($matches);
  125. $url = preg_replace('/:(\d+)/e','$values[\\1-1]',$url);
  126. }
  127. header("Location: $url", true,(is_array($route) && isset($route[1]))?$route[1]:301);
  128. exit;
  129. }else{
  130. // 解析路由地址
  131. $var = $this->parseUrl($url);
  132. // 解析路由地址里面的动态参数
  133. $values = array_values($matches);
  134. foreach ($var as $key=>$val){
  135. if(0===strpos($val,':')) {
  136. $var[$key] = $values[substr($val,1)-1];
  137. }
  138. }
  139. $var = array_merge($matches,$var);
  140. // 解析剩余的URL参数
  141. if($paths) {
  142. preg_replace('@(\w+)\/([^\/]+)@e', '$var[strtolower(\'\\1\')]=strip_tags(\'\\2\');', implode('/',$paths));
  143. }
  144. // 解析路由自动传入参数
  145. if(is_array($route) && isset($route[1])) {
  146. parse_str($route[1],$params);
  147. $var = array_merge($var,$params);
  148. }
  149. $action = $var[C('VAR_ACTION')];
  150. unset($var[C('VAR_ACTION')]);
  151. $_GET = array_merge($var,$_GET);
  152. return $action;
  153. }
  154. }
  155. // 解析正则路由
  156. // '路由正则'=>'[分组/模块/操作]?参数1=值1&参数2=值2...'
  157. // '路由正则'=>array('[分组/模块/操作]?参数1=值1&参数2=值2...','额外参数1=值1&额外参数2=值2...')
  158. // '路由正则'=>'外部地址'
  159. // '路由正则'=>array('外部地址','重定向代码')
  160. // 参数值和外部地址中可以用动态变量 采用 :1 :2 的方式
  161. // '/new\/(\d+)\/(\d+)/'=>array('News/read?id=:1&page=:2&cate=1','status=1'),
  162. // '/new\/(\d+)/'=>array('/new.php?id=:1&page=:2&status=1','301'), 重定向
  163. private function parseRegex($matches,$route,$regx) {
  164. // 获取路由地址规则
  165. $url = is_array($route)?$route[0]:$route;
  166. $url = preg_replace('/:(\d+)/e','$matches[\\1]',$url);
  167. if(0=== strpos($url,'/') || 0===strpos($url,'http')) { // 路由重定向跳转
  168. header("Location: $url", true,(is_array($route) && isset($route[1]))?$route[1]:301);
  169. exit;
  170. }else{
  171. // 解析路由地址
  172. $var = $this->parseUrl($url);
  173. // 解析剩余的URL参数
  174. $regx = substr_replace($regx,'',0,strlen($matches[0]));
  175. if($regx) {
  176. preg_replace('@(\w+)\/([^,\/]+)@e', '$var[strtolower(\'\\1\')]=strip_tags(\'\\2\');', $regx);
  177. }
  178. // 解析路由自动传入参数
  179. if(is_array($route) && isset($route[1])) {
  180. parse_str($route[1],$params);
  181. $var = array_merge($var,$params);
  182. }
  183. $action = $var[C('VAR_ACTION')];
  184. unset($var[C('VAR_ACTION')]);
  185. $_GET = array_merge($var,$_GET);
  186. }
  187. return $action;
  188. }
  189. }