io.gravitee.gateway.reactive.api.context.http.HttpPlainRequest Maven / Gradle / Ivy
/*
* Copyright © 2015 The Gravitee team (http://gravitee.io)
*
* 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 io.gravitee.gateway.reactive.api.context.http;
import io.gravitee.common.http.HttpMethod;
import io.gravitee.gateway.api.buffer.Buffer;
import io.gravitee.gateway.reactive.api.ws.WebSocket;
import io.reactivex.rxjava3.core.*;
/**
* Represents a request that can manipulate a plain http body (as a single buffer or a flow of chunks).
*
* @author Jeoffrey HAEYAERT (jeoffrey.haeyaert at graviteesource.com)
* @author GraviteeSource Team
*/
public interface HttpPlainRequest extends HttpBaseRequest {
/**
* Indicates if that request is a websocket request.
*
*
* A websocket request must respond to the following criteria:
*
* - Has a
Connection: Upgrade
header
* - Has a
Upgrade: websocket
header
* - Is a
GET
request
* - Is an HTTP 1.0 or HTTP 1.1 request
*
*
*
* @return true
is the request is a websocket, false
otherwise.
*/
boolean isWebSocket();
/**
* Returns the underlying websocket associated to this request or null
if the current request is not a websocket request.
*
* @return the underlying websocket associated to this request.
* @see #isWebSocket()
*/
WebSocket webSocket();
/**
* Get the current body request as a {@link Maybe}.
*
*
* By getting the body as a {@link Maybe}, the current body chunks will be merged together to reconstruct the entire body to provide it in the form of a single {@link Buffer}
* This is useful when the entire body is required to apply some transformation or any manipulation.
*
*
*
* WARN: beware that the entire body content will be loaded in memory. You should not keep a direct reference on the body chunks as they could be overridden by others at anytime.
*
*
* @return a {@link Maybe} observable containing the current entire body request or empty if request body has not been set yet.
* @see #bodyOrEmpty()
*/
Maybe body();
/**
* Same as {@link #body()} but returns a {@link Single} of {@link Buffer} instead.
*
*
* If no body request as been set yet, it returns a {@link Single} with an empty {@link Buffer}.
* It is a convenient way that avoid checking if the body is set or not prior to manipulate it.
*
*
* @return a {@link Single} observable containing the current entire body request or empty an {@link Buffer) if request body has not been set yet.
* @see #body()
*/
Single bodyOrEmpty();
/**
* Set the current body request as a {@link Buffer}.
*
*
* This is useful when you want to replace the current body request with a specific content that doesn't come from a reactive chain, ex:
*
* request.body(Buffer.buffer("My custom content");
*
*
*
* WARN:
*
* - replacing the request body will NOT "drain" the previous request that was in place.
* - You MUST ensure to consume the previous body by yourself when using it.
* - You SHOULD consider using {@link #onBody(MaybeTransformer)} to change the body during the chain execution.
*
*
* @see #onBody(MaybeTransformer)
* @see #chunks(Flowable)
*/
void body(final Buffer buffer);
/**
* Applies a transformation on the complete body given as a single {@link Buffer}.
*
*
* Ex:
*
* request.onBody(body -> body.map(buffer -> Buffer.buffer(buffer.toString().toUpperCase())));
*
*
*
*
* IMPORTANT: applying a transformation on the body content loads the whole body in memory.
* It's up to the consumer to make sure it is safe to do that without consuming too much memory.
*
*
* @param onBody the transformation that will be applied on the body.
* @return a {@link Completable} that completes once the body transformation has occurred.
*/
Completable onBody(MaybeTransformer onBody);
/**
* Get the current request body chunks as {@link Flowable} of {@link Buffer}.
*
*
* This is useful when you want to manipulate the entire body without having to load it in memory.
*
*
*
* WARN: you should not keep a direct reference on the body chunks as they could be overridden by others at anytime.
*
*
* @return a {@link Flowable} containing the current body request chunks.
*/
Flowable chunks();
/**
* Set the current request body chunks from a {@link Flowable} of {@link Buffer}.
*
*
* This is useful to directly pump the upstream chunks to the downstream without having to load all the chunks in memory.
*
*
*
* WARN:
*
* - replacing the request chunks will NOT "drain" the previous request that was in place.
* - You MUST ensure to consume the previous chunks by yourself when using it.
* - You SHOULD consider using {@link #onChunks(FlowableTransformer)} to change the chunks during the chain execution.
*
*
*
*
* @param chunks the {@link Flowable} of chunks representing the request body that will be pushed to the upstream.
*
* @see #body()
*/
void chunks(final Flowable chunks);
/**
* Applies a transformation on each body chunks and completes when all the chunks have been processed.
*
*
* Ex:
*
* request.onChunks(chunks -> chunks.map(buffer -> Buffer.buffer(buffer.toString().toUpperCase())));
*
*
*
*
* IMPORTANT: applying a transformation on the body chunks loads the whole body in memory.
* It's up to the consumer to make sure it is safe to do that without consuming too much memory.
*
*
*
* IMPORTANT: applying a transformation on chunks completes when all chunks have been transformed.
* If used in a policy chain, it means that the next policy will start once all chunks have been transformed
*
*
* @param onChunks the transformer that will be applied.
* @return a {@link Completable} that completes once the body transformation has occurred on all the chunks.
*/
Completable onChunks(final FlowableTransformer onChunks);
/**
* Set the `Content-Length` header to the request.
*
*
* WARN: any existing `Transfer-Encoding` header will be removed.
* @see RFC 2616
*
*
* @param length The value of the `Content-Length` header
*/
void contentLength(long length);
void method(HttpMethod method);
}