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

org.elasticsearch.action.RequestValidators Maven / Gradle / Ivy

There is a newer version: 8.13.4
Show newest version
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.action;

import org.elasticsearch.cluster.ClusterState;
import org.elasticsearch.index.Index;

import java.util.Collection;
import java.util.Optional;

public class RequestValidators {

    private final Collection> validators;

    public RequestValidators(Collection> validators) {
        this.validators = validators;
    }

    public Optional validateRequest(final T request, final ClusterState state, final Index[] indices) {
        Exception exception = null;
        for (final var validator : validators) {
            final Optional maybeException = validator.validateRequest(request, state, indices);
            if (maybeException.isEmpty()) continue;
            if (exception == null) {
                exception = maybeException.get();
            } else {
                exception.addSuppressed(maybeException.get());
            }
        }
        return Optional.ofNullable(exception);
    }

    /**
     * A validator that validates an request associated with indices before executing it.
     */
    public interface RequestValidator {

        /**
         * Validates a given request with its associated concrete indices and the current state.
         *
         * @param request the request to validate
         * @param state   the current cluster state
         * @param indices the concrete indices that associated with the given request
         * @return an optional exception indicates a reason that the given request should be aborted, otherwise empty
         */
        Optional validateRequest(T request, ClusterState state, Index[] indices);

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy