All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.com.netflix.graphql.dgs.springgraphql.webflux.DgsWebFluxGraphQLInterceptor.kt Maven / Gradle / Ivy

There is a newer version: 10.0.1
Show newest version
/*
 * Copyright 2024 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.springgraphql.webflux

import com.netflix.graphql.dgs.internal.DgsDataLoaderProvider
import com.netflix.graphql.dgs.reactive.internal.DefaultDgsReactiveGraphQLContextBuilder
import com.netflix.graphql.dgs.reactive.internal.DgsReactiveRequestData
import graphql.GraphQLContext
import org.springframework.graphql.server.WebGraphQlInterceptor
import org.springframework.graphql.server.WebGraphQlRequest
import org.springframework.graphql.server.WebGraphQlResponse
import org.springframework.web.filter.reactive.ServerWebExchangeContextFilter
import org.springframework.web.reactive.function.server.ServerRequest
import reactor.core.publisher.Mono
import java.util.concurrent.CompletableFuture

class DgsWebFluxGraphQLInterceptor(
    private val dgsDataLoaderProvider: DgsDataLoaderProvider,
    private val dgsReactiveGraphQLContextBuilder: DefaultDgsReactiveGraphQLContextBuilder
) : WebGraphQlInterceptor {
    override fun intercept(request: WebGraphQlRequest, chain: WebGraphQlInterceptor.Chain): Mono {
        return Mono.deferContextual { ctx ->
            val webExchange = ServerWebExchangeContextFilter.getExchange(ctx).get()
            val serverRequest = ServerRequest.create(webExchange, emptyList())
            dgsReactiveGraphQLContextBuilder.build(
                DgsReactiveRequestData(
                    request.extensions,
                    request.headers,
                    serverRequest
                )
            )
        }.flatMap { dgsContext ->
            val graphQLContextFuture = CompletableFuture()
            val dataLoaderRegistry =
                dgsDataLoaderProvider.buildRegistryWithContextSupplier { graphQLContextFuture.get() }

            request.configureExecutionInput { _, builder ->
                builder
                    .context(dgsContext)
                    .graphQLContext(dgsContext)
                    .dataLoaderRegistry(dataLoaderRegistry).build()
            }
            graphQLContextFuture.complete(request.toExecutionInput().graphQLContext)
            chain.next(request)
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy