blob: 62e2d7b994ceee6b43f8c66c6638e6129566cf27 [file] [log] [blame]
/*
* 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.syncope.wa.starter;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import org.apache.syncope.common.keymaster.client.api.model.NetworkService;
import org.apache.syncope.common.keymaster.client.api.startstop.KeymasterStart;
import org.apache.syncope.common.keymaster.client.api.startstop.KeymasterStop;
import org.apache.syncope.wa.bootstrap.WARestClient;
import org.apache.syncope.wa.starter.mapping.AccessMapFor;
import org.apache.syncope.wa.starter.mapping.AccessMapper;
import org.apache.syncope.wa.starter.mapping.AttrReleaseMapFor;
import org.apache.syncope.wa.starter.mapping.AttrReleaseMapper;
import org.apache.syncope.wa.starter.mapping.AuthMapFor;
import org.apache.syncope.wa.starter.mapping.AuthMapper;
import org.apache.syncope.wa.starter.mapping.ClientAppMapFor;
import org.apache.syncope.wa.starter.mapping.ClientAppMapper;
import org.apache.syncope.wa.starter.mapping.RegisteredServiceMapper;
import org.apache.syncope.wa.starter.saml.idp.metadata.RestfulSamlIdPMetadataGenerator;
import org.apache.syncope.wa.starter.saml.idp.metadata.RestfulSamlIdPMetadataLocator;
import org.apereo.cas.audit.AuditTrailExecutionPlanConfigurer;
import org.apereo.cas.configuration.CasConfigurationProperties;
import org.apereo.cas.services.ServiceRegistryExecutionPlanConfigurer;
import org.apereo.cas.services.ServiceRegistryListener;
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.idp.metadata.writer.SamlIdPCertificateAndKeyWriter;
import org.apereo.cas.util.crypto.CipherExecutor;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ResourceLoader;
@Configuration
public class SyncopeWAConfiguration {
@Autowired
private CasConfigurationProperties casProperties;
@Autowired
private ResourceLoader resourceLoader;
@Autowired
@Qualifier("samlSelfSignedCertificateWriter")
private ObjectProvider<SamlIdPCertificateAndKeyWriter> samlSelfSignedCertificateWriter;
@Autowired
private ConfigurableApplicationContext applicationContext;
@Autowired
@Qualifier("serviceRegistryListeners")
private Collection<ServiceRegistryListener> serviceRegistryListeners;
@Autowired
private ApplicationContext ctx;
@ConditionalOnMissingBean
@Bean
public RegisteredServiceMapper registeredServiceMapper() {
Map<String, AuthMapper> authPolicyConfMappers = new HashMap<>();
ctx.getBeansOfType(AuthMapper.class).forEach((name, bean) -> {
AuthMapFor authMapFor = ctx.findAnnotationOnBean(name, AuthMapFor.class);
if (authMapFor != null) {
authPolicyConfMappers.put(authMapFor.authPolicyConfClass().getName(), bean);
}
});
Map<String, AccessMapper> accessPolicyConfMappers = new HashMap<>();
ctx.getBeansOfType(AccessMapper.class).forEach((name, bean) -> {
AccessMapFor accessMapFor = ctx.findAnnotationOnBean(name, AccessMapFor.class);
if (accessMapFor != null) {
accessPolicyConfMappers.put(accessMapFor.accessPolicyConfClass().getName(), bean);
}
});
Map<String, AttrReleaseMapper> attrReleasePolicyConfMappers = new HashMap<>();
ctx.getBeansOfType(AttrReleaseMapper.class).forEach((name, bean) -> {
AttrReleaseMapFor attrReleaseMapFor = ctx.findAnnotationOnBean(name, AttrReleaseMapFor.class);
if (attrReleaseMapFor != null) {
attrReleasePolicyConfMappers.put(attrReleaseMapFor.attrReleasePolicyConfClass().getName(), bean);
}
});
Map<String, ClientAppMapper> clientAppTOMappers = new HashMap<>();
ctx.getBeansOfType(ClientAppMapper.class).forEach((name, bean) -> {
ClientAppMapFor clientAppMapFor = ctx.findAnnotationOnBean(name, ClientAppMapFor.class);
if (clientAppMapFor != null) {
clientAppTOMappers.put(clientAppMapFor.clientAppClass().getName(), bean);
}
});
return new RegisteredServiceMapper(
authPolicyConfMappers,
accessPolicyConfMappers,
attrReleasePolicyConfMappers,
clientAppTOMappers);
}
@Autowired
@Bean
public ServiceRegistryExecutionPlanConfigurer syncopeServiceRegistryConfigurer(
final WARestClient restClient, final RegisteredServiceMapper registeredServiceMapper) {
SyncopeServiceRegistry registry = new SyncopeServiceRegistry(
restClient, registeredServiceMapper, applicationContext, serviceRegistryListeners);
return plan -> plan.registerServiceRegistry(registry);
}
@Autowired
@Bean
public SamlIdPMetadataGenerator samlIdPMetadataGenerator(final WARestClient restClient) {
SamlIdPMetadataGeneratorConfigurationContext context =
SamlIdPMetadataGeneratorConfigurationContext.builder().
samlIdPMetadataLocator(samlIdPMetadataLocator(restClient)).
samlIdPCertificateAndKeyWriter(samlSelfSignedCertificateWriter.getObject()).
resourceLoader(resourceLoader).
casProperties(casProperties).
metadataCipherExecutor(CipherExecutor.noOpOfStringToString()).
build();
return new RestfulSamlIdPMetadataGenerator(context, restClient);
}
@Autowired
@Bean
public SamlIdPMetadataLocator samlIdPMetadataLocator(final WARestClient restClient) {
return new RestfulSamlIdPMetadataLocator(CipherExecutor.noOpOfStringToString(), restClient);
}
@Bean
@Autowired
public AuditTrailExecutionPlanConfigurer auditConfigurer(final WARestClient restClient) {
return plan -> plan.registerAuditTrailManager(new SyncopeWAAuditTrailManager(restClient));
}
@Bean
public KeymasterStart keymasterStart() {
return new KeymasterStart(NetworkService.Type.WA);
}
@Bean
public KeymasterStop keymasterStop() {
return new KeymasterStop(NetworkService.Type.WA);
}
}