summaryrefslogtreecommitdiffstats
path: root/src/ructe_poem.rs
blob: fc140489d7fd2db5f850fb8e85be75e2887ab66d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use poem::{http::StatusCode, Body, IntoResponse};

macro_rules! render {
    ($template:path) => {{
        use $crate::axum_ructe::Render;
        Render(|o| $template(o))
    }};
    ($template:path, $($arg:expr),* $(,)*) => {{
        use $crate::axum_ructe::Render;
        Render(move |o| $template(o, $($arg),*))
    }}
}

pub struct Render<T: FnOnce(&mut Vec<u8>) -> std::io::Result<()> + Send>(pub T);

impl<T: FnOnce(&mut Vec<u8>) -> std::io::Result<()> + Send> IntoResponse for Render<T> {
    fn into_response(self) -> poem::Response {
        let mut buf = Vec::new();
        match self.0(&mut buf) {
            Ok(()) => Body::from_vec(buf).into_response(),
            Err(_e) => {
                // TODO: logging
                (StatusCode::INTERNAL_SERVER_ERROR, "Render failed").into_response()
            }
        }
    }
}