2020-02-27 22:35:57 +09:00
|
|
|
#![warn(rust_2018_idioms, warnings)]
|
2020-06-22 20:09:48 +01:00
|
|
|
#![allow(clippy::needless_doctest_main, clippy::type_complexity)]
|
|
|
|
|
2020-07-05 01:16:53 +01:00
|
|
|
//! Actix web is a powerful, pragmatic, and extremely fast web framework for Rust.
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-02-19 21:13:10 +01:00
|
|
|
//! ## Example
|
|
|
|
//!
|
2019-12-08 12:31:16 +06:00
|
|
|
//! ```rust,no_run
|
2020-07-05 01:16:53 +01:00
|
|
|
//! use actix_web::{get, web, App, HttpServer, Responder};
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! #[get("/{id}/{name}/index.html")]
|
|
|
|
//! async fn index(info: web::Path<(u32, String)>) -> impl Responder {
|
|
|
|
//! format!("Hello {}! id:{}", info.1, info.0)
|
2019-03-24 11:47:23 -07:00
|
|
|
//! }
|
|
|
|
//!
|
2020-06-22 20:09:48 +01:00
|
|
|
//! #[actix_web::main]
|
2019-12-08 12:31:16 +06:00
|
|
|
//! async fn main() -> std::io::Result<()> {
|
2020-07-05 01:16:53 +01:00
|
|
|
//! HttpServer::new(|| App::new().service(index))
|
2019-03-24 11:47:23 -07:00
|
|
|
//! .bind("127.0.0.1:8080")?
|
2019-12-22 17:12:22 +04:00
|
|
|
//! .run()
|
2019-12-08 12:31:16 +06:00
|
|
|
//! .await
|
2019-03-24 11:47:23 -07:00
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! ## Documentation & Community Resources
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! In addition to this API documentation, several other resources are available:
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * [Website & User Guide](https://actix.rs/)
|
|
|
|
//! * [Examples Repository](https://github.com/actix/examples)
|
|
|
|
//! * [Community Chat on Gitter](https://gitter.im/actix/actix-web)
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! To get started navigating the API docs, you may consider looking at the following pages first:
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * [App](struct.App.html): This struct represents an Actix web application and is used to
|
|
|
|
//! configure routes and other common application settings.
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * [HttpServer](struct.HttpServer.html): This struct represents an HTTP server instance and is
|
|
|
|
//! used to instantiate and configure servers.
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * [web](web/index.html): This module provides essential types for route registration as well as
|
|
|
|
//! common utilities for request handlers.
|
2019-03-30 10:04:38 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * [HttpRequest](struct.HttpRequest.html) and [HttpResponse](struct.HttpResponse.html): These
|
|
|
|
//! structs represent HTTP requests and responses and expose methods for creating, inspecting,
|
|
|
|
//! and otherwise utilizing them.
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
|
|
|
//! ## Features
|
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * Supports *HTTP/1.x* and *HTTP/2*
|
2019-03-24 11:47:23 -07:00
|
|
|
//! * Streaming and pipelining
|
|
|
|
//! * Keep-alive and slow requests handling
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * Client/server [WebSockets](https://actix.rs/docs/websockets/) support
|
2019-03-24 11:47:23 -07:00
|
|
|
//! * Transparent content compression/decompression (br, gzip, deflate)
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * Powerful [request routing](https://actix.rs/docs/url-dispatch/)
|
2019-03-24 11:47:23 -07:00
|
|
|
//! * Multipart streams
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * Static assets
|
|
|
|
//! * SSL support using OpenSSL or Rustls
|
|
|
|
//! * Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/))
|
|
|
|
//! * Includes an async [HTTP client](https://actix.rs/actix-web/actix_web/client/index.html)
|
2019-03-24 11:47:23 -07:00
|
|
|
//! * Supports [Actix actor framework](https://github.com/actix/actix)
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * Runs on stable Rust 1.41+
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! ## Crate Features
|
2019-03-24 11:47:23 -07:00
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! * `compress` - content encoding compression support (enabled by default)
|
|
|
|
//! * `openssl` - HTTPS support via `openssl` crate, supports `HTTP/2`
|
|
|
|
//! * `rustls` - HTTPS support via `rustls` crate, supports `HTTP/2`
|
|
|
|
//! * `secure-cookies` - secure cookies support
|
2017-11-24 10:03:13 -08:00
|
|
|
|
2019-03-01 22:51:32 -08:00
|
|
|
mod app;
|
2019-03-09 09:49:11 -08:00
|
|
|
mod app_service;
|
2019-03-06 15:47:15 -08:00
|
|
|
mod config;
|
2019-03-16 20:17:27 -07:00
|
|
|
mod data;
|
2019-03-09 07:39:34 -08:00
|
|
|
pub mod error;
|
2019-03-09 14:06:24 -08:00
|
|
|
mod extract;
|
2019-03-03 12:09:38 -08:00
|
|
|
pub mod guard;
|
2019-03-09 14:06:24 -08:00
|
|
|
mod handler;
|
|
|
|
mod info;
|
2017-12-26 19:59:41 -08:00
|
|
|
pub mod middleware;
|
2019-03-01 22:51:32 -08:00
|
|
|
mod request;
|
|
|
|
mod resource;
|
|
|
|
mod responder;
|
2019-03-09 07:39:34 -08:00
|
|
|
mod rmap;
|
2019-03-01 22:51:32 -08:00
|
|
|
mod route;
|
2019-03-03 21:02:01 -08:00
|
|
|
mod scope;
|
2019-03-04 16:29:03 -08:00
|
|
|
mod server;
|
2019-03-01 22:51:32 -08:00
|
|
|
mod service;
|
2019-03-02 16:24:14 -08:00
|
|
|
pub mod test;
|
2019-03-16 21:43:48 -07:00
|
|
|
mod types;
|
2019-03-30 10:04:38 -07:00
|
|
|
pub mod web;
|
2019-03-01 22:51:32 -08:00
|
|
|
|
|
|
|
pub use actix_http::Response as HttpResponse;
|
2019-06-01 17:57:40 +06:00
|
|
|
pub use actix_http::{body, cookie, http, Error, HttpMessage, ResponseError, Result};
|
2020-07-05 01:16:53 +01:00
|
|
|
pub use actix_rt as rt;
|
|
|
|
pub use actix_web_codegen::*;
|
2019-03-01 22:51:32 -08:00
|
|
|
|
2019-03-05 22:10:08 -08:00
|
|
|
pub use crate::app::App;
|
2019-03-07 11:43:46 -08:00
|
|
|
pub use crate::extract::FromRequest;
|
2019-03-01 22:51:32 -08:00
|
|
|
pub use crate::request::HttpRequest;
|
|
|
|
pub use crate::resource::Resource;
|
|
|
|
pub use crate::responder::{Either, Responder};
|
2019-03-02 19:19:56 -08:00
|
|
|
pub use crate::route::Route;
|
2019-03-24 11:59:35 -07:00
|
|
|
pub use crate::scope::Scope;
|
2019-03-04 16:29:03 -08:00
|
|
|
pub use crate::server::HttpServer;
|
2018-07-29 09:43:04 +03:00
|
|
|
|
2019-03-05 22:10:08 -08: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-04-15 07:32:49 -07:00
|
|
|
pub use crate::config::{AppConfig, AppService};
|
2019-07-17 12:28:42 +05:30
|
|
|
#[doc(hidden)]
|
2019-11-21 21:34:04 +06:00
|
|
|
pub use crate::handler::Factory;
|
2019-03-09 14:06:24 -08:00
|
|
|
pub use crate::info::ConnectionInfo;
|
|
|
|
pub use crate::rmap::ResourceMap;
|
2019-04-24 15:29:15 -07:00
|
|
|
pub use crate::service::{
|
|
|
|
HttpServiceFactory, ServiceRequest, ServiceResponse, WebService,
|
|
|
|
};
|
2019-11-20 23:33:22 +06:00
|
|
|
|
2019-11-26 11:25:50 +06:00
|
|
|
pub use crate::types::form::UrlEncoded;
|
|
|
|
pub use crate::types::json::JsonBody;
|
|
|
|
pub use crate::types::readlines::Readlines;
|
2019-03-06 15:47:15 -08:00
|
|
|
|
2019-06-01 17:57:40 +06:00
|
|
|
pub use actix_http::body::{Body, BodySize, MessageBody, ResponseBody, SizedStream};
|
2019-12-15 13:28:54 +06:00
|
|
|
#[cfg(feature = "compress")]
|
2019-04-13 14:50:54 -07:00
|
|
|
pub use actix_http::encoding::Decoder as Decompress;
|
2019-03-17 01:08:56 -07:00
|
|
|
pub use actix_http::ResponseBuilder as HttpResponseBuilder;
|
2019-03-05 22:10:08 -08:00
|
|
|
pub use actix_http::{
|
2019-03-27 10:38:01 -07:00
|
|
|
Extensions, Payload, PayloadStream, RequestHead, ResponseHead,
|
2019-03-05 22:10:08 -08:00
|
|
|
};
|
2019-03-09 14:06:24 -08:00
|
|
|
pub use actix_router::{Path, ResourceDef, ResourcePath, Url};
|
2019-03-10 09:20:58 -07:00
|
|
|
pub use actix_server::Server;
|
2019-05-22 11:20:37 -07:00
|
|
|
pub use actix_service::{Service, Transform};
|
2019-03-06 15:47:15 -08:00
|
|
|
|
2019-12-25 20:13:52 +04:00
|
|
|
pub(crate) fn insert_slash(mut patterns: Vec<String>) -> Vec<String> {
|
|
|
|
for path in &mut patterns {
|
|
|
|
if !path.is_empty() && !path.starts_with('/') {
|
|
|
|
path.insert(0, '/');
|
|
|
|
};
|
|
|
|
}
|
|
|
|
patterns
|
2019-03-06 15:47:15 -08:00
|
|
|
}
|
2019-12-16 17:22:26 +06:00
|
|
|
|
|
|
|
use crate::http::header::ContentEncoding;
|
|
|
|
use actix_http::{Response, ResponseBuilder};
|
|
|
|
|
|
|
|
struct Enc(ContentEncoding);
|
|
|
|
|
|
|
|
/// Helper trait that allows to set specific encoding for response.
|
|
|
|
pub trait BodyEncoding {
|
2019-12-18 09:30:14 +06:00
|
|
|
/// Get content encoding
|
|
|
|
fn get_encoding(&self) -> Option<ContentEncoding>;
|
2019-12-16 17:22:26 +06:00
|
|
|
|
2019-12-18 09:30:14 +06:00
|
|
|
/// Set content encoding
|
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self;
|
2019-12-16 17:22:26 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl BodyEncoding for ResponseBuilder {
|
2019-12-18 09:30:14 +06:00
|
|
|
fn get_encoding(&self) -> Option<ContentEncoding> {
|
2019-12-16 17:22:26 +06:00
|
|
|
if let Some(ref enc) = self.extensions().get::<Enc>() {
|
|
|
|
Some(enc.0)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-18 09:30:14 +06:00
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
|
2019-12-16 17:22:26 +06:00
|
|
|
self.extensions_mut().insert(Enc(encoding));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<B> BodyEncoding for Response<B> {
|
2019-12-18 09:30:14 +06:00
|
|
|
fn get_encoding(&self) -> Option<ContentEncoding> {
|
2019-12-16 17:22:26 +06:00
|
|
|
if let Some(ref enc) = self.extensions().get::<Enc>() {
|
|
|
|
Some(enc.0)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-18 09:30:14 +06:00
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
|
2019-12-16 17:22:26 +06:00
|
|
|
self.extensions_mut().insert(Enc(encoding));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
2019-03-05 22:10:08 -08:00
|
|
|
}
|
2019-03-27 09:24:55 -07:00
|
|
|
|
|
|
|
pub mod client {
|
2020-07-05 01:16:53 +01:00
|
|
|
//! Actix web async HTTP client.
|
2019-03-27 09:24:55 -07:00
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! use actix_web::client::Client;
|
|
|
|
//!
|
2020-07-05 01:16:53 +01:00
|
|
|
//! #[actix_web::main]
|
2019-11-26 11:25:50 +06:00
|
|
|
//! async fn main() {
|
|
|
|
//! let mut client = Client::default();
|
2019-03-27 09:24:55 -07:00
|
|
|
//!
|
2019-11-26 11:25:50 +06:00
|
|
|
//! // Create request builder and send request
|
|
|
|
//! let response = client.get("http://www.rust-lang.org")
|
2020-07-05 01:16:53 +01:00
|
|
|
//! .header("User-Agent", "actix-web/3.0")
|
|
|
|
//! .send() // <- Send request
|
|
|
|
//! .await; // <- Wait for response
|
2019-11-20 23:33:22 +06:00
|
|
|
//!
|
2019-11-26 11:25:50 +06:00
|
|
|
//! println!("Response: {:?}", response);
|
2019-03-27 09:24:55 -07:00
|
|
|
//! }
|
|
|
|
//! ```
|
2020-06-22 20:09:48 +01:00
|
|
|
|
2019-03-27 18:53:19 -07:00
|
|
|
pub use awc::error::{
|
|
|
|
ConnectError, InvalidUrl, PayloadError, SendRequestError, WsClientError,
|
2019-03-27 09:24:55 -07:00
|
|
|
};
|
2019-04-05 11:36:26 -07:00
|
|
|
pub use awc::{
|
|
|
|
test, Client, ClientBuilder, ClientRequest, ClientResponse, Connector,
|
|
|
|
};
|
2019-03-27 09:24:55 -07:00
|
|
|
}
|