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-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-07 00:47:15 +01:00
|
|
|
|
2019-03-07 04:19:27 +01:00
|
|
|
pub use actix_http::body::{Body, BodyLength, MessageBody, ResponseBody};
|
2019-03-06 07:10:08 +01:00
|
|
|
pub use actix_http::dev::ResponseBuilder as HttpResponseBuilder;
|
|
|
|
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;
|
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 actix_rt::blocking;
|
|
|
|
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 05:43:48 +01:00
|
|
|
pub use crate::types::{Form, Json, Path, Payload, Query};
|
|
|
|
pub use crate::types::{FormConfig, JsonConfig, PayloadConfig};
|
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-12 07:19:05 +01:00
|
|
|
blocking::run(f).from_err()
|
2019-03-07 23:40:20 +01:00
|
|
|
}
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|