2020-11-29 17:33:45 +01:00
|
|
|
//! Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2021-06-17 18:57:58 +02:00
|
|
|
//! # Examples
|
2021-03-25 09:45:52 +01:00
|
|
|
//! ```no_run
|
2020-07-05 02:16:53 +02:00
|
|
|
//! use actix_web::{get, web, App, HttpServer, Responder};
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2020-07-05 02:16:53 +02:00
|
|
|
//! #[get("/{id}/{name}/index.html")]
|
2021-01-09 14:17:19 +01:00
|
|
|
//! async fn index(path: web::Path<(u32, String)>) -> impl Responder {
|
|
|
|
//! let (id, name) = path.into_inner();
|
2020-07-21 01:54:26 +02:00
|
|
|
//! format!("Hello {}! id:{}", name, id)
|
2019-03-24 19:47:23 +01:00
|
|
|
//! }
|
|
|
|
//!
|
2020-06-22 21:09:48 +02:00
|
|
|
//! #[actix_web::main]
|
2019-12-08 07:31:16 +01:00
|
|
|
//! async fn main() -> std::io::Result<()> {
|
2020-07-05 02:16:53 +02:00
|
|
|
//! HttpServer::new(|| App::new().service(index))
|
2019-03-24 19:47:23 +01:00
|
|
|
//! .bind("127.0.0.1:8080")?
|
2019-12-22 14:12:22 +01:00
|
|
|
//! .run()
|
2019-12-08 07:31:16 +01:00
|
|
|
//! .await
|
2019-03-24 19:47:23 +01:00
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
2021-06-17 18:57:58 +02:00
|
|
|
//! # Documentation & Community Resources
|
2020-07-05 02:16:53 +02:00
|
|
|
//! In addition to this API documentation, several other resources are available:
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2020-07-05 02:16:53 +02:00
|
|
|
//! * [Website & User Guide](https://actix.rs/)
|
|
|
|
//! * [Examples Repository](https://github.com/actix/examples)
|
2021-06-04 03:54:40 +02:00
|
|
|
//! * [Community Chat on Discord](https://discord.gg/NWpN5mmg3x)
|
2020-07-05 02:16:53 +02:00
|
|
|
//! * [Community Chat on Gitter](https://gitter.im/actix/actix-web)
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2020-07-05 02:16:53 +02:00
|
|
|
//! To get started navigating the API docs, you may consider looking at the following pages first:
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2021-04-20 20:57:27 +02:00
|
|
|
//! * [`App`]: This struct represents an Actix Web application and is used to
|
2020-07-05 02:16:53 +02:00
|
|
|
//! configure routes and other common application settings.
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2021-04-20 20:57:27 +02:00
|
|
|
//! * [`HttpServer`]: This struct represents an HTTP server instance and is
|
2020-07-05 02:16:53 +02:00
|
|
|
//! used to instantiate and configure servers.
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2021-04-20 20:57:27 +02:00
|
|
|
//! * [`web`]: This module provides essential types for route registration as well as
|
2020-07-05 02:16:53 +02:00
|
|
|
//! common utilities for request handlers.
|
2019-03-30 18:04:38 +01:00
|
|
|
//!
|
2021-04-20 20:57:27 +02:00
|
|
|
//! * [`HttpRequest`] and [`HttpResponse`]: These
|
2020-07-05 02:16:53 +02:00
|
|
|
//! structs represent HTTP requests and responses and expose methods for creating, inspecting,
|
|
|
|
//! and otherwise utilizing them.
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2021-06-17 18:57:58 +02:00
|
|
|
//! # Features
|
2020-07-05 02:16:53 +02:00
|
|
|
//! * Supports *HTTP/1.x* and *HTTP/2*
|
2019-03-24 19:47:23 +01:00
|
|
|
//! * Streaming and pipelining
|
|
|
|
//! * Keep-alive and slow requests handling
|
2020-07-05 02:16:53 +02:00
|
|
|
//! * Client/server [WebSockets](https://actix.rs/docs/websockets/) support
|
2021-06-19 21:21:13 +02:00
|
|
|
//! * Transparent content compression/decompression (br, gzip, deflate, zstd)
|
2020-07-05 02:16:53 +02:00
|
|
|
//! * Powerful [request routing](https://actix.rs/docs/url-dispatch/)
|
2019-03-24 19:47:23 +01:00
|
|
|
//! * Multipart streams
|
2020-07-05 02:16:53 +02:00
|
|
|
//! * Static assets
|
|
|
|
//! * SSL support using OpenSSL or Rustls
|
|
|
|
//! * Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/))
|
2021-04-20 20:57:27 +02:00
|
|
|
//! * Includes an async [HTTP client](https://docs.rs/awc/)
|
2020-12-28 01:44:15 +01:00
|
|
|
//! * Runs on stable Rust 1.46+
|
2019-03-24 19:47:23 +01:00
|
|
|
//!
|
2021-06-17 18:57:58 +02:00
|
|
|
//! # Crate Features
|
2021-02-13 16:08:43 +01:00
|
|
|
//! * `cookies` - cookies support (enabled by default)
|
2021-06-19 21:23:06 +02:00
|
|
|
//! * `compress-brotli` - brotli content encoding compression support (enabled by default)
|
|
|
|
//! * `compress-gzip` - gzip and deflate content encoding compression support (enabled by default)
|
|
|
|
//! * `compress-zstd` - zstd content encoding compression support (enabled by default)
|
2020-07-05 02:16:53 +02:00
|
|
|
//! * `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 19:03:13 +01:00
|
|
|
|
2020-12-28 01:44:15 +01:00
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
2020-09-13 04:24:44 +02:00
|
|
|
#![allow(clippy::needless_doctest_main, clippy::type_complexity)]
|
|
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
|
|
|
|
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;
|
2021-06-17 18:57:58 +02:00
|
|
|
mod helpers;
|
2021-04-01 17:42:18 +02:00
|
|
|
pub mod http;
|
2019-03-09 23:06:24 +01:00
|
|
|
mod info;
|
2017-12-27 04:59:41 +01:00
|
|
|
pub mod middleware;
|
2019-03-02 07:51:32 +01:00
|
|
|
mod request;
|
2020-10-24 19:49:50 +02:00
|
|
|
mod request_data;
|
2019-03-02 07:51:32 +01:00
|
|
|
mod resource;
|
|
|
|
mod responder;
|
2021-04-09 19:07:10 +02:00
|
|
|
mod response;
|
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;
|
2021-01-09 14:17:19 +01:00
|
|
|
pub(crate) mod types;
|
2019-03-30 18:04:38 +01:00
|
|
|
pub mod web;
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2021-04-09 19:07:10 +02:00
|
|
|
pub use actix_http::Response as BaseHttpResponse;
|
2021-06-17 18:57:58 +02:00
|
|
|
pub use actix_http::{body, HttpMessage};
|
2021-04-08 21:51:16 +02:00
|
|
|
#[doc(inline)]
|
2020-07-05 02:16:53 +02:00
|
|
|
pub use actix_rt as rt;
|
|
|
|
pub use actix_web_codegen::*;
|
2021-04-09 19:07:10 +02:00
|
|
|
#[cfg(feature = "cookies")]
|
|
|
|
pub use cookie;
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2019-03-06 07:10:08 +01:00
|
|
|
pub use crate::app::App;
|
2021-06-17 18:57:58 +02:00
|
|
|
pub use crate::error::{Error, ResponseError, Result};
|
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;
|
2020-11-20 19:02:41 +01:00
|
|
|
pub use crate::responder::Responder;
|
2021-04-09 19:07:10 +02:00
|
|
|
pub use crate::response::{HttpResponse, HttpResponseBuilder};
|
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;
|
2021-01-09 14:17:19 +01:00
|
|
|
// TODO: is exposing the error directly really needed
|
2020-11-20 19:02:41 +01:00
|
|
|
pub use crate::types::{Either, EitherExtractError};
|
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-04-15 16:32:49 +02:00
|
|
|
pub use crate::config::{AppConfig, AppService};
|
2019-07-17 08:58:42 +02:00
|
|
|
#[doc(hidden)]
|
2020-12-26 22:46:19 +01:00
|
|
|
pub use crate::handler::Handler;
|
2019-03-09 23:06:24 +01:00
|
|
|
pub use crate::info::ConnectionInfo;
|
|
|
|
pub use crate::rmap::ResourceMap;
|
2021-02-12 00:03:17 +01:00
|
|
|
pub use crate::service::{HttpServiceFactory, ServiceRequest, ServiceResponse, WebService};
|
2019-11-20 18:33:22 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
pub use crate::types::form::UrlEncoded;
|
|
|
|
pub use crate::types::json::JsonBody;
|
|
|
|
pub use crate::types::readlines::Readlines;
|
2019-03-07 00:47:15 +01:00
|
|
|
|
2021-06-17 18:57:58 +02:00
|
|
|
pub use actix_http::body::{
|
|
|
|
AnyBody, Body, BodySize, MessageBody, ResponseBody, SizedStream,
|
|
|
|
};
|
2021-06-19 21:21:13 +02:00
|
|
|
|
|
|
|
#[cfg(feature = "__compress")]
|
2019-04-13 23:50:54 +02:00
|
|
|
pub use actix_http::encoding::Decoder as Decompress;
|
2021-04-09 19:07:10 +02:00
|
|
|
pub use actix_http::ResponseBuilder as BaseHttpResponseBuilder;
|
2021-02-12 00:03:17 +01:00
|
|
|
pub use actix_http::{Extensions, Payload, PayloadStream, RequestHead, ResponseHead};
|
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;
|
2021-04-17 00:21:02 +02:00
|
|
|
pub use actix_service::{always_ready, forward_ready, Service, Transform};
|
2019-03-07 00:47:15 +01:00
|
|
|
|
2019-12-25 17:13:52 +01: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-07 00:47:15 +01:00
|
|
|
}
|
2019-12-16 12:22:26 +01: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 04:30:14 +01:00
|
|
|
/// Get content encoding
|
|
|
|
fn get_encoding(&self) -> Option<ContentEncoding>;
|
2019-12-16 12:22:26 +01:00
|
|
|
|
2019-12-18 04:30:14 +01:00
|
|
|
/// Set content encoding
|
2021-06-10 16:38:35 +02:00
|
|
|
///
|
|
|
|
/// Must be used with [`crate::middleware::Compress`] to take effect.
|
2019-12-18 04:30:14 +01:00
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self;
|
2019-12-16 12:22:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl BodyEncoding for ResponseBuilder {
|
2019-12-18 04:30:14 +01:00
|
|
|
fn get_encoding(&self) -> Option<ContentEncoding> {
|
2021-03-19 12:25:35 +01:00
|
|
|
self.extensions().get::<Enc>().map(|enc| enc.0)
|
2019-12-16 12:22:26 +01:00
|
|
|
}
|
|
|
|
|
2019-12-18 04:30:14 +01:00
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
|
2019-12-16 12:22:26 +01:00
|
|
|
self.extensions_mut().insert(Enc(encoding));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<B> BodyEncoding for Response<B> {
|
2019-12-18 04:30:14 +01:00
|
|
|
fn get_encoding(&self) -> Option<ContentEncoding> {
|
2021-03-19 12:25:35 +01:00
|
|
|
self.extensions().get::<Enc>().map(|enc| enc.0)
|
2019-12-16 12:22:26 +01:00
|
|
|
}
|
|
|
|
|
2019-12-18 04:30:14 +01:00
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
|
2019-12-16 12:22:26 +01:00
|
|
|
self.extensions_mut().insert(Enc(encoding));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
2021-04-09 19:07:10 +02:00
|
|
|
|
|
|
|
impl BodyEncoding for crate::HttpResponseBuilder {
|
|
|
|
fn get_encoding(&self) -> Option<ContentEncoding> {
|
|
|
|
self.extensions().get::<Enc>().map(|enc| enc.0)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
|
|
|
|
self.extensions_mut().insert(Enc(encoding));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<B> BodyEncoding for crate::HttpResponse<B> {
|
|
|
|
fn get_encoding(&self) -> Option<ContentEncoding> {
|
|
|
|
self.extensions().get::<Enc>().map(|enc| enc.0)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
|
|
|
|
self.extensions_mut().insert(Enc(encoding));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
2019-03-06 07:10:08 +01:00
|
|
|
}
|