2017-12-02 08:42:21 +01:00
|
|
|
# Handler
|
|
|
|
|
|
|
|
A request handler can by any object that implements
|
|
|
|
[`Handler` trait](../actix_web/struct.HttpResponse.html#implementations).
|
|
|
|
|
|
|
|
By default actix provdes several `Handler` implementations:
|
|
|
|
|
|
|
|
* Simple function that accepts `HttpRequest` and returns any object that
|
2017-12-03 23:22:04 +01:00
|
|
|
implements `FromRequest` trait
|
2017-12-02 08:42:21 +01:00
|
|
|
* Function that accepts `HttpRequest` and returns `Result<Reply, Into<Error>>` object.
|
|
|
|
* Function that accepts `HttpRequest` and return actor that has `HttpContext<A>`as a context.
|
|
|
|
|
2017-12-03 23:22:04 +01:00
|
|
|
Actix provides response `FromRequest` implementation for some standard types,
|
2017-12-02 08:42:21 +01:00
|
|
|
like `&'static str`, `String`, etc.
|
|
|
|
For complete list of implementations check
|
2017-12-03 23:22:04 +01:00
|
|
|
[FromRequest documentation](../actix_web/trait.FromRequest.html#foreign-impls).
|
2017-12-02 08:42:21 +01:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```rust,ignore
|
|
|
|
fn index(req: HttpRequest) -> &'static str {
|
|
|
|
"Hello world!"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```rust,ignore
|
|
|
|
fn index(req: HttpRequest) -> String {
|
|
|
|
"Hello world!".to_owned()
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```rust,ignore
|
|
|
|
fn index(req: HttpRequest) -> Bytes {
|
|
|
|
Bytes::from_static("Hello world!")
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```rust,ignore
|
|
|
|
fn index(req: HttpRequest) -> Box<Future<Item=HttpResponse, Error=Error>> {
|
|
|
|
...
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Custom conversion
|
|
|
|
|
|
|
|
Let's create response for custom type that serializes to `application/json` response:
|
|
|
|
|
|
|
|
```rust
|
|
|
|
extern crate actix;
|
|
|
|
extern crate actix_web;
|
|
|
|
extern crate serde;
|
|
|
|
extern crate serde_json;
|
|
|
|
#[macro_use] extern crate serde_derive;
|
|
|
|
use actix_web::*;
|
|
|
|
|
|
|
|
#[derive(Serialize)]
|
|
|
|
struct MyObj {
|
|
|
|
name: String,
|
|
|
|
}
|
|
|
|
|
2017-12-03 23:22:04 +01:00
|
|
|
/// we have to convert Error into HttpResponse as well
|
|
|
|
impl FromRequest for MyObj {
|
|
|
|
type Item = HttpResponse;
|
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
fn from_request(self, req: HttpRequest) -> Result<HttpResponse> {
|
|
|
|
let body = serde_json::to_string(&self)?;
|
2017-12-02 08:42:21 +01:00
|
|
|
|
|
|
|
// Create response and set content type
|
2017-12-03 23:22:04 +01:00
|
|
|
Ok(HttpResponse::Ok()
|
2017-12-02 08:42:21 +01:00
|
|
|
.content_type("application/json")
|
2017-12-03 23:22:04 +01:00
|
|
|
.body(body)?)
|
2017-12-02 08:42:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let sys = actix::System::new("example");
|
|
|
|
|
|
|
|
HttpServer::new(
|
|
|
|
Application::default("/")
|
2017-12-04 22:32:05 +01:00
|
|
|
.resource("/", |r| r.method(
|
2017-12-04 23:07:53 +01:00
|
|
|
Method::GET).f(|req| {MyObj{name: "user".to_owned()}})))
|
2017-12-02 08:42:21 +01:00
|
|
|
.serve::<_, ()>("127.0.0.1:8088").unwrap();
|
|
|
|
|
|
|
|
println!("Started http server: 127.0.0.1:8088");
|
|
|
|
actix::Arbiter::system().send(actix::msgs::SystemExit(0)); // <- remove this line, this code stops system during testing
|
|
|
|
|
|
|
|
let _ = sys.run();
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Async handlers
|
|
|
|
|
|
|
|
There are two different types of async handlers.
|
|
|
|
|
|
|
|
Response object could be generated asynchronously. In this case handle must
|
|
|
|
return `Future` object that resolves to `HttpResponse`, i.e:
|
|
|
|
|
|
|
|
```rust,ignore
|
|
|
|
fn index(req: HttpRequest) -> Box<Future<HttpResponse, Error>> {
|
|
|
|
...
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
This handler can be registered with `ApplicationBuilder::async()` and
|
|
|
|
`Resource::async()` methods.
|
|
|
|
|
|
|
|
Or response body can be generated asynchronously. In this case body
|
|
|
|
must implement stream trait `Stream<Item=Bytes, Error=Error>`, i.e:
|
|
|
|
|
|
|
|
|
|
|
|
```rust,ignore
|
|
|
|
fn index(req: HttpRequest) -> HttpResponse {
|
|
|
|
let body: Box<Stream<Item=Bytes, Error=Error>> = Box::new(SomeStream::new());
|
|
|
|
|
|
|
|
HttpResponse::Ok().
|
|
|
|
.content_type("application/json")
|
|
|
|
.body(Body::Streaming(body)).unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
Application::default("/")
|
|
|
|
.async("/async", index)
|
|
|
|
.finish();
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Both methods could be combined. (i.e Async response with streaming body)
|