
io.vertx.ext.web.handler.graphql.ApolloWSHandler Maven / Gradle / Ivy
/*
* Copyright 2023 Red Hat, Inc.
*
* Red Hat licenses this file to you 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 io.vertx.ext.web.handler.graphql;
import graphql.GraphQL;
import graphql.GraphQLContext;
import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.GenIgnore;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.Handler;
import io.vertx.core.http.ServerWebSocket;
import io.vertx.ext.web.handler.ProtocolUpgradeHandler;
import io.vertx.ext.web.handler.graphql.impl.ApolloWSHandlerImpl;
import org.dataloader.DataLoaderRegistry;
import java.util.Locale;
import java.util.function.Function;
import static io.vertx.codegen.annotations.GenIgnore.*;
/**
* A handler for GraphQL requests sent over Apollo's {@code subscriptions-transport-ws} transport.
*
* @author Rogelio Orts
* @deprecated the subscriptions-transport-ws protocol is no longer maintained
*/
@VertxGen
@Deprecated
public interface ApolloWSHandler extends ProtocolUpgradeHandler {
/**
* Create a new {@link ApolloWSHandler} that will use the provided {@code graphQL} object to execute requests.
*
* The handler will be configured with the default {@link ApolloWSOptions}.
*/
@GenIgnore(PERMITTED_TYPE)
static ApolloWSHandler create(GraphQL graphQL) {
return new ApolloWSHandlerImpl(graphQL, new ApolloWSOptions());
}
/**
* Create a new {@link ApolloWSHandler} that will use the provided {@code graphQL} object to execute requests.
*
* The handler will be configured with the given {@code options}.
*
* @param options options for configuring the {@link ApolloWSOptions}
*/
@GenIgnore(PERMITTED_TYPE)
static ApolloWSHandler create(GraphQL graphQL, ApolloWSOptions options) {
return new ApolloWSHandlerImpl(graphQL, options);
}
/**
* Retrieves the {@link ApolloWSMessage} from the {@link GraphQLContext}.
*
* @param graphQlContext the GraphQL context object
* @return the {@link ApolloWSMessage}
*/
@GenIgnore(PERMITTED_TYPE)
static ApolloWSMessage getMessage(GraphQLContext graphQlContext) {
return graphQlContext.get(ApolloWSMessage.class);
}
/**
* Customize the connection {@link Handler}.
* This handler will be called at the beginning of each websocket connection.
*
* @return a reference to this, so the API can be used fluently
*/
@Fluent
ApolloWSHandler connectionHandler(Handler connectionHandler);
/**
* Customize the connection init {@link Handler}.
* This handler will be called when the {@link ApolloWSMessageType#CONNECTION_INIT} message is received.
*
* @return a reference to this, so the API can be used fluently
*/
@Fluent
ApolloWSHandler connectionInitHandler(Handler connectionInitHandler);
/**
* Customize the message {@link Handler}.
* This handler will be called for each {@link ApolloWSMessage} received.
*
* @return a reference to this, so the API can be used fluently
*/
@Fluent
ApolloWSHandler messageHandler(Handler messageHandler);
/**
* Customize the end {@link Handler}.
* This handler will be called at the end of each websocket connection.
*
* @return a reference to this, so the API can be used fluently
*/
@Fluent
ApolloWSHandler endHandler(Handler endHandler);
/**
* Customize the query context object.
* The provided {@code factory} method will be invoked for each incoming GraphQL request.
*
* @return a reference to this, so the API can be used fluently
* @deprecated as of 4.2, use {@link #beforeExecute(Handler)} instead
*/
@Fluent
@Deprecated
ApolloWSHandler queryContext(Function factory);
/**
* Customize the {@link DataLoaderRegistry}.
* The provided {@code factory} method will be invoked for each incoming GraphQL request.
*
* @return a reference to this, so the API can be used fluently
* @deprecated as of 4.2, use {@link #beforeExecute(Handler)} instead
*/
@Fluent
@GenIgnore(PERMITTED_TYPE)
@Deprecated
ApolloWSHandler dataLoaderRegistry(Function factory);
/**
* Customize the {@link Locale} passed to the GraphQL execution engine.
* The provided {@code factory} method will be invoked for each incoming GraphQL request.
*
* @return a reference to this, so the API can be used fluently
* @deprecated as of 4.2, use {@link #beforeExecute(Handler)} instead
*/
@Fluent
@GenIgnore(PERMITTED_TYPE)
@Deprecated
ApolloWSHandler locale(Function factory);
/**
* Set a callback to invoke before executing a GraphQL query.
*
* @param config the callback to invoke
* @return a reference to this, so the API can be used fluently
*/
@Fluent
ApolloWSHandler beforeExecute(Handler> config);
}