-
Notifications
You must be signed in to change notification settings - Fork 0
The Application Before, After and OnError pipelines
The application pipelines enable you to perform tasks before and after routes are executed, and in the event of an error in any of the routes in the application. They behave the same way as the module pipelines but they are executed for all invoked routes, not just for the ones that are the module of the route that is being invoked.
The Before pipeline enables you to intercept the request before it is passed to the appropriate route handler. This gives you a couple of possibilities such as modifying parts of the request or even prematurely aborting the request by returning a response that will be sent back to the caller.
An application level Before hook is defined by a Func<NancyContext, Response> function and is used in the following way
pipelines.BeforeRequest += (ctx) => {
return <null or a Response object>;
};The parameter that is passed into the pipeline is an instance of the current NancyContext, from which you get access to things like context variables and the request.
A return value of null means that no action is taken by the hook and that the request should be processed by the matching route. However, if the interceptor returns a Response of its own, the request will never be processed by a route and the response will be sent back to the client.
The After pipeline is defined using the same syntax as the Before pipeline, and the passed in parameter is also the current NancyContext. The difference is that the hook does not return a value.
An application level After hook is defined by a Action<NancyContext> function and is used in the following way
pipelines.AfterRequest += (ctx) => {
// Modify ctx.Response
};The After hooks does not have any return value because one has already been produced by the appropriate route. Instead you get the option to modify (or completely replace) the existing response by accessing the Response property of the NancyContext that is passed in.
The OnError interceptor enables you to execute code whenever an exception occurrs in any of the routes that are being invoked. It gives you access to the NancyContext and the exception that took place.
An application level after hook is defined by a Func<NancyContext, Exception, Response> function and is used in the following way
pipelines.OnError += (ctx, ex) => {
return null;
};##Wiring up your hooks
To create application level hooks you define them in your Bootstrapper. They can be defined either in the ApplicationStartup or RequestStartup methods. This is because you might need to use something from the container in your hook, and the different methods let you resolve from the right container depending on your scoping requirements.
protected override void ApplicationStartup(TinyIoCContainer container, IPipelines pipelines)
{
}
protected override void RequestStartup(TinyIoCContainer requestContainer, IPipelines pipelines, NancyContext context)
{
}The hooks are created by accessing the appropriate property on the pipelines parameter. The pipelines parameter is of the type IPipelines and gives you access to the BeforeRequest, AfterRequest and OnError properties.
[<< Part 14. Adding a custom favicon](Adding a custom favicon) - Documentation overview - [Part 16. Authentication overview >>](Authentication overview)
- Taking a look at the DynamicDictionary
- The before and after module hooks
- Model binding
- Bootstrapper
- View Engines
- View location conventions
- Testing your application
- The root path
- Managing static content
- Diagnostics
- Adding a custom FavIcon
- The Application Before, After and OnError pipelines
- Generating a custom error page
- The cryptography helpers
- Content negotiation
- Authentication
- More to come
- Hosting Nancy with ASP.NET
- Hosting Nancy with WCF
- Hosting Nancy with Azure
- Hosting Nancy with OWIN
- Hosting Nancy with Umbraco
- Hosting Nancy with Nginx on Ubuntu
- Self Hosting Nancy
- Implementing a Host
- Accessing the client certificate when using SSL
- Blog Posts, Video & Audio
- Async-Beta (Async Beta)