filters.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. use Laravel\Application;
  3. use Laravel\Response;
  4. return array(
  5. /*
  6. |--------------------------------------------------------------------------
  7. | Filters
  8. |--------------------------------------------------------------------------
  9. |
  10. | Filters provide a convenient method for attaching functionality to your
  11. | routes. Filters can run either before or after a route is exectued.
  12. |
  13. | The built-in "before" and "after" filters are called before and after
  14. | every request to your application; however, you may create other filters
  15. | that can be attached to individual routes.
  16. |
  17. | Filters also make common tasks such as authentication and CSRF protection
  18. | a breeze. If a filter that runs before a route returns a response, that
  19. | response will override the route action.
  20. |
  21. | Let's walk through an example...
  22. |
  23. | First, define a filter:
  24. |
  25. | 'simple_filter' => function()
  26. | {
  27. | return 'Filtered!';
  28. | }
  29. |
  30. | Next, attach the filter to a route:
  31. |
  32. | 'GET /' => array('before' => 'simple_filter', function()
  33. | {
  34. | return 'Hello World!';
  35. | })
  36. |
  37. | Now every requests to http://example.com will return "Filtered!", since
  38. | the filter is overriding the route action by returning a value.
  39. |
  40. | To make your life easier, we have built authentication and CSRF filters
  41. | that are ready to attach to your routes. Enjoy.
  42. |
  43. */
  44. 'before' => function(Application $application)
  45. {
  46. // Do stuff before every request to your application.
  47. },
  48. 'after' => function(Application $application, Response $response)
  49. {
  50. // Do stuff after every request to your application.
  51. },
  52. 'auth' => function()
  53. {
  54. return ( ! Auth::make()->check()) ? Redirect::to_login() : null;
  55. },
  56. 'csrf' => function()
  57. {
  58. return (Input::get('csrf_token') !== Form::raw_token()) ? new Error('500') : null;
  59. },
  60. );