route.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php namespace System;
  2. class Route {
  3. /**
  4. * The route callback or array.
  5. *
  6. * @var mixed
  7. */
  8. public $route;
  9. /**
  10. * The parameters that will passed to the route function.
  11. *
  12. * @var array
  13. */
  14. public $parameters;
  15. /**
  16. * Create a new Route instance.
  17. *
  18. * @param mixed $route
  19. * @param array $parameters
  20. * @return void
  21. */
  22. public function __construct($route, $parameters = array())
  23. {
  24. $this->route = $route;
  25. $this->parameters = $parameters;
  26. }
  27. /**
  28. * Execute the route function.
  29. *
  30. * @param mixed $route
  31. * @param array $parameters
  32. * @return mixed
  33. */
  34. public function call()
  35. {
  36. $response = null;
  37. // --------------------------------------------------------------
  38. // If the route just has a callback, call it.
  39. // --------------------------------------------------------------
  40. if (is_callable($this->route))
  41. {
  42. $response = call_user_func_array($this->route, $this->parameters);
  43. }
  44. // --------------------------------------------------------------
  45. // The route value is an array. We'll need to evaluate it.
  46. // --------------------------------------------------------------
  47. elseif (is_array($this->route))
  48. {
  49. // --------------------------------------------------------------
  50. // Call the "before" route filters.
  51. // --------------------------------------------------------------
  52. $response = isset($this->route['before']) ? Filter::call($this->route['before']) : null;
  53. // --------------------------------------------------------------
  54. // Call the route callback.
  55. // --------------------------------------------------------------
  56. if (is_null($response) and isset($this->route['do']))
  57. {
  58. $response = call_user_func_array($this->route['do'], $this->parameters);
  59. }
  60. }
  61. // --------------------------------------------------------------
  62. // Make sure the response is a Response instance.
  63. // --------------------------------------------------------------
  64. $response = ( ! $response instanceof Response) ? new Response($response) : $response;
  65. // --------------------------------------------------------------
  66. // Call the "after" route filters.
  67. // --------------------------------------------------------------
  68. if (is_array($this->route) and isset($this->route['after']))
  69. {
  70. Filter::call($this->route['after'], array($response));
  71. }
  72. return $response;
  73. }
  74. }