You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.1 KiB

  1. <?php
  2. /**
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage app
  7. * @since 2010-02-25
  8. * @version SVN: $Id$
  9. * @filesource $URL$
  10. */
  11. class Router
  12. {
  13. protected $routes = array();
  14. protected $route_name;
  15. protected $default_layout = 'Default';
  16. /**
  17. * @var Route
  18. */
  19. protected $route;
  20. public function add($name, $route, $action, $params = array(), $layout = null)
  21. {
  22. if (!$layout) {
  23. $layout = $this->default_layout;
  24. }
  25. $this->routes[$name] = new Route($route, $action, $params, $layout);
  26. }
  27. public function route($request)
  28. {
  29. $req = explode('/', trim($request, '/'));
  30. foreach ($this->routes as $name => $route) {
  31. if ($route->match($req)) {
  32. $this->route_name = $name;
  33. $this->route = $route;
  34. Env::setParams($route->getParams());
  35. return $this->route;
  36. }
  37. }
  38. return false;
  39. }
  40. public function setDefaultLayout($layout = 'Default')
  41. {
  42. $this->default_layout = $layout;
  43. }
  44. public function getRouteName()
  45. {
  46. return $this->route_name;
  47. }
  48. /**
  49. * @return Route
  50. */
  51. public function getRoute()
  52. {
  53. return $this->route;
  54. }
  55. public function routeIsExists($name)
  56. {
  57. return array_key_exists($name, $this->routes);
  58. }
  59. public function getRouteByName($name)
  60. {
  61. return $this->routes[$name];
  62. }
  63. static public function getUri($route_name = null)
  64. {
  65. $router = FrontController::getInstance()->getRouter();
  66. if (is_null($route_name)) {
  67. $route = $router->getRoute();
  68. } else {
  69. if ($router->routeIsExists($route_name)) {
  70. $route = $router->getRouteByName($route_name);
  71. } else {
  72. $btrace = debug_backtrace();
  73. throw new ErrorException('Unknown route handler: "' . $route_name . '". ' . 'Call from "' . $btrace[0]['file'] . '" on line ' . $btrace[0]['line'] . '.');
  74. }
  75. }
  76. return $route->getUri();
  77. }
  78. }