blob: 7746a0dc6ae1f738958cfca5a0df70d6a8507802 [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.core.logic;
import org.apache.syncope.core.logic.init.OIDCC4UILoader;
import org.apache.syncope.core.logic.oidc.OIDCClientCache;
import org.apache.syncope.core.logic.oidc.OIDCUserManager;
import org.apache.syncope.core.persistence.api.dao.OIDCC4UIProviderDAO;
import org.apache.syncope.core.persistence.api.dao.UserDAO;
import org.apache.syncope.core.provisioning.api.IntAttrNameParser;
import org.apache.syncope.core.provisioning.api.UserProvisioningManager;
import org.apache.syncope.core.provisioning.api.data.AccessTokenDataBinder;
import org.apache.syncope.core.provisioning.api.data.OIDCC4UIProviderDataBinder;
import org.apache.syncope.core.provisioning.api.data.UserDataBinder;
import org.apache.syncope.core.provisioning.java.pushpull.InboundMatcher;
import org.apache.syncope.core.provisioning.java.utils.TemplateUtils;
import org.apache.syncope.core.spring.security.AuthDataAccessor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class OIDCC4UILogicContext {
@Autowired
private OIDCC4UIProviderDAO opDAO;
@ConditionalOnMissingBean
@Bean
public OIDCClientCache oidcClientCache() {
return new OIDCClientCache();
}
@ConditionalOnMissingBean
@Bean
public OIDCC4UILoader oidcc4UILoader() {
return new OIDCC4UILoader();
}
@ConditionalOnMissingBean
@Bean
@Autowired
public OIDCUserManager oidcUserManager(
final InboundMatcher inboundMatcher,
final UserDAO userDAO,
final IntAttrNameParser intAttrNameParser,
final TemplateUtils templateUtils,
final UserProvisioningManager provisioningManager,
final UserDataBinder binder) {
return new OIDCUserManager(
inboundMatcher,
userDAO,
intAttrNameParser,
templateUtils,
provisioningManager,
binder);
}
@ConditionalOnMissingBean
@Bean
@Autowired
public OIDCC4UILogic oidcc4UILogic(
final OIDCClientCache oidcClientCache,
final AuthDataAccessor authDataAccessor,
final AccessTokenDataBinder accessTokenDataBinder,
final OIDCUserManager userManager) {
return new OIDCC4UILogic(oidcClientCache, authDataAccessor, accessTokenDataBinder, opDAO, userManager);
}
@ConditionalOnMissingBean
@Bean
@Autowired
public OIDCC4UIProviderLogic oidcc4UIProviderLogic(
final OIDCClientCache oidcClientCache,
final OIDCC4UIProviderDataBinder binder) {
return new OIDCC4UIProviderLogic(oidcClientCache, opDAO, binder);
}
}