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

be.objectify.deadbolt.java.composite.Constraint Maven / Gradle / Ivy

There is a newer version: 2.8.1
Show newest version
/*
 * Copyright 2010-2017 Steve Chaloner
 *
 * 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 be.objectify.deadbolt.java.composite;

import be.objectify.deadbolt.java.DeadboltHandler;
import play.mvc.Http;

import java.util.Objects;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.Executor;
import java.util.function.BiFunction;

/**
 * @author Steve Chaloner ([email protected])
 */
@FunctionalInterface
public interface Constraint
{
    default CompletionStage test(Http.Context context,
                                          DeadboltHandler handler,
                                          Executor executor)
    {
        return test(context,
                    handler,
                    executor,
                    Optional.empty(),
                    (globalMeta, localMeta) -> localMeta);
    }

    CompletionStage test(Http.Context context,
                                  DeadboltHandler handler,
                                  Executor executor,
                                  Optional globalMetaData,
                                  BiFunction, Optional, Optional> metaFn);

    default Constraint and(final Constraint other)
    {
        Objects.requireNonNull(other);
        return (ctx, handler, executor, global, fMeta) ->
                test(ctx, handler, executor, global, fMeta).thenComposeAsync(passed1 -> passed1 ? other.test(ctx, handler, executor, global, fMeta).thenApplyAsync(passed2 -> passed2,
                                                                                                                                                                   executor)
                                                                                                : CompletableFuture.completedFuture(false),
                                                                             executor);
    }

    default Constraint negate()
    {
        return (ctx, handler, executor, global, fMeta) -> test(ctx, handler, executor, global, fMeta).thenApplyAsync(p -> !p);
    }

    default Constraint or(final Constraint other)
    {
        Objects.requireNonNull(other);
        return (ctx, handler, executor, global, fMeta) ->
                test(ctx, handler, executor, global, fMeta).thenComposeAsync(passed1 -> passed1 ? CompletableFuture.completedFuture(true)
                                                                                                : other.test(ctx, handler, executor, global, fMeta).thenApplyAsync(passed2 -> passed2,
                                                                                                                                                                   executor),
                                                                             executor);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy