1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 08:43:01 +01:00
actix-website/content/docs/middleware.md

137 lines
5.2 KiB
Markdown
Raw Normal View History

2018-05-22 23:15:08 +02:00
---
title: Middlewares
menu: docs_advanced
weight: 220
---
# Middleware
Actix's middleware system allows us to add additional behavior to request/response processing.
Middleware can hook into an incoming request process, enabling us to modify requests
as well as halt request processing to return a response early.
Middleware can also hook into response processing.
Typically, middleware is involved in the following actions:
* Pre-process the Request
* Post-process a Response
* Modify application state
* Access external services (redis, logging, sessions)
Middleware is registered for each application and executed in same order as
registration. In general, a *middleware* is a type that implements the
2019-06-17 22:57:57 +02:00
[*Service trait*](../../actix-web/actix_web/dev/trait.Service.html) and
[*Transform trait*](../../actix-web/actix_web/dev/trait.Transform.html).
Each method in the traits has a default implementation. Each method can return
2018-05-22 23:15:08 +02:00
a result immediately or a *future* object.
2019-06-17 22:57:57 +02:00
The following demonstrates creating a simple middleware:
{{< include-example example="middleware" file="main.rs" section="main" >}}
2018-05-22 23:15:08 +02:00
> Actix provides several useful middlewares, such as *logging*, *user sessions*, etc.
# Logging
Logging is implemented as a middleware.
It is common to register a logging middleware as the first middleware for the application.
Logging middleware must be registered for each application.
The `Logger` middleware uses the standard log crate to log information. You should enable logger
for *actix_web* package to see access log ([env_logger](https://docs.rs/env_logger/*/env_logger/)
or similar).
## Usage
Create `Logger` middleware with the specified `format`.
Default `Logger` can be created with `default` method, it uses the default format:
```ignore
%a %t "%r" %s %b "%{Referer}i" "%{User-Agent}i" %T
```
2019-06-17 22:57:57 +02:00
{{< include-example example="middleware" file="logger.rs" section="logger" >}}
2018-05-22 23:15:08 +02:00
The following is an example of the default logging format:
```
INFO:actix_web::middleware::logger: 127.0.0.1:59934 [02/Dec/2017:00:21:43 -0800] "GET / HTTP/1.1" 302 0 "-" "curl/7.54.0" 0.000397
INFO:actix_web::middleware::logger: 127.0.0.1:59947 [02/Dec/2017:00:22:40 -0800] "GET /index.html HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:57.0) Gecko/20100101 Firefox/57.0" 0.000646
```
## Format
`%%` The percent sign
`%a` Remote IP-address (IP-address of proxy if using reverse proxy)
`%t` Time when the request was started to process
`%P` The process ID of the child that serviced the request
`%r` First line of request
`%s` Response status code
`%b` Size of response in bytes, including HTTP headers
`%T` Time taken to serve the request, in seconds with floating fraction in .06f format
`%D` Time taken to serve the request, in milliseconds
`%{FOO}i` request.headers['FOO']
`%{FOO}o` response.headers['FOO']
`%{FOO}e` os.environ['FOO']
## Default headers
To set default response headers, the `DefaultHeaders` middleware can be used. The
*DefaultHeaders* middleware does not set the header if response headers already contain
a specified header.
2019-06-17 22:57:57 +02:00
{{< include-example example="middleware" file="default_headers.rs" section="default-headers" >}}
2018-05-22 23:15:08 +02:00
## User sessions
Actix provides a general solution for session management. The
2019-06-17 22:57:57 +02:00
[**actix-session**](https://docs.rs/actix-session/0.1.1/actix_session/) middleware can be
2018-05-22 23:15:08 +02:00
used with different backend types to store session data in different backends.
> By default, only cookie session backend is implemented. Other backend implementations
> can be added.
2019-06-17 22:57:57 +02:00
[**CookieSession**](../../actix-web/actix_web/middleware/session/struct.CookieSessionBackend.html)
2018-05-22 23:15:08 +02:00
uses cookies as session storage. `CookieSessionBackend` creates sessions which
are limited to storing fewer than 4000 bytes of data, as the payload must fit into a
single cookie. An internal server error is generated if a session contains more than 4000 bytes.
2019-06-17 22:57:57 +02:00
A cookie may have a security policy of *signed* or *private*. Each has a respective `CookieSession` constructor.
2018-05-22 23:15:08 +02:00
A *signed* cookie may be viewed but not modified by the client. A *private* cookie may neither be viewed nor modified by the client.
The constructors take a key as an argument. This is the private key for cookie session - when this value is changed, all session data is lost.
In general, you create a
`SessionStorage` middleware and initialize it with specific backend implementation,
2019-06-17 22:57:57 +02:00
such as a `CookieSession`. To access session data,
2018-05-22 23:15:08 +02:00
[*HttpRequest::session()*](../../actix-web/actix_web/middleware/session/trait.RequestSession.html#tymethod.session)
must be used. This method returns a
[*Session*](../../actix-web/actix_web/middleware/session/struct.Session.html) object, which allows us to get or set
session data.
2019-06-17 22:57:57 +02:00
{{< include-example example="middleware" file="user_sessions.rs" section="user-session" >}}
2018-05-22 23:15:08 +02:00
# Error handlers
`ErrorHandlers` middleware allows us to provide custom handlers for responses.
You can use the `ErrorHandlers::handler()` method to register a custom error handler
for a specific status code. You can modify an existing response or create a completly new
one. The error handler can return a response immediately or return a future that resolves
into a response.
2019-06-17 22:57:57 +02:00
{{< include-example example="middleware" file="errorhandler.rs" section="error-handler" >}}