
org.apereo.cas.config.SamlIdPRestfulIdPMetadataConfiguration Maven / Gradle / Ivy
package org.apereo.cas.config;
import org.apereo.cas.configuration.CasConfigurationProperties;
import org.apereo.cas.configuration.features.CasFeatureModule;
import org.apereo.cas.support.saml.idp.metadata.RestfulSamlIdPMetadataCipherExecutor;
import org.apereo.cas.support.saml.idp.metadata.RestfulSamlIdPMetadataGenerator;
import org.apereo.cas.support.saml.idp.metadata.RestfulSamlIdPMetadataLocator;
import org.apereo.cas.support.saml.idp.metadata.generator.SamlIdPMetadataGenerator;
import org.apereo.cas.support.saml.idp.metadata.generator.SamlIdPMetadataGeneratorConfigurationContext;
import org.apereo.cas.support.saml.idp.metadata.locator.SamlIdPMetadataLocator;
import org.apereo.cas.support.saml.services.idp.metadata.SamlIdPMetadataDocument;
import org.apereo.cas.util.cipher.CipherExecutorUtils;
import org.apereo.cas.util.crypto.CipherExecutor;
import org.apereo.cas.util.spring.beans.BeanCondition;
import org.apereo.cas.util.spring.beans.BeanSupplier;
import org.apereo.cas.util.spring.boot.ConditionalOnFeatureEnabled;
import com.github.benmanes.caffeine.cache.Cache;
import lombok.extern.slf4j.Slf4j;
import lombok.val;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ScopedProxyMode;
/**
* This is {@link SamlIdPRestfulIdPMetadataConfiguration}.
*
* @author Misagh Moayyed
* @since 5.2.0
*/
@EnableConfigurationProperties(CasConfigurationProperties.class)
@Slf4j
@ConditionalOnFeatureEnabled(feature = CasFeatureModule.FeatureCatalog.SAMLIdentityProviderMetadata, module = "rest")
@AutoConfiguration
public class SamlIdPRestfulIdPMetadataConfiguration {
private static final BeanCondition CONDITION = BeanCondition.on("cas.authn.saml-idp.metadata.rest.idp-metadata-enabled").isTrue();
@Bean
@RefreshScope(proxyMode = ScopedProxyMode.DEFAULT)
public CipherExecutor samlIdPMetadataGeneratorCipherExecutor(
final ConfigurableApplicationContext applicationContext,
final CasConfigurationProperties casProperties) {
return BeanSupplier.of(CipherExecutor.class)
.when(CONDITION.given(applicationContext.getEnvironment()))
.supply(() -> {
val idp = casProperties.getAuthn().getSamlIdp();
val crypto = idp.getMetadata().getRest().getCrypto();
if (crypto.isEnabled()) {
return CipherExecutorUtils.newStringCipherExecutor(crypto, RestfulSamlIdPMetadataCipherExecutor.class);
}
LOGGER.info("Restful SAML IdP metadata encryption/signing is turned off and "
+ "MAY NOT be safe in a production environment. "
+ "Consider using other choices to handle encryption, signing and verification of "
+ "metadata artifacts");
return CipherExecutor.noOp();
})
.otherwise(CipherExecutor::noOp)
.get();
}
@Bean
@RefreshScope(proxyMode = ScopedProxyMode.DEFAULT)
public SamlIdPMetadataGenerator samlIdPMetadataGenerator(
final ConfigurableApplicationContext applicationContext,
@Qualifier("samlIdPMetadataGeneratorConfigurationContext")
final SamlIdPMetadataGeneratorConfigurationContext ctx) {
return BeanSupplier.of(SamlIdPMetadataGenerator.class)
.when(CONDITION.given(applicationContext.getEnvironment()))
.supply(() -> new RestfulSamlIdPMetadataGenerator(ctx))
.otherwiseProxy()
.get();
}
@Bean
@RefreshScope(proxyMode = ScopedProxyMode.DEFAULT)
public SamlIdPMetadataLocator samlIdPMetadataLocator(
final ConfigurableApplicationContext applicationContext,
@Qualifier("samlIdPMetadataCache")
final Cache samlIdPMetadataCache,
final CasConfigurationProperties casProperties,
@Qualifier("samlIdPMetadataGeneratorCipherExecutor")
final CipherExecutor samlIdPMetadataGeneratorCipherExecutor) {
return BeanSupplier.of(SamlIdPMetadataLocator.class)
.when(CONDITION.given(applicationContext.getEnvironment()))
.supply(() -> {
val idp = casProperties.getAuthn().getSamlIdp();
return new RestfulSamlIdPMetadataLocator(samlIdPMetadataGeneratorCipherExecutor,
samlIdPMetadataCache, idp.getMetadata().getRest());
})
.otherwiseProxy()
.get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy