1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
package revel
type Filter func(c *Controller, filterChain []Filter)
// Filters is the default set of global filters.
// It may be set by the application on initialization.
var Filters = []Filter{
PanicFilter, // Recover from panics and display an error page instead.
RouterFilter, // Use the routing table to select the right Action.
FilterConfiguringFilter, // A hook for adding or removing per-Action filters.
ParamsFilter, // Parse parameters into Controller.Params.
SessionFilter, // Restore and write the session cookie.
FlashFilter, // Restore and write the flash cookie.
ValidationFilter, // Restore kept validation errors and save new ones from cookie.
I18nFilter, // Resolve the requested language.
InterceptorFilter, // Run interceptors around the action.
CompressFilter, // Compress the result.
ActionInvoker, // Invoke the action.
}
// NilFilter and NilChain are helpful in writing filter tests.
var (
NilFilter = func(_ *Controller, _ []Filter) {}
NilChain = []Filter{NilFilter}
)
|