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
use poem::{FromRequest, IntoResponse, Request, RequestBody, Response};
use crate::{payload::Payload, registry::MetaSchemaRef, types::Type, ParseRequestError};
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct PlainText(pub String);
impl<T: Into<String>> From<T> for PlainText {
fn from(value: T) -> Self {
Self(value.into())
}
}
#[poem::async_trait]
impl Payload for PlainText {
const CONTENT_TYPE: &'static str = "text/plain";
fn schema_ref() -> MetaSchemaRef {
String::schema_ref()
}
async fn from_request(
request: &Request,
body: &mut RequestBody,
) -> Result<Self, ParseRequestError> {
Ok(Self(String::from_request(request, body).await.map_err(
|err| ParseRequestError::ParseRequestBody {
reason: err.to_string(),
},
)?))
}
}
impl IntoResponse for PlainText {
fn into_response(self) -> Response {
Response::builder()
.content_type(Self::CONTENT_TYPE)
.body(self.0)
}
}