/* * 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.actions; import be.objectify.deadbolt.java.ConstraintLogic; import be.objectify.deadbolt.java.ConstraintPoint; 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 javax.inject.Inject; import java.util.Optional; import java.util.concurrent.CompletableFuture; import java.util.concurrent.CompletionStage; import java.util.function.Supplier; /** * Implements the {@link SubjectPresent} functionality, i.e. a {@link be.objectify.deadbolt.java.models.Subject} must be provided by the * {@link DeadboltHandler} to have access to the resource, but no role checks are performed. * * @author Steve Chaloner (steve@objectify.be) */ public class SubjectPresentAction extends AbstractSubjectAction<SubjectPresent> { @Inject public SubjectPresentAction(final HandlerCache handlerCache, final Configuration config, final ExecutionContextProvider ecProvider, final ConstraintLogic constraintLogic) { super(handlerCache, config, ecProvider, constraintLogic); } @Override Config config() { return new Config(configuration.forceBeforeAuthCheck(), configuration.handlerKey(), configuration.content()); } /** * {@inheritDoc} */ @Override CompletionStage<Result> present(final Http.Context context, final DeadboltHandler handler, final Optional<String> content) { return authorizeAndExecute(context); } /** * {@inheritDoc} */ @Override CompletionStage<Result> notPresent(final Http.Context context, final DeadboltHandler handler, final Optional<String> content) { return unauthorizeAndFail(context, handler, content); } @Override protected Supplier<CompletableFuture<Result>> testSubject(final ConstraintLogic constraintLogic, final Http.Context context, final Config config, final DeadboltHandler deadboltHandler) { return () -> constraintLogic.subjectPresent(context, deadboltHandler, config.content, this::present, this::notPresent, ConstraintPoint.CONTROLLER).toCompletableFuture(); } }