CI crates.io docs.rs

Make web apis.

Features

Example

```rust no_run

use firehttpapi as api;

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

[derive(Debug, Clone, Serialize)]

pub enum Error { Internal(String), Request(String) }

impl ApiError for Error { fn internal(e: E) -> Self { Self::Internal(e.to_string()) }

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) } }

[derive(Debug, Clone, Serialize, Deserialize)]

struct NameReq;

[derive(Debug, Clone, Serialize, Deserialize)]

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;

}

[derive(Debug, Clone, Serialize, Deserialize)]

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 { let lock = name.lock().unwrap(); Ok(lock.clone()) } }

requesthandler! { async fn setname(req: SetNameReq, name) -> Result<(), Error> { let mut lock = name.lock().unwrap(); *lock = req.name;

    Ok(())
}

}

[tokio::main]

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");

} ```