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

266 lines
7.8 KiB
Rust
Raw Normal View History

#![allow(clippy::type_complexity, clippy::new_without_default)]
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 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-02 06:51:32 +00:00
2019-03-07 21:33:40 +00:00
#[allow(unused_imports)]
#[macro_use]
extern crate actix_web_codegen;
#[doc(hidden)]
pub use actix_web_codegen::*;
2019-03-02 06:51:32 +00:00
// re-export for convenience
pub use actix_http::Response as HttpResponse;
pub use actix_http::{http, Error, HttpMessage, ResponseError, Result};
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;
pub use crate::responder::{Either, Responder};
pub use crate::route::Route;
2019-03-05 00:29:03 +00:00
pub use crate::server::HttpServer;
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::*;
//! ```
pub use crate::app::AppRouter;
pub use crate::config::{AppConfig, ServiceConfig};
pub use crate::info::ConnectionInfo;
pub use crate::rmap::ResourceMap;
pub use crate::service::{
HttpServiceFactory, ServiceFromRequest, ServiceRequest, ServiceResponse,
};
2019-03-17 07:48:40 +00:00
pub use crate::types::form::UrlEncoded;
2019-03-17 05:04:09 +00:00
pub use crate::types::json::JsonBody;
2019-03-17 07:48:40 +00:00
pub use crate::types::payload::HttpMessageBody;
pub use crate::types::readlines::Readlines;
2019-03-07 03:19:27 +00:00
pub use actix_http::body::{Body, BodyLength, MessageBody, ResponseBody};
2019-03-17 08:08:56 +00:00
pub use actix_http::ResponseBuilder as HttpResponseBuilder;
pub use actix_http::{
2019-03-18 05:02:03 +00:00
Extensions, Head, Payload, PayloadStream, RequestHead, ResponseHead,
};
pub use actix_router::{Path, ResourceDef, ResourcePath, Url};
pub use actix_server::Server;
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
}
}
pub mod web {
2019-03-17 03:17:27 +00:00
//! Various types
2019-03-11 01:33:47 +00:00
use actix_http::{http::Method, Response};
2019-03-12 06:19:05 +00:00
use actix_rt::blocking;
use futures::{Future, IntoFuture};
2019-03-07 21:33:40 +00:00
pub use actix_http::Response as HttpResponse;
pub use bytes::{Bytes, BytesMut};
use crate::error::{BlockingError, Error};
use crate::extract::FromRequest;
use crate::handler::{AsyncFactory, Factory};
use crate::resource::Resource;
use crate::responder::Responder;
use crate::route::Route;
use crate::scope::Scope;
2019-03-17 04:09:11 +00:00
pub use crate::data::{Data, RouteData};
2019-03-07 21:33:40 +00:00
pub use crate::request::HttpRequest;
2019-03-17 05:04:09 +00:00
pub use crate::types::*;
2019-03-07 19:43:46 +00: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-07 23:51:24 +00:00
/// Create *route* without configuration.
pub fn route<P: 'static>() -> Route<P> {
Route::new()
}
2019-03-07 23:51:24 +00:00
/// Create *route* with `GET` method guard.
pub fn get<P: 'static>() -> Route<P> {
2019-03-07 23:51:24 +00:00
Route::new().method(Method::GET)
}
2019-03-07 23:51:24 +00:00
/// Create *route* with `POST` method guard.
pub fn post<P: 'static>() -> Route<P> {
2019-03-07 23:51:24 +00:00
Route::new().method(Method::POST)
}
2019-03-07 23:51:24 +00:00
/// Create *route* with `PUT` method guard.
pub fn put<P: 'static>() -> Route<P> {
2019-03-07 23:51:24 +00:00
Route::new().method(Method::PUT)
}
2019-03-07 23:51:24 +00: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.
pub fn delete<P: 'static>() -> Route<P> {
2019-03-07 23:51:24 +00:00
Route::new().method(Method::DELETE)
}
2019-03-07 23:51:24 +00:00
/// Create *route* with `HEAD` method guard.
pub fn head<P: 'static>() -> Route<P> {
Route::new().method(Method::HEAD)
}
2019-03-07 23:51:24 +00:00
/// Create *route* and add method guard.
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!()
/// }
///
/// App::new().service(
/// web::resource("/").route(
/// web::to(index))
/// );
/// ```
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())
/// }
///
/// App::new().service(web::resource("/").route(
/// web::to_async(index))
/// );
/// ```
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 22:40:20 +00:00
/// Execute blocking function on a thread pool, returns future that resolves
/// to result of the function execution.
2019-03-12 06:19:05 +00:00
pub fn block<F, I, E>(f: F) -> impl Future<Item = I, Error = BlockingError<E>>
2019-03-07 22:40:20 +00:00
where
F: FnOnce() -> Result<I, E> + Send + 'static,
I: Send + 'static,
E: Send + std::fmt::Debug + 'static,
{
2019-03-12 06:19:05 +00:00
blocking::run(f).from_err()
2019-03-07 22:40:20 +00:00
}
}