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

org.apache.jackrabbit.oak.security.authentication.AuthenticationConfigurationImpl Maven / Gradle / Ivy

There is a newer version: 1.62.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.jackrabbit.oak.security.authentication;

import java.util.Map;
import javax.annotation.Nonnull;

import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.apache.jackrabbit.oak.api.ContentRepository;
import org.apache.jackrabbit.oak.spi.security.ConfigurationBase;
import org.apache.jackrabbit.oak.spi.security.ConfigurationParameters;
import org.apache.jackrabbit.oak.spi.security.SecurityConfiguration;
import org.apache.jackrabbit.oak.spi.security.SecurityProvider;
import org.apache.jackrabbit.oak.spi.security.authentication.AuthenticationConfiguration;
import org.apache.jackrabbit.oak.spi.security.authentication.LoginContextProvider;
import org.apache.jackrabbit.oak.spi.whiteboard.Whiteboard;
import org.apache.jackrabbit.oak.spi.whiteboard.WhiteboardAware;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Default implementation of the {@code AuthenticationConfiguration} with the
 * following characteristics:
 *
 * 
    *
  • * {@link LoginContextProvider}: Returns the default implementation of * {@code LoginContextProvider} that handles standard JAAS based logins and * deals with pre-authenticated subjects.
  • *
* */ @Component(metatype = true, label = "Apache Jackrabbit Oak AuthenticationConfiguration") @Service({AuthenticationConfiguration.class, SecurityConfiguration.class}) @Properties({ @Property(name = AuthenticationConfiguration.PARAM_APP_NAME, label = "Application Name", value = AuthenticationConfiguration.DEFAULT_APP_NAME, description = "Application named used for JAAS authentication"), @Property(name = AuthenticationConfiguration.PARAM_CONFIG_SPI_NAME, label = "JAAS Config SPI Name", description = "Name of JAAS Configuration Spi. This needs to be set to JAAS config provider " + "name if JAAS authentication " + "is managed by Felix JAAS Support with its Global Configuration Policy set to 'default'.") }) public class AuthenticationConfigurationImpl extends ConfigurationBase implements AuthenticationConfiguration { private static final Logger log = LoggerFactory.getLogger(AuthenticationConfigurationImpl.class); /** * Constructor for OSGi */ public AuthenticationConfigurationImpl() { super(); } @SuppressWarnings("UnusedDeclaration") @Activate private void activate(Map properties) { setParameters(ConfigurationParameters.of(properties)); } /** * Constructor for non-OSGi * @param securityProvider */ public AuthenticationConfigurationImpl(SecurityProvider securityProvider) { super(securityProvider, securityProvider.getParameters(NAME)); } //----------------------------------------------< SecurityConfiguration >--- @Nonnull @Override public String getName() { return NAME; } //----------------------------------------< AuthenticationConfiguration >--- /** * Create a {@code LoginContextProvider} using standard * {@link javax.security.auth.login.Configuration#getConfiguration() JAAS} * functionality. In case no login configuration for the specified app name * can be retrieve this implementation uses the default as defined by * {@link org.apache.jackrabbit.oak.spi.security.authentication.ConfigurationUtil#getDefaultConfiguration(org.apache.jackrabbit.oak.spi.security.ConfigurationParameters)}. *

* The {@link LoginContextProvider} implementation is intended to be used with *

    *
  • Regular login using JAAS {@link javax.security.auth.spi.LoginModule} or
  • *
  • Pre-authenticated subjects in which case any authentication * related validation is omitted
  • *
* *

Configuration Options

*
    *
  • {@link #PARAM_APP_NAME}: The appName passed to * {@code Configuration#getAppConfigurationEntry(String)}. The default * value is {@link #DEFAULT_APP_NAME}.
  • *
* * @param contentRepository The content repository. * @return An new instance of {@link LoginContextProvider}. */ @Nonnull @Override public LoginContextProvider getLoginContextProvider(ContentRepository contentRepository) { String appName = getParameters().getConfigValue(PARAM_APP_NAME, DEFAULT_APP_NAME); SecurityProvider provider = getSecurityProvider(); Whiteboard whiteboard = null; if (provider instanceof WhiteboardAware) { whiteboard = ((WhiteboardAware) provider).getWhiteboard(); } else { log.warn("Unable to obtain whiteboard from SecurityProvider"); } return new LoginContextProviderImpl(appName, getParameters(), contentRepository, getSecurityProvider(), whiteboard); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy