/* * Copyright 2010-2016 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.actions; import be.objectify.deadbolt.java.ConstraintLogic; import be.objectify.deadbolt.java.DeadboltHandler; import be.objectify.deadbolt.java.ExecutionContextProvider; import be.objectify.deadbolt.java.cache.HandlerCache; import play.Configuration; import play.mvc.Http; import play.mvc.Result; import scala.concurrent.ExecutionContextExecutor; import java.util.concurrent.CompletableFuture; import java.util.concurrent.CompletionStage; /** * Convenience class for checking if an action has already been authorised before applying the restrictions. * * @author Steve Chaloner (steve@objectify.be) */ public abstract class AbstractRestrictiveAction<T> extends AbstractDeadboltAction<T> { final ConstraintLogic constraintLogic; public AbstractRestrictiveAction(final HandlerCache handlerCache, final Configuration config, final ExecutionContextProvider ecProvider, final ConstraintLogic constraintLogic) { super(handlerCache, config, ecProvider); this.constraintLogic = constraintLogic; } @Override public CompletionStage<Result> execute(final Http.Context ctx) throws Exception { final CompletionStage<Result> result; if (isActionAuthorised(ctx)) { result = delegate.call(ctx); } else { final DeadboltHandler deadboltHandler = getDeadboltHandler(getHandlerKey()); final ExecutionContextExecutor executor = executor(); result = preAuth(true, ctx, deadboltHandler) .thenComposeAsync(option -> option.map(value -> (CompletionStage<Result>) CompletableFuture.completedFuture(value)) .orElseGet(() -> applyRestriction(ctx, deadboltHandler)), executor); } return maybeBlock(result); } /** * Get the key of a specific DeadboltHandler instance. * * @return a key. May be null. */ public abstract String getHandlerKey(); public abstract CompletionStage<Result> applyRestriction(Http.Context ctx, DeadboltHandler deadboltHandler); }