async-graphql/src/http/mod.rs

119 lines
4.3 KiB
Rust
Raw Normal View History

2020-03-26 03:34:28 +00:00
//! A helper module that supports HTTP
2020-03-05 00:39:56 +00:00
mod graphiql_source;
2022-08-27 21:35:08 +00:00
mod graphiql_v2_source;
mod multipart;
2020-03-05 00:39:56 +00:00
mod playground_source;
mod websocket;
2020-10-15 06:38:10 +00:00
2022-04-19 04:25:11 +00:00
use futures_util::io::{AsyncRead, AsyncReadExt};
2020-03-05 00:39:56 +00:00
pub use graphiql_source::graphiql_source;
2022-08-27 21:35:08 +00:00
pub use graphiql_v2_source::GraphiQLSource;
2022-04-19 04:25:11 +00:00
use mime;
2020-09-17 08:39:55 +00:00
pub use multipart::MultipartOptions;
pub use playground_source::{playground_source, GraphQLPlaygroundConfig};
2021-08-01 09:44:28 +00:00
pub use websocket::{
ClientMessage, Protocols as WebSocketProtocols, WebSocket, WsMessage, ALL_WEBSOCKET_PROTOCOLS,
};
2020-03-05 00:39:56 +00:00
2021-09-02 12:19:08 +00:00
use crate::{BatchRequest, ParseRequestError, Request};
2020-09-17 08:39:55 +00:00
/// Receive a GraphQL request from a content type and body.
2020-09-10 07:04:24 +00:00
pub async fn receive_body(
content_type: Option<impl AsRef<str>>,
body: impl AsyncRead + Send,
2020-09-10 07:04:24 +00:00
opts: MultipartOptions,
2020-09-10 08:54:38 +00:00
) -> Result<Request, ParseRequestError> {
receive_batch_body(content_type, body, opts)
.await?
.into_single()
}
/// Receive a GraphQL request from a content type and body.
pub async fn receive_batch_body(
content_type: Option<impl AsRef<str>>,
body: impl AsyncRead + Send,
opts: MultipartOptions,
) -> Result<BatchRequest, ParseRequestError> {
// if no content-type header is set, we default to json
2021-09-02 11:39:45 +00:00
let content_type = content_type
.as_ref()
.map(AsRef::as_ref)
.unwrap_or("application/json");
let content_type: mime::Mime = content_type.parse()?;
2021-09-02 11:39:45 +00:00
match (content_type.type_(), content_type.subtype()) {
// try to use multipart
(mime::MULTIPART, _) => {
if let Some(boundary) = content_type.get_param("boundary") {
multipart::receive_batch_multipart(body, boundary.to_string(), opts).await
} else {
2021-09-02 11:39:45 +00:00
Err(ParseRequestError::InvalidMultipart(
multer::Error::NoBoundary,
))
}
}
2021-09-02 13:27:44 +00:00
// application/json or cbor (currently)
// cbor is in application/octet-stream.
// Note: cbor will only match if feature ``cbor`` is active
2021-09-02 13:27:44 +00:00
// TODO: wait for mime to add application/cbor and match against that too
_ => receive_batch_body_no_multipart(&content_type, body).await,
2020-03-05 00:39:56 +00:00
}
2020-09-14 19:16:41 +00:00
}
2020-09-14 18:38:41 +00:00
2022-06-15 14:18:39 +00:00
/// Receives a GraphQL query which is either cbor or json but NOT multipart
2022-04-19 04:25:11 +00:00
/// This method is only to avoid recursive calls with [``receive_batch_body``]
/// and [``multipart::receive_batch_multipart``]
2021-09-02 13:27:44 +00:00
pub(super) async fn receive_batch_body_no_multipart(
content_type: &mime::Mime,
body: impl AsyncRead + Send,
) -> Result<BatchRequest, ParseRequestError> {
assert_ne!(content_type.type_(), mime::MULTIPART, "received multipart");
match (content_type.type_(), content_type.subtype()) {
#[cfg(feature = "cbor")]
2021-09-02 13:27:44 +00:00
// cbor is in application/octet-stream.
// TODO: wait for mime to add application/cbor and match against that too
(mime::OCTET_STREAM, _) | (mime::APPLICATION, mime::OCTET_STREAM) => {
receive_batch_cbor(body).await
}
// default to json
_ => receive_batch_json(body).await,
2021-09-02 13:27:44 +00:00
}
}
2020-09-14 19:16:41 +00:00
/// Receive a GraphQL request from a body as JSON.
pub async fn receive_json(body: impl AsyncRead) -> Result<Request, ParseRequestError> {
receive_batch_json(body).await?.into_single()
}
/// Receive a GraphQL batch request from a body as JSON.
pub async fn receive_batch_json(body: impl AsyncRead) -> Result<BatchRequest, ParseRequestError> {
2020-09-14 18:38:41 +00:00
let mut data = Vec::new();
2020-10-16 06:49:22 +00:00
futures_util::pin_mut!(body);
2020-09-14 18:38:41 +00:00
body.read_to_end(&mut data)
.await
.map_err(ParseRequestError::Io)?;
2022-04-08 00:55:32 +00:00
serde_json::from_slice::<BatchRequest>(&data)
.map_err(|e| ParseRequestError::InvalidRequest(Box::new(e)))
2020-03-05 00:39:56 +00:00
}
2021-07-26 15:29:52 +00:00
2021-09-02 11:39:45 +00:00
/// Receive a GraphQL request from a body as CBOR.
#[cfg(feature = "cbor")]
#[cfg_attr(docsrs, doc(cfg(feature = "cbor")))]
pub async fn receive_cbor(body: impl AsyncRead) -> Result<Request, ParseRequestError> {
receive_batch_cbor(body).await?.into_single()
}
/// Receive a GraphQL batch request from a body as CBOR
#[cfg(feature = "cbor")]
#[cfg_attr(docsrs, doc(cfg(feature = "cbor")))]
2021-07-26 15:29:52 +00:00
pub async fn receive_batch_cbor(body: impl AsyncRead) -> Result<BatchRequest, ParseRequestError> {
let mut data = Vec::new();
futures_util::pin_mut!(body);
body.read_to_end(&mut data)
.await
.map_err(ParseRequestError::Io)?;
2022-04-08 01:41:23 +00:00
serde_cbor::from_slice::<BatchRequest>(&data)
.map_err(|e| ParseRequestError::InvalidRequest(Box::new(e)))
2021-07-26 15:29:52 +00:00
}