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

141 lines
3.7 KiB
Rust
Raw Normal View History

2019-03-02 19:53:05 +00:00
#![allow(clippy::type_complexity)]
2019-03-02 06:51:32 +00:00
mod app;
pub mod extract;
2019-03-03 22:45:56 +00:00
mod handler;
2019-03-02 06:51:32 +00:00
// mod info;
pub mod blocking;
2019-03-03 20:09:38 +00:00
pub mod guard;
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 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;
mod state;
2019-03-03 00:24:14 +00:00
pub mod test;
2019-03-02 06:51:32 +00:00
// re-export for convenience
pub use actix_http::Response as HttpResponse;
pub use actix_http::{body, error, http, Error, HttpMessage, ResponseError, Result};
2019-03-02 06:51:32 +00:00
pub use crate::app::App;
pub use crate::extract::{FromRequest, Json};
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-04 05:02:01 +00:00
pub use crate::scope::Scope;
2019-03-05 00:29:03 +00:00
pub use crate::server::HttpServer;
pub use crate::service::{ServiceFromRequest, ServiceRequest, ServiceResponse};
2019-03-02 06:51:32 +00:00
pub use crate::state::State;
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, HttpServiceFactory};
pub use actix_http::body::{Body, MessageBody, ResponseBody};
pub use actix_http::dev::ResponseBuilder as HttpResponseBuilder;
pub use actix_http::{
Extensions, Payload, PayloadStream, RequestHead, ResponseHead,
};
pub use actix_router::{Path, ResourceDef, Url};
}
pub mod web {
use actix_http::{http::Method, Error, Response};
use futures::IntoFuture;
use crate::extract::FromRequest;
use crate::handler::{AsyncFactory, Factory};
use crate::responder::Responder;
use crate::Route;
2019-03-03 22:45:56 +00:00
/// Create **route** without configuration.
pub fn route<P: 'static>() -> Route<P> {
Route::new()
}
2019-03-03 22:45:56 +00:00
/// Create **route** with `GET` method guard.
pub fn get<P: 'static>() -> Route<P> {
Route::get()
}
2019-03-03 22:45:56 +00:00
/// Create **route** with `POST` method guard.
pub fn post<P: 'static>() -> Route<P> {
Route::post()
}
2019-03-03 22:45:56 +00:00
/// Create **route** with `PUT` method guard.
pub fn put<P: 'static>() -> Route<P> {
Route::put()
}
2019-03-03 22:45:56 +00:00
/// Create **route** with `DELETE` method guard.
pub fn delete<P: 'static>() -> Route<P> {
Route::delete()
}
2019-03-03 22:45:56 +00:00
/// Create **route** with `HEAD` method guard.
pub fn head<P: 'static>() -> Route<P> {
Route::new().method(Method::HEAD)
}
2019-03-03 22:45:56 +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().resource("/", |r| r.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().resource("/", |r| r.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)
}
}