Make web apis.
```rust no_run
use std::fmt; use std::sync::{Arc, Mutex}; use api::requesthandler; use api::request::{Method, Request}; use api::error::{ApiError, Error as ErrorTrait, StatusCode}; use api::http as fire; use fire::datastruct; use serde::{Serialize, Deserialize};
// -- Type definitions
pub enum Error { Internal(String), Request(String) }
impl ApiError for Error {
fn internal
fn request<E: ErrorTrait>(e: E) -> Self {
Self::Request(e.to_string())
}
fn status_code(&self) -> StatusCode {
match self {
Self::Internal(_) => StatusCode::InternalServerError,
Self::Request(_) => StatusCode::BadRequest
}
}
}
impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Debug::fmt(self, f) } }
struct NameReq;
struct Name { firstname: String, lastname: String }
impl Request for NameReq { type Response = Name; type Error = Error;
const PATH: &'static str = "/name";
const METHOD: Method = Method::Get;
}
struct SetNameReq { name: Name }
impl Request for SetNameReq { type Response = (); type Error = Error;
const PATH: &'static str = "/name";
const METHOD: Method = Method::Put;
}
// -- implementations
data_struct! {
struct Data {
name: Mutex
requesthandler! {
async fn getname(req: NameReq, name) -> Result
requesthandler! { async fn setname(req: SetNameReq, name) -> Result<(), Error> { let mut lock = name.lock().unwrap(); *lock = req.name;
Ok(())
}
}
async fn main() { let data = Data { name: Mutex::new(Name { firstname: "Albert".into(), lastname: "Einstein".into() }) };
let mut server = fire::build("0.0.0.0:3000", data)
.expect("Failed to parse address");
server.add_route(get_name);
server.add_route(set_name);
server.light().await
.expect("server paniced");
} ```