io.micronaut.configuration.graphql.DefaultGraphQLInvocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-graphql Show documentation
Show all versions of micronaut-graphql Show documentation
Extensions to integrate Micronaut and GraphQL
The newest version!
/*
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.configuration.graphql;
import graphql.ExecutionInput;
import graphql.ExecutionResult;
import graphql.GraphQL;
import io.micronaut.context.BeanProvider;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.http.HttpRequest;
import io.micronaut.http.MutableHttpResponse;
import jakarta.inject.Singleton;
import org.dataloader.DataLoaderRegistry;
import org.reactivestreams.Publisher;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import java.util.concurrent.CompletableFuture;
/**
* The default implementation for invoking GraphQL requests.
*
* @author Marcel Overdijk
* @author Graeme Rocher
* @author James Kleeh
* @since 1.0
* @see GraphQLExecutionInputCustomizer#customize(ExecutionInput, HttpRequest, MutableHttpResponse)
* @see GraphQL#executeAsync(ExecutionInput.Builder)
*/
@Singleton
public class DefaultGraphQLInvocation implements GraphQLInvocation {
private final GraphQL graphQL;
private final GraphQLExecutionInputCustomizer graphQLExecutionInputCustomizer;
private final BeanProvider dataLoaderRegistry;
/**
* Default constructor.
*
* @param graphQL the {@link GraphQL} instance
* @param graphQLExecutionInputCustomizer the {@link GraphQLExecutionInputCustomizer} instance
* @param dataLoaderRegistry the {@link DataLoaderRegistry} instance
*/
public DefaultGraphQLInvocation(
GraphQL graphQL,
GraphQLExecutionInputCustomizer graphQLExecutionInputCustomizer,
@Nullable BeanProvider dataLoaderRegistry) {
this.graphQL = graphQL;
this.graphQLExecutionInputCustomizer = graphQLExecutionInputCustomizer;
this.dataLoaderRegistry = dataLoaderRegistry;
}
/**
* {@inheritDoc}
*/
@Override
public Publisher invoke(
GraphQLInvocationData invocationData,
HttpRequest httpRequest,
@Nullable MutableHttpResponse httpResponse) {
ExecutionInput.Builder executionInputBuilder = ExecutionInput.newExecutionInput()
.query(invocationData.getQuery())
.operationName(invocationData.getOperationName())
.variables(invocationData.getVariables());
if (dataLoaderRegistry != null) {
executionInputBuilder.dataLoaderRegistry(dataLoaderRegistry.get());
}
ExecutionInput executionInput = executionInputBuilder.build();
return Flux
.from(graphQLExecutionInputCustomizer.customize(executionInput, httpRequest, httpResponse))
.flatMap(customizedExecutionInput -> Mono.fromFuture(() -> {
try {
return graphQL.executeAsync(customizedExecutionInput);
} catch (Throwable e) {
CompletableFuture future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}));
}
}