com.netflix.graphql.dgs.internal.BaseDgsQueryExecutor.kt Maven / Gradle / Ivy
/*
* Copyright 2022 Netflix, Inc.
*
* 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
*
* http://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 com.netflix.graphql.dgs.internal
import com.fasterxml.jackson.databind.DeserializationFeature
import com.fasterxml.jackson.databind.ObjectMapper
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule
import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
import com.jayway.jsonpath.Configuration
import com.jayway.jsonpath.JsonPath
import com.jayway.jsonpath.Option
import com.jayway.jsonpath.ParseContext
import com.jayway.jsonpath.spi.json.JacksonJsonProvider
import com.jayway.jsonpath.spi.mapper.JacksonMappingProvider
import com.netflix.graphql.dgs.DgsExecutionResult
import com.netflix.graphql.dgs.context.DgsContext
import com.netflix.graphql.dgs.exceptions.DgsBadRequestException
import graphql.ExecutionInput
import graphql.ExecutionResult
import graphql.GraphQL
import graphql.GraphQLContext
import graphql.GraphQLError
import graphql.execution.ExecutionIdProvider
import graphql.execution.ExecutionStrategy
import graphql.execution.instrumentation.Instrumentation
import graphql.execution.preparsed.PreparsedDocumentProvider
import graphql.schema.GraphQLSchema
import org.slf4j.Logger
import org.slf4j.LoggerFactory
import org.springframework.http.HttpStatus
import org.springframework.util.StringUtils
import java.util.Optional
import java.util.concurrent.CompletableFuture
object BaseDgsQueryExecutor {
private val logger: Logger = LoggerFactory.getLogger(BaseDgsQueryExecutor::class.java)
val objectMapper: ObjectMapper = jacksonObjectMapper()
.registerModule(JavaTimeModule())
.enable(DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE)
.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES)
val parseContext: ParseContext =
JsonPath.using(
Configuration.builder()
.jsonProvider(JacksonJsonProvider(jacksonObjectMapper()))
.mappingProvider(JacksonMappingProvider(objectMapper)).build()
.addOptions(Option.DEFAULT_PATH_LEAF_TO_NULL)
)
fun baseExecute(
query: String?,
variables: Map?,
extensions: Map?,
operationName: String?,
dgsContext: DgsContext,
graphQLSchema: GraphQLSchema,
dataLoaderProvider: DgsDataLoaderProvider,
instrumentation: Instrumentation?,
queryExecutionStrategy: ExecutionStrategy,
mutationExecutionStrategy: ExecutionStrategy,
idProvider: Optional,
preparsedDocumentProvider: PreparsedDocumentProvider?
): CompletableFuture {
val inputVariables = variables ?: emptyMap()
if (!StringUtils.hasText(query)) {
return CompletableFuture.completedFuture(
DgsExecutionResult
.builder()
.status(HttpStatus.BAD_REQUEST)
.executionResult(
ExecutionResult.newExecutionResult()
.addError(DgsBadRequestException.NULL_OR_EMPTY_QUERY_EXCEPTION.toGraphQlError())
.build()
).build()
)
}
val graphQLBuilder =
GraphQL.newGraphQL(graphQLSchema)
.queryExecutionStrategy(queryExecutionStrategy)
.mutationExecutionStrategy(mutationExecutionStrategy)
preparsedDocumentProvider?.let { graphQLBuilder.preparsedDocumentProvider(it) }
instrumentation?.let { graphQLBuilder.instrumentation(it) }
idProvider.ifPresent { graphQLBuilder.executionIdProvider(it) }
val graphQL: GraphQL = graphQLBuilder.build()
val graphQLContextFuture = CompletableFuture()
val dataLoaderRegistry = dataLoaderProvider.buildRegistryWithContextSupplier { graphQLContextFuture.get() }
return try {
@Suppress("DEPRECATION")
val executionInput = ExecutionInput.newExecutionInput()
.query(query)
.operationName(operationName)
.variables(inputVariables)
.dataLoaderRegistry(dataLoaderRegistry)
.context(dgsContext)
.graphQLContext(dgsContext)
.extensions(extensions.orEmpty())
.build()
graphQLContextFuture.complete(executionInput.graphQLContext)
graphQL.executeAsync(executionInput)
} catch (e: Exception) {
logger.error("Encountered an exception while handling query {}", query, e)
val errors: List = if (e is GraphQLError) listOf(e) else emptyList()
CompletableFuture.completedFuture(ExecutionResult.newExecutionResult().errors(errors).build())
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy