2019-03-07 19:09:42 +00:00
|
|
|
#![recursion_limit = "512"]
|
2019-03-31 07:23:15 +00:00
|
|
|
//! Actix-web codegen module
|
|
|
|
//!
|
|
|
|
//! Generators for routes and scopes
|
|
|
|
//!
|
|
|
|
//! ## Route
|
|
|
|
//!
|
|
|
|
//! Macros:
|
|
|
|
//!
|
|
|
|
//! - [get](attr.get.html)
|
|
|
|
//! - [post](attr.post.html)
|
|
|
|
//! - [put](attr.put.html)
|
|
|
|
//! - [delete](attr.delete.html)
|
2019-06-04 16:30:43 +00:00
|
|
|
//! - [head](attr.head.html)
|
|
|
|
//! - [connect](attr.connect.html)
|
|
|
|
//! - [options](attr.options.html)
|
|
|
|
//! - [trace](attr.trace.html)
|
|
|
|
//! - [patch](attr.patch.html)
|
2019-03-31 07:23:15 +00:00
|
|
|
//!
|
|
|
|
//! ### Attributes:
|
|
|
|
//!
|
|
|
|
//! - `"path"` - Raw literal string with path for which to register handle. Mandatory.
|
|
|
|
//! - `guard="function_name"` - Registers function as guard using `actix_web::guard::fn_guard`
|
2020-05-07 09:31:12 +00:00
|
|
|
//! - `wrap="Middleware"` - Registers a resource middleware.
|
2019-03-31 07:23:15 +00:00
|
|
|
//!
|
|
|
|
//! ## Notes
|
|
|
|
//!
|
|
|
|
//! Function name can be specified as any expression that is going to be accessible to the generate
|
|
|
|
//! code (e.g `my_guard` or `my_module::my_guard`)
|
|
|
|
//!
|
|
|
|
//! ## Example:
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! use actix_web::HttpResponse;
|
|
|
|
//! use actix_web_codegen::get;
|
|
|
|
//!
|
|
|
|
//! #[get("/test")]
|
2019-11-21 07:01:07 +00:00
|
|
|
//! async fn async_test() -> Result<HttpResponse, actix_web::Error> {
|
|
|
|
//! Ok(HttpResponse::Ok().finish())
|
2019-03-31 07:23:15 +00:00
|
|
|
//! }
|
|
|
|
//! ```
|
2019-03-07 19:09:42 +00:00
|
|
|
|
|
|
|
extern crate proc_macro;
|
|
|
|
|
2019-03-31 07:23:15 +00:00
|
|
|
mod route;
|
|
|
|
|
2019-03-07 19:09:42 +00:00
|
|
|
use proc_macro::TokenStream;
|
|
|
|
|
2019-03-31 07:23:15 +00:00
|
|
|
/// Creates route handler with `GET` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[get("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// ## Attributes:
|
|
|
|
///
|
|
|
|
/// - `"path"` - Raw literal string with path for which to register handler. Mandatory.
|
|
|
|
/// - `guard="function_name"` - Registers function as guard using `actix_web::guard::fn_guard`
|
2020-05-07 09:31:12 +00:00
|
|
|
/// - `wrap="Middleware"` - Registers a resource middleware.
|
2019-03-07 19:09:42 +00:00
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn get(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Get)
|
2019-03-07 19:09:42 +00:00
|
|
|
}
|
|
|
|
|
2019-03-31 07:23:15 +00:00
|
|
|
/// Creates route handler with `POST` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[post("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// Attributes are the same as in [get](attr.get.html)
|
2019-03-07 19:09:42 +00:00
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn post(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Post)
|
2019-03-07 19:09:42 +00:00
|
|
|
}
|
|
|
|
|
2019-03-31 07:23:15 +00:00
|
|
|
/// Creates route handler with `PUT` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[put("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// Attributes are the same as in [get](attr.get.html)
|
2019-03-07 19:09:42 +00:00
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn put(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Put)
|
2019-03-31 07:23:15 +00:00
|
|
|
}
|
2019-03-07 19:09:42 +00:00
|
|
|
|
2019-03-31 07:23:15 +00:00
|
|
|
/// Creates route handler with `DELETE` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[delete("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// Attributes are the same as in [get](attr.get.html)
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn delete(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Delete)
|
2019-03-07 19:09:42 +00:00
|
|
|
}
|
2019-06-04 16:30:43 +00:00
|
|
|
|
|
|
|
/// Creates route handler with `HEAD` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[head("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// Attributes are the same as in [head](attr.head.html)
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn head(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Head)
|
2019-06-04 16:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates route handler with `CONNECT` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[connect("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// Attributes are the same as in [connect](attr.connect.html)
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn connect(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Connect)
|
2019-06-04 16:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates route handler with `OPTIONS` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[options("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// Attributes are the same as in [options](attr.options.html)
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn options(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Options)
|
2019-06-04 16:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates route handler with `TRACE` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[trace("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// Attributes are the same as in [trace](attr.trace.html)
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn trace(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Trace)
|
2019-06-04 16:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates route handler with `PATCH` method guard.
|
|
|
|
///
|
|
|
|
/// Syntax: `#[patch("path"[, attributes])]`
|
|
|
|
///
|
|
|
|
/// Attributes are the same as in [patch](attr.patch.html)
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn patch(args: TokenStream, input: TokenStream) -> TokenStream {
|
2020-03-19 19:40:42 +00:00
|
|
|
route::generate(args, input, route::GuardType::Patch)
|
2019-06-05 02:43:13 +00:00
|
|
|
}
|