package org.apereo.cas.config; import org.apereo.cas.authentication.AuthenticationServiceSelectionPlan; import org.apereo.cas.authentication.AuthenticationServiceSelectionStrategy; import org.apereo.cas.authentication.AuthenticationServiceSelectionStrategyConfigurer; import org.apereo.cas.authentication.principal.ServiceFactory; import org.apereo.cas.authentication.principal.WebApplicationService; import org.apereo.cas.configuration.CasConfigurationProperties; import org.apereo.cas.support.saml.services.SamlIdPEntityIdAuthenticationServiceSelectionStrategy; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; /** * This is {@link SamlIdPAuthenticationServiceSelectionStrategyConfiguration}. * * @author Misagh Moayyed * @since 5.1.0 */ @Configuration("samlIdPAuthenticationServiceSelectionStrategyConfiguration") @EnableConfigurationProperties(CasConfigurationProperties.class) public class SamlIdPAuthenticationServiceSelectionStrategyConfiguration implements AuthenticationServiceSelectionStrategyConfigurer { @Autowired private CasConfigurationProperties casProperties; @Autowired @Qualifier("webApplicationServiceFactory") private ServiceFactory<WebApplicationService> webApplicationServiceFactory; @ConditionalOnMissingBean(name = "samlIdPEntityIdValidationServiceSelectionStrategy") @Bean public AuthenticationServiceSelectionStrategy samlIdPEntityIdValidationServiceSelectionStrategy() { return new SamlIdPEntityIdAuthenticationServiceSelectionStrategy(webApplicationServiceFactory, casProperties.getServer().getPrefix()); } @Override public void configureAuthenticationServiceSelectionStrategy(final AuthenticationServiceSelectionPlan plan) { plan.registerStrategy(samlIdPEntityIdValidationServiceSelectionStrategy()); } }