/*
 * Copyright 2019 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 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.RoutingContext;
import io.vertx.ext.web.handler.graphql.impl.ApolloWSHandlerImpl;
import org.dataloader.DataLoaderRegistry;

import java.util.Locale;
import java.util.function.Function;

A handler for GraphQL requests sent over Apollo's subscriptions-transport-ws transport.
Author:Rogelio Orts
/** * A handler for GraphQL requests sent over Apollo's {@code subscriptions-transport-ws} transport. * * @author Rogelio Orts */
@VertxGen public interface ApolloWSHandler extends Handler<RoutingContext> {
Create a new ApolloWSHandler that will use the provided graphQL object to execute requests.

The handler will be configured with the default ApolloWSOptions.

/** * Create a new {@link ApolloWSHandler} that will use the provided {@code graphQL} object to execute requests. * <p> * The handler will be configured with the default {@link ApolloWSOptions}. */
@GenIgnore(GenIgnore.PERMITTED_TYPE) static ApolloWSHandler create(GraphQL graphQL) { return new ApolloWSHandlerImpl(graphQL, new ApolloWSOptions()); }
Create a new ApolloWSHandler that will use the provided graphQL object to execute requests.

The handler will be configured with the given options.

Params:
/** * Create a new {@link ApolloWSHandler} that will use the provided {@code graphQL} object to execute requests. * <p> * The handler will be configured with the given {@code options}. * * @param options options for configuring the {@link ApolloWSOptions} */
@GenIgnore(GenIgnore.PERMITTED_TYPE) static ApolloWSHandler create(GraphQL graphQL, ApolloWSOptions options) { return new ApolloWSHandlerImpl(graphQL, options); }
Customize the connection Handler. This handler will be called at the beginning of each websocket connection.
Returns:a reference to this, so the API can be used fluently
/** * 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<ServerWebSocket> connectionHandler);
Customize the connection init Handler. This handler will be called when the ApolloWSMessageType.CONNECTION_INIT message is received.
Returns:a reference to this, so the API can be used fluently
/** * 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<ApolloWSConnectionInitEvent> connectionInitHandler);
Customize the message Handler. This handler will be called for each ApolloWSMessage received.
Returns:a reference to this, so the API can be used fluently
/** * 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<ApolloWSMessage> messageHandler);
Customize the end Handler. This handler will be called at the end of each websocket connection.
Returns:a reference to this, so the API can be used fluently
/** * 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<ServerWebSocket> endHandler);
Customize the query context object. The provided factory method will be invoked for each incoming GraphQL request.
Returns:a reference to this, so the API can be used fluently
/** * 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 */
@Fluent ApolloWSHandler queryContext(Function<ApolloWSMessage, Object> factory);
Customize the DataLoaderRegistry. The provided factory method will be invoked for each incoming GraphQL request.
Returns:a reference to this, so the API can be used fluently
/** * 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 */
@Fluent @GenIgnore(GenIgnore.PERMITTED_TYPE) ApolloWSHandler dataLoaderRegistry(Function<ApolloWSMessage, DataLoaderRegistry> factory);
Customize the Locale passed to the GraphQL execution engine. The provided factory method will be invoked for each incoming GraphQL request.
Returns:a reference to this, so the API can be used fluently
/** * 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 */
@Fluent @GenIgnore(GenIgnore.PERMITTED_TYPE) ApolloWSHandler locale(Function<ApolloWSMessage, Locale> factory); }