filter.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php namespace System;
  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. // --------------------------------------------------------------
  20. // Load the filters if necessary.
  21. // --------------------------------------------------------------
  22. if (is_null(static::$filters))
  23. {
  24. static::$filters = require APP_PATH.'filters'.EXT;
  25. }
  26. // --------------------------------------------------------------
  27. // Filters can be comma-delimited, so spin through each one.
  28. // --------------------------------------------------------------
  29. foreach (explode(', ', $filters) as $filter)
  30. {
  31. if ( ! isset(static::$filters[$filter]))
  32. {
  33. throw new \Exception("Route filter [$filter] is not defined.");
  34. }
  35. $response = call_user_func_array(static::$filters[$filter], $parameters);
  36. // --------------------------------------------------------------
  37. // If overriding is set to true and the filter returned a
  38. // response, return that response.
  39. //
  40. // Overriding allows for convenient halting of the request
  41. // flow for things like authentication, CSRF protection, etc.
  42. // --------------------------------------------------------------
  43. if ( ! is_null($response) and $override)
  44. {
  45. return $response;
  46. }
  47. }
  48. }
  49. }