route.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php namespace System\Routing;
  2. use System\Response;
  3. class Route {
  4. /**
  5. * The route key, including request method and URI.
  6. *
  7. * @var string
  8. */
  9. public $key;
  10. /**
  11. * The route callback or array.
  12. *
  13. * @var mixed
  14. */
  15. public $callback;
  16. /**
  17. * The parameters that will passed to the route function.
  18. *
  19. * @var array
  20. */
  21. public $parameters;
  22. /**
  23. * Create a new Route instance.
  24. *
  25. * @param string $key
  26. * @param mixed $callback
  27. * @param array $parameters
  28. * @return void
  29. */
  30. public function __construct($key, $callback, $parameters = array())
  31. {
  32. $this->key = $key;
  33. $this->callback = $callback;
  34. $this->parameters = $parameters;
  35. }
  36. /**
  37. * Execute the route function.
  38. *
  39. * @param mixed $route
  40. * @param array $parameters
  41. * @return Response
  42. */
  43. public function call()
  44. {
  45. $response = null;
  46. if (is_callable($this->callback))
  47. {
  48. $response = call_user_func_array($this->callback, $this->parameters);
  49. }
  50. elseif (is_array($this->callback))
  51. {
  52. $response = isset($this->callback['before']) ? Filter::call($this->callback['before'], array(), true) : null;
  53. if (is_null($response) and isset($this->callback['do']))
  54. {
  55. $response = call_user_func_array($this->callback['do'], $this->parameters);
  56. }
  57. }
  58. $response = Response::prepare($response);
  59. if (is_array($this->callback) and isset($this->callback['after']))
  60. {
  61. Filter::call($this->callback['after'], array($response));
  62. }
  63. return $response;
  64. }
  65. }