1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/src/lib.rs

225 lines
7 KiB
Rust
Raw Normal View History

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