mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
44 lines
994 B
Rust
44 lines
994 B
Rust
use crate::{
|
|
request::Payload,
|
|
response::{EventResponse, StatusCode},
|
|
};
|
|
|
|
macro_rules! static_response {
|
|
($name:ident, $status:expr) => {
|
|
#[allow(non_snake_case, missing_docs)]
|
|
pub fn $name() -> ResponseBuilder {
|
|
ResponseBuilder::new($status)
|
|
}
|
|
};
|
|
}
|
|
|
|
pub struct ResponseBuilder<T = Payload> {
|
|
pub payload: T,
|
|
pub status: StatusCode,
|
|
}
|
|
|
|
impl ResponseBuilder {
|
|
pub fn new(status: StatusCode) -> Self {
|
|
ResponseBuilder {
|
|
payload: Payload::None,
|
|
status,
|
|
}
|
|
}
|
|
|
|
pub fn data<D: std::convert::Into<Payload>>(mut self, data: D) -> Self {
|
|
self.payload = data.into();
|
|
self
|
|
}
|
|
|
|
pub fn build(self) -> EventResponse {
|
|
EventResponse {
|
|
payload: self.payload,
|
|
status_code: self.status,
|
|
}
|
|
}
|
|
|
|
static_response!(Ok, StatusCode::Ok);
|
|
static_response!(Err, StatusCode::Err);
|
|
static_response!(Internal, StatusCode::Internal);
|
|
}
|