async-graphql/integrations/axum/src/response.rs

47 lines
1.4 KiB
Rust
Raw Normal View History

2022-04-19 04:25:11 +00:00
use axum::{
body::{boxed, Body, BoxBody},
http,
http::{HeaderValue, Response},
response::IntoResponse,
};
2021-08-01 09:44:28 +00:00
/// Responder for a GraphQL response.
///
2022-04-19 04:25:11 +00:00
/// This contains a batch response, but since regular responses are a type of
/// batch response it works for both.
2021-08-01 09:44:28 +00:00
pub struct GraphQLResponse(pub async_graphql::BatchResponse);
impl From<async_graphql::Response> for GraphQLResponse {
fn from(resp: async_graphql::Response) -> Self {
Self(resp.into())
}
}
impl From<async_graphql::BatchResponse> for GraphQLResponse {
fn from(resp: async_graphql::BatchResponse) -> Self {
Self(resp)
}
}
impl IntoResponse for GraphQLResponse {
2021-12-06 04:57:15 +00:00
fn into_response(self) -> Response<BoxBody> {
let body: Body = serde_json::to_string(&self.0).unwrap().into();
let mut resp = Response::new(boxed(body));
2021-08-01 09:44:28 +00:00
resp.headers_mut().insert(
http::header::CONTENT_TYPE,
HeaderValue::from_static("application/json"),
);
if self.0.is_ok() {
if let Some(cache_control) = self.0.cache_control().value() {
if let Ok(value) = HeaderValue::from_str(&cache_control) {
resp.headers_mut()
.insert(http::header::CACHE_CONTROL, value);
}
}
}
resp.headers_mut().extend(self.0.http_headers());
2021-08-01 09:44:28 +00:00
resp
}
}