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

io.vertx.ext.web.openapi.router.RequestExtractor Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR3
Show newest version
/*
 * Copyright (c) 2023, SAP SE
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 *
 */

package io.vertx.ext.web.openapi.router;

import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.Future;
import io.vertx.ext.web.RoutingContext;
import io.vertx.openapi.contract.Operation;
import io.vertx.openapi.validation.RequestUtils;
import io.vertx.openapi.validation.ValidatableRequest;

import static io.vertx.core.Future.succeededFuture;

@VertxGen
public interface RequestExtractor {

  /**
   * Extracts and transforms the parameters and the body of an incoming request into a {@link ValidatableRequest format}
   * that can be validated by the {@link io.vertx.openapi.validation.RequestValidator}.
   *
   * @param routingContext The routing context of the incoming request.
   * @param operation      The operation of the related request.
   * @return A {@link Future} holding the {@link ValidatableRequest}.
   */
  Future extractValidatableRequest(RoutingContext routingContext, Operation operation);

  /**
   * @return a RequestExtractor that works in case that a BodyHandler was applied to the related route.
   */
  static RequestExtractor withBodyHandler() {
    return (routingContext, operation) -> RequestUtils.extract(routingContext.request(), operation,
      () -> succeededFuture(routingContext.body().buffer()));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy