filter.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php namespace System\Route;
  2. class Filter {
  3. /**
  4. * The loaded route filters.
  5. *
  6. * @var array
  7. */
  8. public static $filters;
  9. /**
  10. * Call a set of route filters.
  11. *
  12. * @param string $filter
  13. * @param array $parameters
  14. * @param bool $override
  15. * @return mixed
  16. */
  17. public static function call($filters, $parameters = array(), $override = false)
  18. {
  19. if (is_null(static::$filters))
  20. {
  21. static::$filters = require APP_PATH.'filters'.EXT;
  22. }
  23. // --------------------------------------------------------------
  24. // Filters can be comma-delimited, so spin through each one.
  25. // --------------------------------------------------------------
  26. foreach (explode(', ', $filters) as $filter)
  27. {
  28. if ( ! isset(static::$filters[$filter]))
  29. {
  30. throw new \Exception("Route filter [$filter] is not defined.");
  31. }
  32. $response = call_user_func_array(static::$filters[$filter], $parameters);
  33. // --------------------------------------------------------------
  34. // If overriding is set to true and the filter returned a
  35. // response, return that response.
  36. //
  37. // Overriding allows for convenient halting of the request
  38. // flow for things like authentication, CSRF protection, etc.
  39. // --------------------------------------------------------------
  40. if ( ! is_null($response) and $override)
  41. {
  42. return $response;
  43. }
  44. }
  45. }
  46. }