2019-03-24 19:47:23 +01:00
|
|
|
//! Actix web is a small, pragmatic, and extremely fast web framework
|
|
|
|
//! for Rust.
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! use actix_web::{web, App, Responder, HttpServer};
|
|
|
|
//! # use std::thread;
|
|
|
|
//!
|
|
|
|
//! fn index(info: web::Path<(String, u32)>) -> impl Responder {
|
|
|
|
//! format!("Hello {}! id:{}", info.0, info.1)
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn main() -> std::io::Result<()> {
|
|
|
|
//! # thread::spawn(|| {
|
|
|
|
//! HttpServer::new(|| App::new().service(
|
|
|
|
//! web::resource("/{name}/{id}/index.html").to(index))
|
|
|
|
//! )
|
|
|
|
//! .bind("127.0.0.1:8080")?
|
|
|
|
//! .run()
|
|
|
|
//! # });
|
|
|
|
//! # Ok(())
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! ## Documentation & community resources
|
|
|
|
//!
|
|
|
|
//! Besides the API documentation (which you are currently looking
|
|
|
|
//! at!), several other resources are available:
|
|
|
|
//!
|
|
|
|
//! * [User Guide](https://actix.rs/docs/)
|
|
|
|
//! * [Chat on gitter](https://gitter.im/actix/actix)
|
|
|
|
//! * [GitHub repository](https://github.com/actix/actix-web)
|
|
|
|
//! * [Cargo package](https://crates.io/crates/actix-web)
|
|
|
|
//!
|
|
|
|
//! To get started navigating the API documentation you may want to
|
|
|
|
//! consider looking at the following pages:
|
|
|
|
//!
|
|
|
|
//! * [App](struct.App.html): This struct represents an actix-web
|
|
|
|
//! application and is used to configure routes and other common
|
|
|
|
//! settings.
|
|
|
|
//!
|
|
|
|
//! * [HttpServer](struct.HttpServer.html): This struct
|
|
|
|
//! represents an HTTP server instance and is used to instantiate and
|
|
|
|
//! configure servers.
|
|
|
|
//!
|
|
|
|
//! * [HttpRequest](struct.HttpRequest.html) and
|
|
|
|
//! [HttpResponse](struct.HttpResponse.html): These structs
|
|
|
|
//! represent HTTP requests and responses and expose various methods
|
|
|
|
//! for inspecting, creating and otherwise utilizing them.
|
|
|
|
//!
|
|
|
|
//! ## Features
|
|
|
|
//!
|
|
|
|
//! * Supported *HTTP/1.x* and *HTTP/2.0* protocols
|
|
|
|
//! * Streaming and pipelining
|
|
|
|
//! * Keep-alive and slow requests handling
|
|
|
|
//! * `WebSockets` server/client
|
|
|
|
//! * Transparent content compression/decompression (br, gzip, deflate)
|
|
|
|
//! * Configurable request routing
|
|
|
|
//! * Multipart streams
|
|
|
|
//! * SSL support with OpenSSL or `native-tls`
|
|
|
|
//! * Middlewares (`Logger`, `Session`, `CORS`, `CSRF`, `DefaultHeaders`)
|
|
|
|
//! * Supports [Actix actor framework](https://github.com/actix/actix)
|
|
|
|
//! * Supported Rust version: 1.32 or later
|
|
|
|
//!
|
|
|
|
//! ## Package feature
|
|
|
|
//!
|
2019-03-26 05:58:01 +01:00
|
|
|
//! * `client` - enables http client
|
2019-03-24 19:47:23 +01:00
|
|
|
//! * `tls` - enables ssl support via `native-tls` crate
|
|
|
|
//! * `ssl` - enables ssl support via `openssl` crate, supports `http/2`
|
|
|
|
//! * `rust-tls` - enables ssl support via `rustls` crate, supports `http/2`
|
|
|
|
//! * `cookies` - enables cookies support, includes `ring` crate as
|
|
|
|
//! dependency
|
|
|
|
//! * `brotli` - enables `brotli` compression support, requires `c`
|
|
|
|
//! compiler
|
2019-03-27 02:46:06 +01:00
|
|
|
//! * `flate2-zlib` - enables `gzip`, `deflate` compression support, requires
|
2019-03-24 19:47:23 +01:00
|
|
|
//! `c` compiler
|
|
|
|
//! * `flate2-rust` - experimental rust based implementation for
|
|
|
|
//! `gzip`, `deflate` compression.
|
|
|
|
//!
|
2019-03-17 05:35:02 +01:00
|
|
|
#![allow(clippy::type_complexity, clippy::new_without_default)]
|
2017-11-24 19:03:13 +01:00
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
mod app;
|
2019-03-09 18:49:11 +01:00
|
|
|
mod app_service;
|
2019-03-07 00:47:15 +01:00
|
|
|
mod config;
|
2019-03-17 04:17:27 +01:00
|
|
|
mod data;
|
2019-03-09 16:39:34 +01:00
|
|
|
pub mod error;
|
2019-03-09 23:06:24 +01:00
|
|
|
mod extract;
|
2019-03-03 21:09:38 +01:00
|
|
|
pub mod guard;
|
2019-03-09 23:06:24 +01:00
|
|
|
mod handler;
|
|
|
|
mod info;
|
2017-12-27 04:59:41 +01:00
|
|
|
pub mod middleware;
|
2019-03-02 07:51:32 +01:00
|
|
|
mod request;
|
|
|
|
mod resource;
|
|
|
|
mod responder;
|
2019-03-09 16:39:34 +01:00
|
|
|
mod rmap;
|
2019-03-02 07:51:32 +01:00
|
|
|
mod route;
|
2019-03-04 06:02:01 +01:00
|
|
|
mod scope;
|
2019-03-05 01:29:03 +01:00
|
|
|
mod server;
|
2019-03-02 07:51:32 +01:00
|
|
|
mod service;
|
2019-03-03 01:24:14 +01:00
|
|
|
pub mod test;
|
2019-03-17 05:43:48 +01:00
|
|
|
mod types;
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2019-03-07 22:33:40 +01:00
|
|
|
#[allow(unused_imports)]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate actix_web_codegen;
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub use actix_web_codegen::*;
|
2019-03-07 20:09:42 +01:00
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
// re-export for convenience
|
|
|
|
pub use actix_http::Response as HttpResponse;
|
2019-03-09 16:39:34 +01:00
|
|
|
pub use actix_http::{http, Error, HttpMessage, ResponseError, Result};
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2019-03-06 07:10:08 +01:00
|
|
|
pub use crate::app::App;
|
2019-03-07 20:43:46 +01:00
|
|
|
pub use crate::extract::FromRequest;
|
2019-03-02 07:51:32 +01:00
|
|
|
pub use crate::request::HttpRequest;
|
|
|
|
pub use crate::resource::Resource;
|
|
|
|
pub use crate::responder::{Either, Responder};
|
2019-03-03 04:19:56 +01:00
|
|
|
pub use crate::route::Route;
|
2019-03-24 19:59:35 +01:00
|
|
|
pub use crate::scope::Scope;
|
2019-03-05 01:29:03 +01:00
|
|
|
pub use crate::server::HttpServer;
|
2018-07-29 08:43:04 +02:00
|
|
|
|
2019-03-06 07:10:08 +01:00
|
|
|
pub mod dev {
|
|
|
|
//! The `actix-web` prelude for library developers
|
|
|
|
//!
|
|
|
|
//! The purpose of this module is to alleviate imports of many common actix
|
|
|
|
//! traits by adding a glob import to the top of actix heavy modules:
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! # #![allow(unused_imports)]
|
|
|
|
//! use actix_web::dev::*;
|
|
|
|
//! ```
|
|
|
|
|
2019-03-07 00:47:15 +01:00
|
|
|
pub use crate::app::AppRouter;
|
2019-03-09 23:06:24 +01:00
|
|
|
pub use crate::config::{AppConfig, ServiceConfig};
|
|
|
|
pub use crate::info::ConnectionInfo;
|
|
|
|
pub use crate::rmap::ResourceMap;
|
2019-03-11 00:35:38 +01:00
|
|
|
pub use crate::service::{
|
|
|
|
HttpServiceFactory, ServiceFromRequest, ServiceRequest, ServiceResponse,
|
|
|
|
};
|
2019-03-17 08:48:40 +01:00
|
|
|
pub use crate::types::form::UrlEncoded;
|
2019-03-17 06:04:09 +01:00
|
|
|
pub use crate::types::json::JsonBody;
|
2019-03-17 08:48:40 +01:00
|
|
|
pub use crate::types::payload::HttpMessageBody;
|
|
|
|
pub use crate::types::readlines::Readlines;
|
2019-03-07 00:47:15 +01:00
|
|
|
|
2019-03-27 17:24:55 +01:00
|
|
|
pub use actix_http::body::{Body, BodySize, MessageBody, ResponseBody};
|
2019-03-17 09:08:56 +01:00
|
|
|
pub use actix_http::ResponseBuilder as HttpResponseBuilder;
|
2019-03-06 07:10:08 +01:00
|
|
|
pub use actix_http::{
|
2019-03-27 18:38:01 +01:00
|
|
|
Extensions, Payload, PayloadStream, RequestHead, ResponseHead,
|
2019-03-06 07:10:08 +01:00
|
|
|
};
|
2019-03-09 23:06:24 +01:00
|
|
|
pub use actix_router::{Path, ResourceDef, ResourcePath, Url};
|
2019-03-10 17:20:58 +01:00
|
|
|
pub use actix_server::Server;
|
2019-03-07 00:47:15 +01:00
|
|
|
|
|
|
|
pub(crate) fn insert_slash(path: &str) -> String {
|
|
|
|
let mut path = path.to_owned();
|
|
|
|
if !path.is_empty() && !path.starts_with('/') {
|
|
|
|
path.insert(0, '/');
|
|
|
|
};
|
|
|
|
path
|
|
|
|
}
|
2019-03-06 07:10:08 +01:00
|
|
|
}
|
|
|
|
|
2019-03-03 04:19:56 +01:00
|
|
|
pub mod web {
|
2019-03-17 04:17:27 +01:00
|
|
|
//! Various types
|
2019-03-11 02:33:47 +01:00
|
|
|
use actix_http::{http::Method, Response};
|
2019-03-12 07:19:05 +01:00
|
|
|
use futures::{Future, IntoFuture};
|
2019-03-03 04:19:56 +01:00
|
|
|
|
2019-03-07 22:33:40 +01:00
|
|
|
pub use actix_http::Response as HttpResponse;
|
|
|
|
pub use bytes::{Bytes, BytesMut};
|
|
|
|
|
2019-03-17 05:35:02 +01:00
|
|
|
use crate::error::{BlockingError, Error};
|
2019-03-03 22:53:31 +01:00
|
|
|
use crate::extract::FromRequest;
|
|
|
|
use crate::handler::{AsyncFactory, Factory};
|
2019-03-07 00:47:15 +01:00
|
|
|
use crate::resource::Resource;
|
2019-03-03 04:19:56 +01:00
|
|
|
use crate::responder::Responder;
|
2019-03-07 00:47:15 +01:00
|
|
|
use crate::route::Route;
|
|
|
|
use crate::scope::Scope;
|
|
|
|
|
2019-03-17 05:09:11 +01:00
|
|
|
pub use crate::data::{Data, RouteData};
|
2019-03-07 22:33:40 +01:00
|
|
|
pub use crate::request::HttpRequest;
|
2019-03-17 06:04:09 +01:00
|
|
|
pub use crate::types::*;
|
2019-03-07 20:43:46 +01:00
|
|
|
|
2019-03-07 00:47:15 +01:00
|
|
|
/// Create resource for a specific path.
|
|
|
|
///
|
|
|
|
/// Resources may have variable path segments. For example, a
|
|
|
|
/// resource with the path `/a/{name}/c` would match all incoming
|
|
|
|
/// requests with paths such as `/a/b/c`, `/a/1/c`, or `/a/etc/c`.
|
|
|
|
///
|
|
|
|
/// A variable segment is specified in the form `{identifier}`,
|
|
|
|
/// where the identifier can be used later in a request handler to
|
|
|
|
/// access the matched value for that segment. This is done by
|
|
|
|
/// looking up the identifier in the `Params` object returned by
|
|
|
|
/// `HttpRequest.match_info()` method.
|
|
|
|
///
|
|
|
|
/// By default, each segment matches the regular expression `[^{}/]+`.
|
|
|
|
///
|
|
|
|
/// You can also specify a custom regex in the form `{identifier:regex}`:
|
|
|
|
///
|
|
|
|
/// For instance, to route `GET`-requests on any route matching
|
|
|
|
/// `/users/{userid}/{friend}` and store `userid` and `friend` in
|
|
|
|
/// the exposed `Params` object:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # extern crate actix_web;
|
|
|
|
/// use actix_web::{web, http, App, HttpResponse};
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/users/{userid}/{friend}")
|
|
|
|
/// .route(web::get().to(|| HttpResponse::Ok()))
|
|
|
|
/// .route(web::head().to(|| HttpResponse::MethodNotAllowed()))
|
|
|
|
/// );
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub fn resource<P: 'static>(path: &str) -> Resource<P> {
|
|
|
|
Resource::new(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Configure scope for common root path.
|
|
|
|
///
|
|
|
|
/// Scopes collect multiple paths under a common path prefix.
|
|
|
|
/// Scope path can contain variable path segments as resources.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # extern crate actix_web;
|
|
|
|
/// use actix_web::{web, App, HttpRequest, HttpResponse};
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::scope("/{project_id}")
|
|
|
|
/// .service(web::resource("/path1").to(|| HttpResponse::Ok()))
|
|
|
|
/// .service(web::resource("/path2").to(|| HttpResponse::Ok()))
|
|
|
|
/// .service(web::resource("/path3").to(|| HttpResponse::MethodNotAllowed()))
|
|
|
|
/// );
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// In the above example, three routes get added:
|
|
|
|
/// * /{project_id}/path1
|
|
|
|
/// * /{project_id}/path2
|
|
|
|
/// * /{project_id}/path3
|
|
|
|
///
|
|
|
|
pub fn scope<P: 'static>(path: &str) -> Scope<P> {
|
|
|
|
Scope::new(path)
|
|
|
|
}
|
2019-03-03 04:19:56 +01:00
|
|
|
|
2019-03-08 00:51:24 +01:00
|
|
|
/// Create *route* without configuration.
|
2019-03-03 04:19:56 +01:00
|
|
|
pub fn route<P: 'static>() -> Route<P> {
|
|
|
|
Route::new()
|
|
|
|
}
|
|
|
|
|
2019-03-08 00:51:24 +01:00
|
|
|
/// Create *route* with `GET` method guard.
|
2019-03-03 04:19:56 +01:00
|
|
|
pub fn get<P: 'static>() -> Route<P> {
|
2019-03-08 00:51:24 +01:00
|
|
|
Route::new().method(Method::GET)
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 00:51:24 +01:00
|
|
|
/// Create *route* with `POST` method guard.
|
2019-03-03 04:19:56 +01:00
|
|
|
pub fn post<P: 'static>() -> Route<P> {
|
2019-03-08 00:51:24 +01:00
|
|
|
Route::new().method(Method::POST)
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 00:51:24 +01:00
|
|
|
/// Create *route* with `PUT` method guard.
|
2019-03-03 04:19:56 +01:00
|
|
|
pub fn put<P: 'static>() -> Route<P> {
|
2019-03-08 00:51:24 +01:00
|
|
|
Route::new().method(Method::PUT)
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 00:51:24 +01:00
|
|
|
/// Create *route* with `PATCH` method guard.
|
|
|
|
pub fn patch<P: 'static>() -> Route<P> {
|
|
|
|
Route::new().method(Method::PATCH)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create *route* with `DELETE` method guard.
|
2019-03-03 04:19:56 +01:00
|
|
|
pub fn delete<P: 'static>() -> Route<P> {
|
2019-03-08 00:51:24 +01:00
|
|
|
Route::new().method(Method::DELETE)
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 00:51:24 +01:00
|
|
|
/// Create *route* with `HEAD` method guard.
|
2019-03-03 04:19:56 +01:00
|
|
|
pub fn head<P: 'static>() -> Route<P> {
|
|
|
|
Route::new().method(Method::HEAD)
|
|
|
|
}
|
|
|
|
|
2019-03-08 00:51:24 +01:00
|
|
|
/// Create *route* and add method guard.
|
2019-03-03 04:19:56 +01:00
|
|
|
pub fn method<P: 'static>(method: Method) -> Route<P> {
|
|
|
|
Route::new().method(method)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new route and add handler.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{web, App, HttpResponse};
|
|
|
|
///
|
|
|
|
/// fn index() -> HttpResponse {
|
|
|
|
/// unimplemented!()
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-07 00:47:15 +01:00
|
|
|
/// App::new().service(
|
|
|
|
/// web::resource("/").route(
|
|
|
|
/// web::to(index))
|
|
|
|
/// );
|
2019-03-03 04:19:56 +01:00
|
|
|
/// ```
|
|
|
|
pub fn to<F, I, R, P: 'static>(handler: F) -> Route<P>
|
|
|
|
where
|
|
|
|
F: Factory<I, R> + 'static,
|
|
|
|
I: FromRequest<P> + 'static,
|
|
|
|
R: Responder + 'static,
|
|
|
|
{
|
|
|
|
Route::new().to(handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new route and add async handler.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{web, App, HttpResponse, Error};
|
|
|
|
///
|
|
|
|
/// fn index() -> impl futures::Future<Item=HttpResponse, Error=Error> {
|
|
|
|
/// futures::future::ok(HttpResponse::Ok().finish())
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-07 00:47:15 +01:00
|
|
|
/// App::new().service(web::resource("/").route(
|
|
|
|
/// web::to_async(index))
|
|
|
|
/// );
|
2019-03-03 04:19:56 +01:00
|
|
|
/// ```
|
|
|
|
pub fn to_async<F, I, R, P: 'static>(handler: F) -> Route<P>
|
|
|
|
where
|
|
|
|
F: AsyncFactory<I, R>,
|
|
|
|
I: FromRequest<P> + 'static,
|
|
|
|
R: IntoFuture + 'static,
|
|
|
|
R::Item: Into<Response>,
|
|
|
|
R::Error: Into<Error>,
|
|
|
|
{
|
|
|
|
Route::new().to_async(handler)
|
|
|
|
}
|
2019-03-07 23:40:20 +01:00
|
|
|
|
|
|
|
/// Execute blocking function on a thread pool, returns future that resolves
|
|
|
|
/// to result of the function execution.
|
2019-03-12 07:19:05 +01:00
|
|
|
pub fn block<F, I, E>(f: F) -> impl Future<Item = I, Error = BlockingError<E>>
|
2019-03-07 23:40:20 +01:00
|
|
|
where
|
|
|
|
F: FnOnce() -> Result<I, E> + Send + 'static,
|
|
|
|
I: Send + 'static,
|
|
|
|
E: Send + std::fmt::Debug + 'static,
|
|
|
|
{
|
2019-03-28 13:16:43 +01:00
|
|
|
actix_threadpool::run(f).from_err()
|
2019-03-07 23:40:20 +01:00
|
|
|
}
|
2019-03-25 20:47:58 +01:00
|
|
|
|
|
|
|
use actix_service::{fn_transform, Service, Transform};
|
|
|
|
|
|
|
|
use crate::service::{ServiceRequest, ServiceResponse};
|
|
|
|
|
|
|
|
/// Create middleare
|
|
|
|
pub fn md<F, R, S, P, B>(
|
|
|
|
f: F,
|
|
|
|
) -> impl Transform<
|
|
|
|
S,
|
|
|
|
Request = ServiceRequest<P>,
|
|
|
|
Response = ServiceResponse<B>,
|
|
|
|
Error = Error,
|
|
|
|
InitError = (),
|
|
|
|
>
|
|
|
|
where
|
|
|
|
S: Service<
|
|
|
|
Request = ServiceRequest<P>,
|
|
|
|
Response = ServiceResponse<B>,
|
|
|
|
Error = Error,
|
|
|
|
>,
|
|
|
|
F: FnMut(ServiceRequest<P>, &mut S) -> R + Clone,
|
|
|
|
R: IntoFuture<Item = ServiceResponse<B>, Error = Error>,
|
|
|
|
{
|
|
|
|
fn_transform(f)
|
|
|
|
}
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|
2019-03-27 17:24:55 +01:00
|
|
|
|
|
|
|
#[cfg(feature = "client")]
|
|
|
|
pub mod client {
|
|
|
|
//! An HTTP Client
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! # use futures::future::{Future, lazy};
|
|
|
|
//! use actix_rt::System;
|
|
|
|
//! use actix_web::client::Client;
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! System::new("test").block_on(lazy(|| {
|
|
|
|
//! let mut client = Client::default();
|
|
|
|
//!
|
|
|
|
//! client.get("http://www.rust-lang.org") // <- Create request builder
|
|
|
|
//! .header("User-Agent", "Actix-web")
|
|
|
|
//! .send() // <- Send http request
|
|
|
|
//! .map_err(|_| ())
|
|
|
|
//! .and_then(|response| { // <- server http response
|
|
|
|
//! println!("Response: {:?}", response);
|
|
|
|
//! Ok(())
|
|
|
|
//! })
|
|
|
|
//! }));
|
|
|
|
//! }
|
|
|
|
//! ```
|
2019-03-28 02:53:19 +01:00
|
|
|
pub use awc::error::{
|
|
|
|
ConnectError, InvalidUrl, PayloadError, SendRequestError, WsClientError,
|
2019-03-27 17:24:55 +01:00
|
|
|
};
|
2019-03-28 02:53:19 +01:00
|
|
|
pub use awc::{test, Client, ClientBuilder, ClientRequest, ClientResponse};
|
2019-03-27 17:24:55 +01:00
|
|
|
}
|