use of eu.bcvsolutions.idm.ic.api.IcAttributeInfo in project CzechIdMng by bcvsolutions.
the class DefaultSysSystemService method generateSchema.
@Override
@Transactional
public List<SysSchemaObjectClassDto> generateSchema(SysSystemDto system) {
Assert.notNull(system, "System is required.");
Assert.notNull(system.getId(), "System identifier is required.");
// Find connector identification persisted in system
IcConnectorKey connectorKey = system.getConnectorKey();
if (connectorKey == null) {
throw new ResultCodeException(AccResultCode.CONNECTOR_KEY_FOR_SYSTEM_NOT_FOUND, ImmutableMap.of("system", system.getName()));
}
// Find connector configuration persisted in system
IcConnectorConfiguration connectorConfig = getConnectorConfiguration(system);
if (connectorConfig == null) {
throw new ResultCodeException(AccResultCode.CONNECTOR_CONFIGURATION_FOR_SYSTEM_NOT_FOUND, ImmutableMap.of("system", system.getName()));
}
// Call IC module and find schema for given connector key and
// configuration
IcSchema icSchema = null;
try {
icSchema = icConfigurationFacade.getSchema(getConnectorInstance(system), connectorConfig);
} catch (Exception ex) {
throw new ResultCodeException(AccResultCode.CONNECTOR_SCHEMA_GENERATION_EXCEPTION, ImmutableMap.of("system", system.getName(), "exception", ex.getLocalizedMessage()), ex);
}
if (icSchema == null) {
throw new ResultCodeException(AccResultCode.CONNECTOR_SCHEMA_FOR_SYSTEM_NOT_FOUND, ImmutableMap.of("system", system.getName()));
}
// Load existing object class from system
SysSchemaObjectClassFilter objectClassFilter = new SysSchemaObjectClassFilter();
objectClassFilter.setSystemId(system.getId());
List<SysSchemaObjectClassDto> sysObjectClassesInSystem = null;
Page<SysSchemaObjectClassDto> page = objectClassService.find(objectClassFilter, null);
sysObjectClassesInSystem = page.getContent();
// Convert IC schema to ACC entities
List<IcObjectClassInfo> declaredObjectClasses = icSchema.getDeclaredObjectClasses();
List<SysSchemaObjectClassDto> sysObjectClasses = new ArrayList<>(declaredObjectClasses.size());
List<SysSchemaAttributeDto> sysAttributes = new ArrayList<>();
for (IcObjectClassInfo objectClass : declaredObjectClasses) {
// __ACCOUNT__ and __GROUP__
if (!(objectClass.getType().startsWith("__") && objectClass.getType().endsWith("__"))) {
continue;
}
SysSchemaObjectClassDto sysObjectClass = null;
// values from resource
if (sysObjectClassesInSystem != null) {
Optional<SysSchemaObjectClassDto> objectClassSame = sysObjectClassesInSystem.stream().filter(objectClassInSystem -> {
//
return objectClassInSystem.getObjectClassName().equals(objectClass.getType());
}).findFirst();
if (objectClassSame.isPresent()) {
sysObjectClass = objectClassSame.get();
}
}
// Convert IC object class to ACC (if is null, then will be created
// new instance)
sysObjectClass = convertIcObjectClassInfo(objectClass, sysObjectClass);
sysObjectClass.setSystem(system.getId());
// object class may not exist
sysObjectClass = schemaObjectClassService.save(sysObjectClass);
sysObjectClasses.add(sysObjectClass);
List<SysSchemaAttributeDto> attributesInSystem = null;
// Load existing attributes for existing object class in system
if (sysObjectClass.getId() != null) {
SysSchemaAttributeFilter attFilter = new SysSchemaAttributeFilter();
attFilter.setSystemId(system.getId());
attFilter.setObjectClassId(sysObjectClass.getId());
Page<SysSchemaAttributeDto> attributesInSystemPage = attributeService.find(attFilter, null);
attributesInSystem = attributesInSystemPage.getContent();
}
for (IcAttributeInfo attribute : objectClass.getAttributeInfos()) {
// If will be IC and ACC attribute same (same name), then we
// will do only refresh object values from resource
SysSchemaAttributeDto sysAttribute = null;
if (attributesInSystem != null) {
Optional<SysSchemaAttributeDto> sysAttributeOptional = attributesInSystem.stream().filter(a -> {
return a.getName().equals(attribute.getName());
}).findFirst();
if (sysAttributeOptional.isPresent()) {
sysAttribute = sysAttributeOptional.get();
}
}
sysAttribute = convertIcAttributeInfo(attribute, sysAttribute);
sysAttribute.setObjectClass(sysObjectClass.getId());
sysAttributes.add(sysAttribute);
}
}
// Persist generated schema to system
sysObjectClasses = (List<SysSchemaObjectClassDto>) objectClassService.saveAll(sysObjectClasses);
attributeService.saveAll(sysAttributes);
return sysObjectClasses;
}
use of eu.bcvsolutions.idm.ic.api.IcAttributeInfo in project CzechIdMng by bcvsolutions.
the class BasicVirtualConnector method generateSchema.
/**
* Generate schema from connector configuration and form definition
*
* @return
*/
private IcSchemaImpl generateSchema() {
IcSchemaImpl schema = new IcSchemaImpl();
List<IcObjectClassInfo> objectClasses = schema.getDeclaredObjectClasses();
IcObjectClassInfoImpl objectClass = new IcObjectClassInfoImpl();
objectClass.setType(IcObjectClassInfo.ACCOUNT);
List<IcAttributeInfo> attributes = objectClass.getAttributeInfos();
// Create UID schema attribute
IcAttributeInfoImpl attributeUid = new IcAttributeInfoImpl();
attributeUid.setClassType(String.class.getName());
attributeUid.setCreateable(true);
attributeUid.setMultivalued(false);
attributeUid.setName(IcAttributeInfo.NAME);
attributeUid.setNativeName(VsAccount_.uid.getName());
attributeUid.setReadable(true);
attributeUid.setRequired(true);
attributeUid.setReturnedByDefault(true);
attributeUid.setUpdateable(true);
attributes.add(attributeUid);
// Create ENABLE schema attribute
if (this.virtualConfiguration.isDisableSupported()) {
IcAttributeInfoImpl attributeDisabled = new IcAttributeInfoImpl();
attributeDisabled.setClassType(Boolean.class.getName());
attributeDisabled.setCreateable(true);
attributeDisabled.setMultivalued(false);
attributeDisabled.setName(IcAttributeInfo.ENABLE);
attributeDisabled.setNativeName(VsAccount_.enable.getName());
attributeDisabled.setReadable(true);
attributeDisabled.setRequired(false);
attributeDisabled.setReturnedByDefault(true);
attributeDisabled.setUpdateable(true);
attributes.add(attributeDisabled);
}
// Attributes from definition and configuration
Arrays.asList(virtualConfiguration.getAttributes()).forEach(virtualAttirbute -> {
IdmFormAttributeDto formAttribute = formAttributeService.findAttribute(VsAccount.class.getName(), formDefinition.getCode(), virtualAttirbute);
if (formAttribute == null) {
return;
}
IcAttributeInfoImpl attribute = new IcAttributeInfoImpl();
String classType = this.convertToSchemaClassType(formAttribute.getPersistentType());
attribute.setClassType(classType);
attribute.setCreateable(!formAttribute.isReadonly());
attribute.setMultivalued(formAttribute.isMultiple());
attribute.setName(virtualAttirbute);
attribute.setNativeName(virtualAttirbute);
attribute.setReadable(true);
attribute.setRequired(formAttribute.isRequired());
attribute.setReturnedByDefault(true);
attribute.setUpdateable(!formAttribute.isReadonly());
attributes.add(attribute);
});
objectClasses.add(objectClass);
return schema;
}
Aggregations