Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
pl.edu.icm.unity.engine.idp.IdPEngineImplBase Maven / Gradle / Ivy
/*
* Copyright (c) 2014 ICM Uniwersytet Warszawski All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package pl.edu.icm.unity.engine.idp;
import eu.unicore.samly2.exceptions.SAMLRequesterException;
import org.apache.logging.log4j.Logger;
import pl.edu.icm.unity.base.utils.Log;
import pl.edu.icm.unity.engine.api.AttributesManagement;
import pl.edu.icm.unity.engine.api.EntityManagement;
import pl.edu.icm.unity.engine.api.GroupsManagement;
import pl.edu.icm.unity.engine.api.authn.AuthenticationResult.Status;
import pl.edu.icm.unity.engine.api.idp.*;
import pl.edu.icm.unity.engine.api.translation.out.TranslationInput;
import pl.edu.icm.unity.engine.api.translation.out.TranslationResult;
import pl.edu.icm.unity.engine.api.userimport.UserImportSerivce;
import pl.edu.icm.unity.engine.api.userimport.UserImportSerivce.ImportResult;
import pl.edu.icm.unity.engine.api.userimport.UserImportSpec;
import pl.edu.icm.unity.exceptions.EngineException;
import pl.edu.icm.unity.types.basic.*;
import pl.edu.icm.unity.types.translation.TranslationProfile;
import java.util.*;
import java.util.stream.Collectors;
/**
* IdP engine is responsible for performing common IdP-related functionality. It resolves the information
* about the user being queried, applies translation profile on the data and exposes it to the endpoint
* requiring the data.
*
* @author K. Benedyczak
*/
class IdPEngineImplBase implements IdPEngine
{
private static final Logger log = Log.getLogger(Log.U_SERVER_CORE, IdPEngineImplBase.class);
private AttributesManagement attributesMan;
private EntityManagement identitiesMan;
private UserImportSerivce userImportService;
private OutputProfileExecutor outputProfileExecutor;
private AttributesManagement alwaysInsecureAttributesMan;
private GroupsManagement groupManagement;
IdPEngineImplBase(AttributesManagement attributesMan,
AttributesManagement alwaysInsecureAttributesMan,
EntityManagement identitiesMan,
UserImportSerivce userImportService,
OutputProfileExecutor outputProfileExecutor,
GroupsManagement groupManagement)
{
this.attributesMan = attributesMan;
this.identitiesMan = identitiesMan;
this.userImportService = userImportService;
this.outputProfileExecutor = outputProfileExecutor;
this.alwaysInsecureAttributesMan = alwaysInsecureAttributesMan;
this.groupManagement = groupManagement;
}
@Override
public TranslationResult obtainUserInformationWithEnrichingImport(EntityParam entity,
String group, TranslationProfile profile, String requester,
Optional requesterEntity, String protocol,
String protocolSubType, boolean allowIdentityCreate,
UserImportConfigs userImportConfigs) throws EngineException
{
Entity fullEntity = identitiesMan.getEntity(entity, requester, allowIdentityCreate, group);
Map firstIdentitiesByType = new HashMap<>();
fullEntity.getIdentities().forEach(id -> {
if (!firstIdentitiesByType.containsKey(id.getTypeId()))
firstIdentitiesByType.put(id.getTypeId(), id.getValue());
});
List userImports = UserImportHelper.getUserImports(
userImportConfigs.configs, firstIdentitiesByType);
List importResult = userImportService.importToExistingUser(
userImports, getRegularIdentity(fullEntity.getIdentities()));
if (!importResult.isEmpty())
fullEntity = identitiesMan.getEntity(entity, requester, allowIdentityCreate, group);
return obtainUserInformationPostImport(entity, fullEntity, group, profile,
requester, requesterEntity, protocol, protocolSubType,
assembleImportStatus(importResult));
}
private Identity getRegularIdentity(List identities)
{
Optional nonTargetedIdentity = identities.stream()
.filter(id -> id.getTarget() == null).findAny();
Identity ret = nonTargetedIdentity.orElse(identities.get(0));
log.debug("Using {} identity to require match in importer's input profile", ret);
return ret;
}
@Override
public TranslationResult obtainUserInformationWithEarlyImport(IdentityTaV identity, String group, TranslationProfile profile,
String requester, Optional requesterEntity,
String protocol, String protocolSubType, boolean allowIdentityCreate,
UserImportConfigs config)
throws EngineException
{
List userImports = UserImportHelper.getUserImportsLegacy(
config, identity.getValue(), identity.getTypeId());
List importResult = userImportService.importUser(userImports);
EntityParam entity = new EntityParam(identity);
Entity fullEntity = identitiesMan.getEntity(entity, requester, allowIdentityCreate, group);
return obtainUserInformationPostImport(entity, fullEntity, group, profile,
requester, requesterEntity, protocol, protocolSubType,
assembleImportStatus(importResult));
}
private TranslationResult obtainUserInformationPostImport(EntityParam entity, Entity fullEntity,
String group, TranslationProfile profile,
String requester, Optional requesterEntity,
String protocol, String protocolSubType,
Map importStatus) throws EngineException
{
Set allGroups = identitiesMan.getGroups(entity).keySet();
List resolvedGroups = groupManagement.getGroupsByWildcard("/**").stream()
.filter(grp -> allGroups.contains(grp.getName()))
.collect(Collectors.toList());
Collection allAttributes = attributesMan.getAttributes(
entity, group, null);
if (log.isTraceEnabled())
log.trace("Attributes to be returned (before postprocessing): " +
allAttributes + "\nGroups: " + allGroups + "\nIdentities: " +
fullEntity.getIdentities());
Collection requesterAttributes = requesterEntity.isPresent() ?
alwaysInsecureAttributesMan.getAttributes(requesterEntity.get().entityParam,
requesterEntity.get().group, null) :
Collections.emptyList();
TranslationInput input = new TranslationInput(allAttributes, fullEntity, group, resolvedGroups,
requester, requesterAttributes, protocol, protocolSubType, importStatus);
return outputProfileExecutor.execute(profile, input);
}
private Map assembleImportStatus(List results)
{
return results.stream().collect(
Collectors.toMap(r -> r.importerKey,
r -> r.authenticationResult.getStatus()));
}
/**
* Returns an {@link IdentityParam} out of valid identities which is either equal to the provided selected
* identity or the first one. This method properly compares the identity values.
* @param userInfo
* @param validIdentities
* @param selectedIdentity
* @return
* @throws EngineException
* @throws SAMLRequesterException
*/
@Override
public IdentityParam getIdentity(List validIdentities, String selectedIdentity)
throws EngineException, SAMLRequesterException
{
if (validIdentities.size() > 0)
{
for (IdentityParam id: validIdentities)
{
if (id instanceof Identity)
{
if (((Identity)id).getComparableValue().equals(selectedIdentity))
{
return id;
}
} else
{
if (id.getValue().equals(selectedIdentity))
return id;
}
}
}
return validIdentities.get(0);
}
}