mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-11-26 23:30:47 +00:00
50 lines
1.1 KiB
Rust
50 lines
1.1 KiB
Rust
use crate::{
|
|
error::SystemError,
|
|
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,
|
|
pub error: Option<SystemError>,
|
|
}
|
|
|
|
impl ResponseBuilder {
|
|
pub fn new(status: StatusCode) -> Self {
|
|
ResponseBuilder {
|
|
payload: Payload::None,
|
|
status,
|
|
error: None,
|
|
}
|
|
}
|
|
|
|
pub fn data<D: std::convert::Into<Payload>>(mut self, data: D) -> Self {
|
|
self.payload = data.into();
|
|
self
|
|
}
|
|
|
|
pub fn error(mut self, error: SystemError) -> Self {
|
|
self.error = Some(error);
|
|
self
|
|
}
|
|
|
|
pub fn build(self) -> EventResponse {
|
|
EventResponse {
|
|
payload: self.payload,
|
|
status_code: self.status,
|
|
error: self.error,
|
|
}
|
|
}
|
|
|
|
static_response!(Ok, StatusCode::Ok);
|
|
static_response!(Err, StatusCode::Err);
|
|
}
|