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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
use std::ops::{Deref, DerefMut};
use poem::{FromRequest, IntoResponse, Request, RequestBody, Response, Result};
use crate::{
payload::{ParsePayload, Payload},
registry::{MetaMediaType, MetaResponse, MetaResponses, MetaSchemaRef, Registry},
types::Type,
ApiResponse,
};
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Html<T>(pub T);
impl<T> Deref for Html<T> {
type Target = T;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl<T> DerefMut for Html<T> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl<T: Send> Payload for Html<T> {
const CONTENT_TYPE: &'static str = "text/html";
fn schema_ref() -> MetaSchemaRef {
String::schema_ref()
}
}
#[poem::async_trait]
impl ParsePayload for Html<String> {
const IS_REQUIRED: bool = false;
async fn from_request(request: &Request, body: &mut RequestBody) -> Result<Self> {
Ok(Self(String::from_request(request, body).await?))
}
}
impl<T: Into<String> + Send> IntoResponse for Html<T> {
fn into_response(self) -> Response {
poem::web::Html(self.0.into()).into_response()
}
}
impl<T: Into<String> + Send> ApiResponse for Html<T> {
fn meta() -> MetaResponses {
MetaResponses {
responses: vec![MetaResponse {
description: "",
status: Some(200),
content: vec![MetaMediaType {
content_type: Self::CONTENT_TYPE,
schema: Self::schema_ref(),
}],
headers: vec![],
}],
}
}
fn register(_registry: &mut Registry) {}
}
impl_apirequest_for_payload!(Html<String>);