route.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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 \InvalidArgumentException('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. //
  85. // The route is responsible for running the global filters, and any
  86. // filters defined on the route itself. Since all incoming requests
  87. // come through a route (either defined or ad-hoc), it makes sense
  88. // to let the route handle the global filters. If the route uses
  89. // a controller, the controller will only call its own filters.
  90. $before = array_merge(array('before'), $this->filters('before'));
  91. $response = Filter::run($before, array(), true);
  92. if (is_null($response) and ! is_null($response = $this->response()))
  93. {
  94. if ($response instanceof Delegate)
  95. {
  96. $response = Controller::call($response->destination, $this->parameters);
  97. }
  98. }
  99. if ( ! $response instanceof Response)
  100. {
  101. $response = new Response($response);
  102. }
  103. // Stringify the response. We need to force the response to be
  104. // stringed before closing the session, since the developer may
  105. // be using the session within their views, so we cannot age
  106. // the session data until the view is rendered.
  107. $response->content = $response->render();
  108. $filters = array_merge($this->filters('after'), array('after'));
  109. Filter::run($filters, array($response));
  110. return $response;
  111. }
  112. /**
  113. * Call the closure defined for the route, or get the route delegator.
  114. *
  115. * Note that this method differs from the "call" method in that it does
  116. * not resolve the controller or prepare the response. Delegating to
  117. * controller's is handled by the "call" method.
  118. *
  119. * @return mixed
  120. */
  121. protected function response()
  122. {
  123. if ($this->callback instanceof Closure)
  124. {
  125. return call_user_func_array($this->callback, $this->parameters);
  126. }
  127. // If the route is an array, we will return the first value with a
  128. // key of "uses", or the first instance of a Closure. If the value
  129. // is a string, the route is delegating the responsibility for
  130. // for handling the request to a controller.
  131. elseif (is_array($this->callback))
  132. {
  133. $callback = Arr::first($this->callback, function($key, $value)
  134. {
  135. return $key == 'uses' or $value instanceof Closure;
  136. });
  137. if ($callback instanceof Closure)
  138. {
  139. return call_user_func_array($callback, $this->parameters);
  140. }
  141. else
  142. {
  143. return new Delegate($callback);
  144. }
  145. }
  146. elseif (is_string($this->callback))
  147. {
  148. return new Delegate($this->callback);
  149. }
  150. }
  151. /**
  152. * Get an array of filter names defined for the route.
  153. *
  154. * @param string $name
  155. * @return array
  156. */
  157. public function filters($name)
  158. {
  159. if (is_array($this->callback) and isset($this->callback[$name]))
  160. {
  161. $filters = $this->callback[$name];
  162. return (is_string($filters)) ? explode('|', $filters) : (array) $filters;
  163. }
  164. return array();
  165. }
  166. /**
  167. * Determine if the route has a given name.
  168. *
  169. * @param string $name
  170. * @return bool
  171. */
  172. public function is($name)
  173. {
  174. return is_array($this->callback) and Arr::get($this->callback, 'name') === $name;
  175. }
  176. /**
  177. * Determine if the route handles a given URI.
  178. *
  179. * @param string $uri
  180. * @return bool
  181. */
  182. public function handles($uri)
  183. {
  184. return in_array($uri, $this->uris);
  185. }
  186. /**
  187. * Magic Method to handle dynamic method calls to determine the name of the route.
  188. */
  189. public function __call($method, $parameters)
  190. {
  191. if (strpos($method, 'is_') === 0)
  192. {
  193. return $this->is(substr($method, 3));
  194. }
  195. throw new \BadMethodCallException("Call to undefined method [$method] on Route class.");
  196. }
  197. }