async-graphql/src/schema.rs

423 lines
14 KiB
Rust
Raw Normal View History

2020-03-05 00:39:56 +00:00
use crate::context::Data;
use crate::extensions::{BoxExtension, ErrorLogger, Extension, Extensions};
use crate::model::__DirectiveLocation;
use crate::parser::parse_query;
2020-07-31 02:10:03 +00:00
use crate::query::QueryBuilder;
use crate::registry::{MetaDirective, MetaInputValue, Registry};
use crate::subscription::{create_connection, create_subscription_stream, ConnectionTransport};
2020-03-03 11:15:18 +00:00
use crate::types::QueryRoot;
2020-05-22 03:58:49 +00:00
use crate::validation::{check_rules, CheckResult, ValidationMode};
2020-03-29 12:02:52 +00:00
use crate::{
2020-05-22 03:58:49 +00:00
CacheControl, Error, ObjectType, Pos, QueryEnv, QueryError, QueryResponse, Result,
SubscriptionType, Type, Variables, ID,
2020-03-29 12:02:52 +00:00
};
2020-05-22 03:58:49 +00:00
use async_graphql_parser::query::{Document, OperationType};
use bytes::Bytes;
2020-03-29 12:02:52 +00:00
use futures::channel::mpsc;
2020-04-14 01:53:17 +00:00
use futures::Stream;
use indexmap::map::IndexMap;
2020-05-22 03:58:49 +00:00
use itertools::Itertools;
use std::any::Any;
use std::ops::Deref;
2020-03-29 12:02:52 +00:00
use std::sync::atomic::AtomicUsize;
use std::sync::Arc;
2020-03-01 10:54:34 +00:00
2020-03-29 12:02:52 +00:00
/// Schema builder
pub struct SchemaBuilder<Query, Mutation, Subscription> {
validation_mode: ValidationMode,
query: QueryRoot<Query>,
mutation: Mutation,
subscription: Subscription,
registry: Registry,
data: Data,
complexity: Option<usize>,
depth: Option<usize>,
extensions: Vec<Box<dyn Fn() -> BoxExtension + Send + Sync>>,
enable_federation: bool,
}
2020-03-29 12:02:52 +00:00
2020-03-19 09:20:12 +00:00
impl<Query: ObjectType, Mutation: ObjectType, Subscription: SubscriptionType>
2020-03-29 12:02:52 +00:00
SchemaBuilder<Query, Mutation, Subscription>
2020-03-17 09:26:59 +00:00
{
/// You can use this function to register types that are not directly referenced.
pub fn register_type<T: Type>(mut self) -> Self {
T::create_type_info(&mut self.registry);
self
}
2020-03-29 12:02:52 +00:00
/// Disable introspection query
pub fn disable_introspection(mut self) -> Self {
self.query.disable_introspection = true;
2020-03-29 12:02:52 +00:00
self
}
/// Set limit complexity, Default no limit.
pub fn limit_complexity(mut self, complexity: usize) -> Self {
self.complexity = Some(complexity);
2020-03-29 12:02:52 +00:00
self
}
/// Set limit complexity, Default no limit.
pub fn limit_depth(mut self, depth: usize) -> Self {
self.depth = Some(depth);
2020-03-29 12:02:52 +00:00
self
}
/// Add an extension
pub fn extension<F: Fn() -> E + Send + Sync + 'static, E: Extension>(
mut self,
extension_factory: F,
) -> Self {
self.extensions
2020-03-29 12:02:52 +00:00
.push(Box::new(move || Box::new(extension_factory())));
self
}
2020-03-31 03:19:18 +00:00
/// Add a global data that can be accessed in the `Schema`, you access it with `Context::data`.
2020-03-29 12:02:52 +00:00
pub fn data<D: Any + Send + Sync>(mut self, data: D) -> Self {
self.data.insert(data);
2020-03-29 12:02:52 +00:00
self
}
2020-04-06 11:57:21 +00:00
/// Set the validation mode, default is `ValidationMode::Strict`.
pub fn validation_mode(mut self, validation_mode: ValidationMode) -> Self {
self.validation_mode = validation_mode;
2020-04-06 11:57:21 +00:00
self
}
/// Enable federation, which is automatically enabled if the Query has least one entity definition.
pub fn enable_federation(mut self) -> Self {
self.enable_federation = true;
self
}
2020-03-29 12:02:52 +00:00
/// Build schema.
pub fn finish(mut self) -> Schema<Query, Mutation, Subscription> {
// federation
if self.enable_federation || self.registry.has_entities() {
self.registry.create_federation_types();
}
Schema(Arc::new(SchemaInner {
validation_mode: self.validation_mode,
query: self.query,
mutation: self.mutation,
subscription: self.subscription,
complexity: self.complexity,
depth: self.depth,
extensions: self.extensions,
env: SchemaEnv(Arc::new(SchemaEnvInner {
registry: self.registry,
data: self.data,
})),
}))
2020-03-29 12:02:52 +00:00
}
}
#[doc(hidden)]
pub struct SchemaEnvInner {
pub registry: Registry,
pub data: Data,
}
#[doc(hidden)]
#[derive(Clone)]
pub struct SchemaEnv(Arc<SchemaEnvInner>);
impl Deref for SchemaEnv {
type Target = SchemaEnvInner;
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc(hidden)]
pub struct SchemaInner<Query, Mutation, Subscription> {
pub(crate) validation_mode: ValidationMode,
pub(crate) query: QueryRoot<Query>,
pub(crate) mutation: Mutation,
pub(crate) subscription: Subscription,
pub(crate) complexity: Option<usize>,
pub(crate) depth: Option<usize>,
pub(crate) extensions: Vec<Box<dyn Fn() -> BoxExtension + Send + Sync>>,
pub(crate) env: SchemaEnv,
}
2020-03-29 12:02:52 +00:00
/// GraphQL schema
pub struct Schema<Query, Mutation, Subscription>(Arc<SchemaInner<Query, Mutation, Subscription>>);
2020-03-29 12:02:52 +00:00
impl<Query, Mutation, Subscription> Clone for Schema<Query, Mutation, Subscription> {
fn clone(&self) -> Self {
Schema(self.0.clone())
}
}
2020-08-28 06:19:35 +00:00
impl<Query, Mutation, Subscription> Default for Schema<Query, Mutation, Subscription>
where
Query: Default + ObjectType + Send + Sync + 'static,
Mutation: Default + ObjectType + Send + Sync + 'static,
Subscription: Default + SubscriptionType + Send + Sync + 'static,
{
fn default() -> Self {
Schema::new(
Query::default(),
Mutation::default(),
Subscription::default(),
)
}
}
impl<Query, Mutation, Subscription> Deref for Schema<Query, Mutation, Subscription>
where
Query: ObjectType + Send + Sync + 'static,
Mutation: ObjectType + Send + Sync + 'static,
Subscription: SubscriptionType + Send + Sync + 'static,
{
type Target = SchemaInner<Query, Mutation, Subscription>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
2020-03-29 12:02:52 +00:00
impl<Query, Mutation, Subscription> Schema<Query, Mutation, Subscription>
where
Query: ObjectType + Send + Sync + 'static,
Mutation: ObjectType + Send + Sync + 'static,
Subscription: SubscriptionType + Send + Sync + 'static,
{
/// Create a schema builder
2020-03-09 10:05:52 +00:00
///
/// The root object for the query and Mutation needs to be specified.
2020-03-19 09:20:12 +00:00
/// If there is no mutation, you can use `EmptyMutation`.
/// If there is no subscription, you can use `EmptySubscription`.
2020-03-29 12:02:52 +00:00
pub fn build(
query: Query,
mutation: Mutation,
subscription: Subscription,
) -> SchemaBuilder<Query, Mutation, Subscription> {
2020-03-08 12:35:36 +00:00
let mut registry = Registry {
types: Default::default(),
directives: Default::default(),
implements: Default::default(),
query_type: Query::type_name().to_string(),
mutation_type: if Mutation::is_empty() {
None
} else {
Some(Mutation::type_name().to_string())
},
2020-03-17 09:26:59 +00:00
subscription_type: if Subscription::is_empty() {
None
} else {
Some(Subscription::type_name().to_string())
},
2020-03-08 12:35:36 +00:00
};
registry.add_directive(MetaDirective {
name: "include",
description: Some("Directs the executor to include this field or fragment only when the `if` argument is true."),
2020-03-05 13:34:31 +00:00
locations: vec![
__DirectiveLocation::FIELD,
__DirectiveLocation::FRAGMENT_SPREAD,
__DirectiveLocation::INLINE_FRAGMENT
],
2020-03-08 12:35:36 +00:00
args: {
let mut args = IndexMap::new();
args.insert("if", MetaInputValue {
2020-03-08 12:35:36 +00:00
name: "if",
description: Some("Included when true."),
ty: "Boolean!".to_string(),
2020-03-21 01:32:13 +00:00
default_value: None,
2020-03-22 01:34:32 +00:00
validator: None,
2020-03-08 12:35:36 +00:00
});
args
}
});
registry.add_directive(MetaDirective {
name: "skip",
description: Some("Directs the executor to skip this field or fragment when the `if` argument is true."),
2020-03-05 13:34:31 +00:00
locations: vec![
__DirectiveLocation::FIELD,
__DirectiveLocation::FRAGMENT_SPREAD,
__DirectiveLocation::INLINE_FRAGMENT
],
2020-03-08 12:35:36 +00:00
args: {
let mut args = IndexMap::new();
args.insert("if", MetaInputValue {
2020-03-08 12:35:36 +00:00
name: "if",
description: Some("Skipped when true."),
ty: "Boolean!".to_string(),
2020-03-21 01:32:13 +00:00
default_value: None,
2020-03-22 01:34:32 +00:00
validator: None,
2020-03-08 12:35:36 +00:00
});
args
}
});
2020-08-06 06:52:54 +00:00
registry.add_directive(MetaDirective {
name: "ifdef",
description: Some("Directs the executor to query only when the field exists."),
locations: vec![__DirectiveLocation::FIELD],
args: Default::default(),
});
// register scalars
bool::create_type_info(&mut registry);
i32::create_type_info(&mut registry);
f32::create_type_info(&mut registry);
String::create_type_info(&mut registry);
ID::create_type_info(&mut registry);
2020-03-08 12:35:36 +00:00
QueryRoot::<Query>::create_type_info(&mut registry);
2020-03-05 09:06:14 +00:00
if !Mutation::is_empty() {
Mutation::create_type_info(&mut registry);
}
2020-03-17 09:26:59 +00:00
if !Subscription::is_empty() {
Subscription::create_type_info(&mut registry);
}
SchemaBuilder {
2020-04-06 11:57:21 +00:00
validation_mode: ValidationMode::Strict,
2020-03-25 07:07:16 +00:00
query: QueryRoot {
inner: query,
disable_introspection: false,
},
2020-03-01 10:54:34 +00:00
mutation,
2020-03-17 09:26:59 +00:00
subscription,
2020-03-05 00:39:56 +00:00
registry,
data: Default::default(),
2020-03-25 07:07:16 +00:00
complexity: None,
depth: None,
2020-03-26 03:34:28 +00:00
extensions: Default::default(),
enable_federation: false,
}
2020-03-25 07:07:16 +00:00
}
2020-03-29 12:02:52 +00:00
/// Create a schema
pub fn new(
query: Query,
mutation: Mutation,
subscription: Subscription,
) -> Schema<Query, Mutation, Subscription> {
Self::build(query, mutation, subscription).finish()
2020-03-05 00:39:56 +00:00
}
2020-04-02 04:53:53 +00:00
/// Execute query without create the `QueryBuilder`.
2020-04-14 01:53:17 +00:00
pub async fn execute(&self, query_source: &str) -> Result<QueryResponse> {
QueryBuilder::new(query_source).execute(self).await
2020-04-02 04:53:53 +00:00
}
2020-05-22 03:58:49 +00:00
pub(crate) fn prepare_query(
&self,
source: &str,
variables: &Variables,
query_extensions: &[Box<dyn Fn() -> BoxExtension + Send + Sync>],
) -> Result<(Document, CacheControl, spin::Mutex<Extensions>)> {
2020-05-22 03:58:49 +00:00
// create extension instances
let extensions = spin::Mutex::new(Extensions(
self.0
.extensions
.iter()
.chain(query_extensions)
.map(|factory| factory())
.collect_vec(),
));
2020-05-22 03:58:49 +00:00
extensions.lock().parse_start(source, &variables);
let document = parse_query(source)
.map_err(Into::<Error>::into)
.log_error(&extensions)?;
extensions.lock().parse_end(&document);
2020-05-22 03:58:49 +00:00
// check rules
extensions.lock().validation_start();
2020-05-22 03:58:49 +00:00
let CheckResult {
cache_control,
complexity,
depth,
} = check_rules(
&self.env.registry,
&document,
Some(&variables),
self.validation_mode,
)
.log_error(&extensions)?;
extensions.lock().validation_end();
2020-05-22 03:58:49 +00:00
// check limit
if let Some(limit_complexity) = self.complexity {
if complexity > limit_complexity {
return Err(QueryError::TooComplex.into_error(Pos::default()))
.log_error(&extensions);
2020-05-22 03:58:49 +00:00
}
}
if let Some(limit_depth) = self.depth {
if depth > limit_depth {
return Err(QueryError::TooDeep.into_error(Pos::default())).log_error(&extensions);
2020-05-22 03:58:49 +00:00
}
}
Ok((document, cache_control, extensions))
}
/// Create subscription stream, typically called inside the `SubscriptionTransport::handle_request` method
2020-04-07 06:30:46 +00:00
pub async fn create_subscription_stream(
2020-03-29 12:02:52 +00:00
&self,
source: &str,
operation_name: Option<&str>,
variables: Variables,
ctx_data: Option<Arc<Data>>,
) -> Result<impl Stream<Item = Result<serde_json::Value>> + Send> {
let (mut document, _, extensions) = self.prepare_query(source, &variables, &Vec::new())?;
2020-03-29 12:02:52 +00:00
if !document.retain_operation(operation_name) {
return if let Some(name) = operation_name {
Err(QueryError::UnknownOperationNamed {
name: name.to_string(),
}
.into_error(Pos::default()))
} else {
Err(QueryError::MissingOperation.into_error(Pos::default()))
}
.log_error(&extensions);
}
2020-03-29 12:02:52 +00:00
2020-05-18 16:03:15 +00:00
if document.current_operation().ty != OperationType::Subscription {
return Err(QueryError::NotSupported.into_error(Pos::default())).log_error(&extensions);
2020-05-18 16:03:15 +00:00
}
2020-03-29 12:02:52 +00:00
let resolve_id = AtomicUsize::default();
2020-05-22 03:58:49 +00:00
let env = QueryEnv::new(
extensions,
variables,
document,
ctx_data.unwrap_or_default(),
);
let ctx = env.create_context(
&self.env,
None,
&env.document.current_operation().selection_set,
&resolve_id,
);
let mut streams = Vec::new();
create_subscription_stream(self, env.clone(), &ctx, &mut streams)
.await
.log_error(&ctx.query_env.extensions)?;
2020-04-06 10:30:38 +00:00
Ok(futures::stream::select_all(streams))
2020-03-29 12:02:52 +00:00
}
/// Create subscription connection, returns `Sink` and `Stream`.
pub fn subscription_connection<T: ConnectionTransport>(
2020-03-29 12:02:52 +00:00
&self,
transport: T,
) -> (
2020-05-20 07:44:59 +00:00
mpsc::UnboundedSender<Bytes>,
impl Stream<Item = Bytes> + Unpin,
) {
create_connection(self.clone(), transport)
2020-03-29 12:02:52 +00:00
}
2020-03-01 10:54:34 +00:00
}