route.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <?php namespace Laravel\Routing;
  2. use Closure;
  3. use Laravel\Arr;
  4. use Laravel\Response;
  5. class Route {
  6. /**
  7. * The route key, including request method and URI.
  8. *
  9. * @var string
  10. */
  11. public $key;
  12. /**
  13. * The URIs the route responds to.
  14. *
  15. * @var array
  16. */
  17. public $uris;
  18. /**
  19. * The route callback or array.
  20. *
  21. * @var mixed
  22. */
  23. public $callback;
  24. /**
  25. * The parameters that will passed to the route callback.
  26. *
  27. * @var array
  28. */
  29. public $parameters;
  30. /**
  31. * Create a new Route instance.
  32. *
  33. * @param string $key
  34. * @param mixed $callback
  35. * @param array $parameters
  36. * @return void
  37. */
  38. public function __construct($key, $callback, $parameters = array())
  39. {
  40. $this->key = $key;
  41. $this->callback = $callback;
  42. $this->parameters = $parameters;
  43. // Extract each URI from the route key. Since the route key has the
  44. // request method, we will extract that from the string. If the URI
  45. // points to the root of the application, a single forward slash
  46. // will be returned.
  47. if (strpos($key, ', ') === false)
  48. {
  49. $this->uris = array($this->extract($this->key));
  50. }
  51. else
  52. {
  53. $this->uris = array_map(array($this, 'extract'), explode(', ', $key));
  54. }
  55. if ( ! $callback instanceof Closure and ! is_array($callback) and ! is_string($callback))
  56. {
  57. throw new \Exception('Invalid route defined for URI ['.$this->key.']');
  58. }
  59. }
  60. /**
  61. * Retrieve the URI from a given route destination.
  62. *
  63. * If the request is to the root of the application, a single slash
  64. * will be returned, otherwise the leading slash will be removed.
  65. *
  66. * @param string $segment
  67. * @return string
  68. */
  69. protected function extract($segment)
  70. {
  71. $segment = substr($segment, strpos($segment, ' ') + 1);
  72. return ($segment !== '/') ? trim($segment, '/') : $segment;
  73. }
  74. /**
  75. * Call a given route and return the route's response.
  76. *
  77. * @return Response
  78. */
  79. public function call()
  80. {
  81. // Since "before" filters can halt the request cycle, we will return
  82. // any response from the before filters. Allowing filters to halt the
  83. // request cycle makes tasks like authorization convenient.
  84. $before = array_merge(array('before'), $this->filters('before'));
  85. if ( ! is_null($response = Filter::run($before, array(), true)))
  86. {
  87. return $response;
  88. }
  89. if ( ! is_null($response = $this->response()))
  90. {
  91. if ($response instanceof Delegate)
  92. {
  93. return Controller::call($response->destination, $this->parameters);
  94. }
  95. else
  96. {
  97. // The after filter and the framework expects all responses to
  98. // be instances of the Response class. If the route did not
  99. // return an instsance of Response, we will make on now.
  100. if ( ! $response instanceof Response) $response = new Response($response);
  101. $filters = array_merge($this->filters('after'), array('after'));
  102. Filter::run($filters, array($response));
  103. return $response;
  104. }
  105. }
  106. return Response::error('404');
  107. }
  108. /**
  109. * Call the closure defined for the route, or get the route delegator.
  110. *
  111. * Note that this method differs from the "call" method in that it does
  112. * not resolve the controller or prepare the response. Delegating to
  113. * controller's is handled by the "call" method.
  114. *
  115. * @return mixed
  116. */
  117. protected function response()
  118. {
  119. if ($this->callback instanceof Closure)
  120. {
  121. return call_user_func_array($this->callback, $this->parameters);
  122. }
  123. // If the route is an array we will return the first value with a
  124. // key of "delegate", or the first instance of a Closure. If the
  125. // value is a string, the route is delegating the responsibility
  126. // for handling the request to a controller.
  127. elseif (is_array($this->callback))
  128. {
  129. $callback = Arr::first($this->callback, function($key, $value)
  130. {
  131. return $key == 'delegate' or $value instanceof Closure;
  132. });
  133. if ($callback instanceof Closure)
  134. {
  135. return call_user_func_array($callback, $this->parameters);
  136. }
  137. else
  138. {
  139. return new Delegate($callback);
  140. }
  141. }
  142. elseif (is_string($this->callback))
  143. {
  144. return new Delegate($this->callback);
  145. }
  146. }
  147. /**
  148. * Get an array of filter names defined for the route.
  149. *
  150. * @param string $name
  151. * @return array
  152. */
  153. public function filters($name)
  154. {
  155. if (is_array($this->callback) and isset($this->callback[$name]))
  156. {
  157. return (array) $this->callback[$name];
  158. }
  159. return array();
  160. }
  161. /**
  162. * Determine if the route has a given name.
  163. *
  164. * @param string $name
  165. * @return bool
  166. */
  167. public function is($name)
  168. {
  169. return is_array($this->callback) and Arr::get($this->callback, 'name') === $name;
  170. }
  171. /**
  172. * Determine if the route handles a given URI.
  173. *
  174. * @param string $uri
  175. * @return bool
  176. */
  177. public function handles($uri)
  178. {
  179. return in_array($uri, $this->uris);
  180. }
  181. /**
  182. * Magic Method to handle dynamic method calls to determine the name of the route.
  183. */
  184. public function __call($method, $parameters)
  185. {
  186. if (strpos($method, 'is_') === 0) return $this->is(substr($method, 3));
  187. throw new \Exception("Call to undefined method [$method] on Route class.");
  188. }
  189. }