async-graphql/async-graphql-tide/src/lib.rs

143 lines
4.6 KiB
Rust
Raw Normal View History

2020-04-26 11:53:44 +00:00
//! Async-graphql integration with Tide
#![warn(missing_docs)]
#![allow(clippy::type_complexity)]
#![allow(clippy::needless_doctest_main)]
use async_graphql::http::{GQLRequest, GQLResponse};
2020-04-26 11:53:44 +00:00
use async_graphql::{
2020-05-14 07:24:24 +00:00
IntoQueryBuilder, IntoQueryBuilderOpts, ObjectType, ParseRequestError, QueryBuilder,
QueryResponse, Schema, SubscriptionType,
2020-04-26 11:53:44 +00:00
};
use async_trait::async_trait;
use tide::{
http::{headers, Method},
Request, Response, Status, StatusCode,
};
2020-04-26 11:53:44 +00:00
/// GraphQL request handler
///
///
/// # Examples
2020-04-28 07:41:31 +00:00
/// *[Full Example](<https://github.com/async-graphql/examples/blob/master/tide/starwars/src/main.rs>)*
2020-04-26 11:53:44 +00:00
///
/// ```no_run
/// use async_graphql::*;
/// use async_std::task;
/// use tide::Request;
///
/// struct QueryRoot;
/// #[Object]
/// impl QueryRoot {
/// #[field(desc = "Returns the sum of a and b")]
/// async fn add(&self, a: i32, b: i32) -> i32 {
/// a + b
/// }
/// }
///
/// fn main() -> std::result::Result<(), Box<dyn std::error::Error + Send + Sync>> {
/// task::block_on(async {
/// let mut app = tide::new();
/// app.at("/").post(|req: Request<()>| async move {
/// let schema = Schema::build(QueryRoot, EmptyMutation, EmptySubscription).finish();
/// async_graphql_tide::graphql(req, schema, |query_builder| query_builder).await
/// });
/// app.listen("0.0.0.0:8000").await?;
///
/// Ok(())
/// })
/// }
/// ```
pub async fn graphql<Query, Mutation, Subscription, TideState, F>(
req: Request<TideState>,
schema: Schema<Query, Mutation, Subscription>,
query_builder_configuration: F,
) -> tide::Result<Response>
where
Query: ObjectType + Send + Sync + 'static,
Mutation: ObjectType + Send + Sync + 'static,
Subscription: SubscriptionType + Send + Sync + 'static,
TideState: Send + Sync + 'static,
F: Fn(QueryBuilder) -> QueryBuilder + Send,
2020-04-26 11:53:44 +00:00
{
2020-05-14 07:40:23 +00:00
graphql_opts(req, schema, query_builder_configuration, Default::default()).await
2020-04-26 11:53:44 +00:00
}
/// Similar to graphql, but you can set the options `IntoQueryBuilderOpts`.
pub async fn graphql_opts<Query, Mutation, Subscription, TideState, F>(
req: Request<TideState>,
2020-04-26 11:53:44 +00:00
schema: Schema<Query, Mutation, Subscription>,
query_builder_configuration: F,
opts: IntoQueryBuilderOpts,
) -> tide::Result<Response>
where
Query: ObjectType + Send + Sync + 'static,
Mutation: ObjectType + Send + Sync + 'static,
Subscription: SubscriptionType + Send + Sync + 'static,
TideState: Send + Sync + 'static,
F: Fn(QueryBuilder) -> QueryBuilder + Send,
2020-04-26 11:53:44 +00:00
{
let query_builder = req
2020-05-14 07:24:24 +00:00
.body_graphql_opts(opts)
2020-04-26 11:53:44 +00:00
.await
.status(StatusCode::BadRequest)?;
2020-05-14 07:40:23 +00:00
Ok(Response::new(StatusCode::Ok)
.body_graphql(
query_builder_configuration(query_builder)
.execute(&schema)
.await,
)
.status(StatusCode::InternalServerError)?)
}
/// Tide request extension
///
#[async_trait]
pub trait RequestExt<State: Send + Sync + 'static>: Sized {
/// Convert a query to `async_graphql::QueryBuilder`.
2020-05-14 07:24:24 +00:00
async fn body_graphql(self) -> Result<QueryBuilder, ParseRequestError> {
self.body_graphql_opts(Default::default()).await
}
/// Similar to graphql, but you can set the options `IntoQueryBuilderOpts`.
2020-05-14 07:24:24 +00:00
async fn body_graphql_opts(
self,
opts: IntoQueryBuilderOpts,
) -> Result<QueryBuilder, ParseRequestError>;
}
#[async_trait]
impl<State: Send + Sync + 'static> RequestExt<State> for Request<State> {
2020-05-14 07:24:24 +00:00
async fn body_graphql_opts(
self,
opts: IntoQueryBuilderOpts,
) -> Result<QueryBuilder, ParseRequestError> {
if self.method() == Method::Get {
match self.query::<GQLRequest>() {
Ok(gql_request) => gql_request.into_query_builder_opts(&opts).await,
Err(_) => Err(ParseRequestError::Io(std::io::Error::from(
std::io::ErrorKind::InvalidInput,
))),
}
} else {
let content_type = self
.header(&headers::CONTENT_TYPE)
.and_then(|values| values.first().map(|value| value.to_string()));
(content_type, self).into_query_builder_opts(&opts).await
}
}
2020-04-26 11:53:44 +00:00
}
2020-05-14 07:24:24 +00:00
/// Tide response extension
///
2020-05-14 07:40:23 +00:00
pub trait ResponseExt: Sized {
2020-05-14 07:24:24 +00:00
/// Set Body as the result of a GraphQL query.
fn body_graphql(self, res: async_graphql::Result<QueryResponse>) -> serde_json::Result<Self>;
}
2020-05-14 07:40:23 +00:00
impl ResponseExt for Response {
2020-05-14 07:24:24 +00:00
fn body_graphql(self, res: async_graphql::Result<QueryResponse>) -> serde_json::Result<Self> {
self.body_json(&GQLResponse(res))
}
}