filters.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Application & Route Filters
  5. |--------------------------------------------------------------------------
  6. |
  7. | Below you will find the "before" and "after" events for the application
  8. | which may be used to do any work before or after a request into your
  9. | application. Here you may also register your custom route filters.
  10. |
  11. */
  12. App::before(function($request)
  13. {
  14. if (App::isDownForMaintenance())
  15. {
  16. return Response::make('Be right back!');
  17. }
  18. });
  19. App::after(function($request, $response)
  20. {
  21. //
  22. });
  23. /*
  24. |--------------------------------------------------------------------------
  25. | Authentication Filters
  26. |--------------------------------------------------------------------------
  27. |
  28. | The following filters are used to verify that the user of the current
  29. | session is logged into this application. The "basic" filter easily
  30. | integrates HTTP Basic authentication for quick, simple checking.
  31. |
  32. */
  33. Route::filter('auth', function()
  34. {
  35. if (Auth::guest())
  36. {
  37. if (Request::ajax())
  38. {
  39. return Response::make('Unauthorized', 401);
  40. }
  41. else
  42. {
  43. return Redirect::guest('login');
  44. }
  45. }
  46. });
  47. Route::filter('auth.basic', function()
  48. {
  49. return Auth::basic();
  50. });
  51. /*
  52. |--------------------------------------------------------------------------
  53. | Guest Filter
  54. |--------------------------------------------------------------------------
  55. |
  56. | The "guest" filter is the counterpart of the authentication filters as
  57. | it simply checks that the current user is not logged in. A redirect
  58. | response will be issued if they are, which you may freely change.
  59. |
  60. */
  61. Route::filter('guest', function()
  62. {
  63. if (Auth::check()) return Redirect::to('/');
  64. });
  65. /*
  66. |--------------------------------------------------------------------------
  67. | CSRF Protection Filter
  68. |--------------------------------------------------------------------------
  69. |
  70. | The CSRF filter is responsible for protecting your application against
  71. | cross-site request forgery attacks. If this special token in a user
  72. | session does not match the one given in this request, we'll bail.
  73. |
  74. */
  75. Route::filter('csrf', function()
  76. {
  77. if (Session::token() != Input::get('_token'))
  78. {
  79. throw new Illuminate\Session\TokenMismatchException;
  80. }
  81. });