# rustified Fork of [rustify](https://crates.io/crates/rustify) due to lack of maintainance.
> A Rust library for interacting with HTTP API endpoints rustified is a small library written in Rust which eases the burden of scaffolding HTTP APIs. It provides an `Endpoint` trait along with a macro helper which allows templating various remote endpoints. Both asynchronous and synchrounous clients are offered for executing requests against endpoints with the option of implementing custom clients using the `Client` trait. rustified provides support for serializing requests and deserializing responses. Raw requests and responses in the form of bytes are also supported. The library also contains many helpers for dealing with requests like support for middleware and wrapping API responses. ## Installation Add rustified as a dependency to your cargo.toml: ```toml [dependencies] rustified = "0.5.3" rustified_derive = "0.5.3" ``` ## Usage ### Basic ```rust use rustified::{Client, Endpoint}; use rustified_derive::Endpoint; // Defines an API endpoint at /test/path that takes no inputs and returns an // empty response. #[derive(Endpoint)] #[endpoint(path = "test/path")] struct Test {} let endpoint = Test {}; let client = Client::default("http://api.com"); // Configures base address of http://api.com let result = endpoint.exec(&client).await; // Sends GET request to http://api.com/test/path assert!(result.is_ok()); ``` ### Request Body ```rust use derive_builder::Builder; use rustified::{Client, Endpoint}; use rustified_derive::Endpoint; // Defines an API endpoint at /test/path/{name} that takes one input for // creating the url and two inputs for building the request body. The content // type of the request body defaults to JSON, however, it can be modified by // passing the `request_type` parameter to the endpoint configuration. // // Note: The `#[endpoint(body)]` attribute tags are technically optional in the // below example. If no `body` attribute is found anywhere then rustified defaults // to serializing all "untagged" fields as part of the body. Fields can be opted // out of this behavior by tagging them with #[endpoint(skip)]. #[derive(Builder, Endpoint)] #[endpoint(path = "test/path/{self.name}", method = "POST", builder = "true")] #[builder(setter(into))] // Improves the building process struct Test { #[endpoint(skip)] // This field shouldn't be serialized anywhere pub name: String, // Used to create a dynamic URL #[endpoint(body)] // Instructs rustified to serialize this field as part of the body pub age: i32, #[endpoint(body)] pub role: String, } // Setting `builder` to true creates a `builder()` method on our struct that // returns the TestBuilder type created by `derive_builder`. let endpoint = Test::builder() .name("George-Miao") .age(42) .role("CEO") .build() .unwrap(); let client = Client::default("http://api.com"); let result = endpoint.exec(&client).await; // Sends POST request to http://api.com/test/path/George-Miao assert!(result.is_ok()); ``` ### Query Parameters ```rust use derive_builder::Builder; use rustified::{Client, Endpoint}; use rustified_derive::Endpoint; // Defines a similar API endpoint as in the previous example but adds an // optional query parameter to the request. Additionally, this example opts to // not specify the `#[endpoint(body)]` attributes to make use of the default // behavior covered in the previous example. #[derive(Builder, Endpoint)] #[endpoint(path = "test/path/{self.name}", method = "POST", builder = "true")] #[builder(setter(into, strip_option), default)] // Improves building process struct Test { #[endpoint(skip)] pub name: String, #[endpoint(query)] pub scope: Option