Search in sources :

Example 1 with SCIMUserAddressConf

use of org.apache.syncope.common.lib.scim.SCIMUserAddressConf in project syncope by apache.

the class SCIMDataBinder method toUserTO.

public UserTO toUserTO(final SCIMUser user) {
    if (!USER_SCHEMAS.equals(user.getSchemas()) && !ENTERPRISE_USER_SCHEMAS.equals(user.getSchemas())) {
        throw new BadRequestException(ErrorType.invalidValue);
    }
    UserTO userTO = new UserTO();
    userTO.setRealm(SyncopeConstants.ROOT_REALM);
    userTO.setKey(user.getId());
    userTO.setPassword(user.getPassword());
    userTO.setUsername(user.getUserName());
    SCIMConf conf = confManager.get();
    if (conf.getUserConf() != null) {
        if (conf.getUserConf().getName() != null && user.getName() != null) {
            if (conf.getUserConf().getName().getFamilyName() != null && user.getName().getFamilyName() != null) {
                userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getName().getFamilyName()).value(user.getName().getFamilyName()).build());
            }
            if (conf.getUserConf().getName().getFormatted() != null && user.getName().getFormatted() != null) {
                userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getName().getFormatted()).value(user.getName().getFormatted()).build());
            }
            if (conf.getUserConf().getName().getGivenName() != null && user.getName().getGivenName() != null) {
                userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getName().getGivenName()).value(user.getName().getGivenName()).build());
            }
            if (conf.getUserConf().getName().getHonorificPrefix() != null && user.getName().getHonorificPrefix() != null) {
                userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getName().getHonorificPrefix()).value(user.getName().getHonorificPrefix()).build());
            }
            if (conf.getUserConf().getName().getHonorificSuffix() != null && user.getName().getHonorificSuffix() != null) {
                userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getName().getHonorificSuffix()).value(user.getName().getHonorificSuffix()).build());
            }
            if (conf.getUserConf().getName().getMiddleName() != null && user.getName().getMiddleName() != null) {
                userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getName().getMiddleName()).value(user.getName().getMiddleName()).build());
            }
        }
        if (conf.getUserConf().getDisplayName() != null && user.getDisplayName() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getDisplayName()).value(user.getDisplayName()).build());
        }
        if (conf.getUserConf().getNickName() != null && user.getNickName() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getNickName()).value(user.getNickName()).build());
        }
        if (conf.getUserConf().getProfileUrl() != null && user.getProfileUrl() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getProfileUrl()).value(user.getProfileUrl()).build());
        }
        if (conf.getUserConf().getTitle() != null && user.getTitle() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getTitle()).value(user.getTitle()).build());
        }
        if (conf.getUserConf().getUserType() != null && user.getUserType() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getUserType()).value(user.getUserType()).build());
        }
        if (conf.getUserConf().getPreferredLanguage() != null && user.getPreferredLanguage() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getPreferredLanguage()).value(user.getPreferredLanguage()).build());
        }
        if (conf.getUserConf().getLocale() != null && user.getLocale() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getLocale()).value(user.getLocale()).build());
        }
        if (conf.getUserConf().getTimezone() != null && user.getTimezone() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getTimezone()).value(user.getTimezone()).build());
        }
        fill(userTO.getPlainAttrs(), conf.getUserConf().getEmails(), user.getEmails());
        fill(userTO.getPlainAttrs(), conf.getUserConf().getPhoneNumbers(), user.getPhoneNumbers());
        fill(userTO.getPlainAttrs(), conf.getUserConf().getIms(), user.getIms());
        fill(userTO.getPlainAttrs(), conf.getUserConf().getPhotos(), user.getPhotos());
        user.getAddresses().stream().filter(address -> address.getType() != null).forEach(address -> {
            Optional<SCIMUserAddressConf> addressConf = conf.getUserConf().getAddresses().stream().filter(object -> address.getType().equals(object.getType().name())).findFirst();
            if (addressConf.isPresent()) {
                if (addressConf.get().getFormatted() != null && address.getFormatted() != null) {
                    userTO.getPlainAttrs().add(new AttrTO.Builder().schema(addressConf.get().getFormatted()).value(address.getFormatted()).build());
                }
                if (addressConf.get().getStreetAddress() != null && address.getStreetAddress() != null) {
                    userTO.getPlainAttrs().add(new AttrTO.Builder().schema(addressConf.get().getStreetAddress()).value(address.getStreetAddress()).build());
                }
                if (addressConf.get().getLocality() != null && address.getLocality() != null) {
                    userTO.getPlainAttrs().add(new AttrTO.Builder().schema(addressConf.get().getLocality()).value(address.getLocality()).build());
                }
                if (addressConf.get().getRegion() != null && address.getFormatted() != null) {
                    userTO.getPlainAttrs().add(new AttrTO.Builder().schema(addressConf.get().getFormatted()).value(address.getFormatted()).build());
                }
                if (addressConf.get().getPostalCode() != null && address.getPostalCode() != null) {
                    userTO.getPlainAttrs().add(new AttrTO.Builder().schema(addressConf.get().getPostalCode()).value(address.getPostalCode()).build());
                }
                if (addressConf.get().getCountry() != null && address.getCountry() != null) {
                    userTO.getPlainAttrs().add(new AttrTO.Builder().schema(addressConf.get().getCountry()).value(address.getCountry()).build());
                }
            }
        });
        for (int i = 0; i < user.getX509Certificates().size(); i++) {
            Value certificate = user.getX509Certificates().get(i);
            if (conf.getUserConf().getX509Certificates().size() > i) {
                userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getUserConf().getX509Certificates().get(i)).value(certificate.getValue()).build());
            }
        }
    }
    if (conf.getEnterpriseUserConf() != null) {
        if (conf.getEnterpriseUserConf().getEmployeeNumber() != null && user.getEnterpriseInfo().getEmployeeNumber() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getEnterpriseUserConf().getEmployeeNumber()).value(user.getEnterpriseInfo().getEmployeeNumber()).build());
        }
        if (conf.getEnterpriseUserConf().getCostCenter() != null && user.getEnterpriseInfo().getCostCenter() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getEnterpriseUserConf().getCostCenter()).value(user.getEnterpriseInfo().getCostCenter()).build());
        }
        if (conf.getEnterpriseUserConf().getOrganization() != null && user.getEnterpriseInfo().getOrganization() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getEnterpriseUserConf().getOrganization()).value(user.getEnterpriseInfo().getOrganization()).build());
        }
        if (conf.getEnterpriseUserConf().getDivision() != null && user.getEnterpriseInfo().getDivision() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getEnterpriseUserConf().getDivision()).value(user.getEnterpriseInfo().getDivision()).build());
        }
        if (conf.getEnterpriseUserConf().getDepartment() != null && user.getEnterpriseInfo().getDepartment() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getEnterpriseUserConf().getDepartment()).value(user.getEnterpriseInfo().getDepartment()).build());
        }
        if (conf.getEnterpriseUserConf().getManager() != null && conf.getEnterpriseUserConf().getManager().getKey() != null && user.getEnterpriseInfo().getManager() != null && user.getEnterpriseInfo().getManager().getValue() != null) {
            userTO.getPlainAttrs().add(new AttrTO.Builder().schema(conf.getEnterpriseUserConf().getManager().getKey()).value(user.getEnterpriseInfo().getManager().getValue()).build());
        }
    }
    user.getGroups().forEach(group -> {
        userTO.getMemberships().add(new MembershipTO.Builder().group(group.getValue()).build());
    });
    user.getRoles().forEach(role -> {
        userTO.getRoles().add(role.getValue());
    });
    return userTO;
}
Also used : Arrays(java.util.Arrays) BadRequestException(org.apache.syncope.ext.scimv2.api.BadRequestException) Group(org.apache.syncope.ext.scimv2.api.data.Group) AttrTO(org.apache.syncope.common.lib.to.AttrTO) EntityTOUtils(org.apache.syncope.common.lib.EntityTOUtils) SCIMUserAddressConf(org.apache.syncope.common.lib.scim.SCIMUserAddressConf) ErrorType(org.apache.syncope.ext.scimv2.api.type.ErrorType) LoggerFactory(org.slf4j.LoggerFactory) OrderByClause(org.apache.syncope.core.persistence.api.dao.search.OrderByClause) SCIMUserAddress(org.apache.syncope.ext.scimv2.api.data.SCIMUserAddress) Autowired(org.springframework.beans.factory.annotation.Autowired) HashMap(java.util.HashMap) StringUtils(org.apache.commons.lang3.StringUtils) ArrayList(java.util.ArrayList) Map(java.util.Map) SCIMUserManager(org.apache.syncope.ext.scimv2.api.data.SCIMUserManager) MembershipTO(org.apache.syncope.common.lib.to.MembershipTO) SCIMComplexValue(org.apache.syncope.ext.scimv2.api.data.SCIMComplexValue) SyncopeConstants(org.apache.syncope.common.lib.SyncopeConstants) SCIMGroup(org.apache.syncope.ext.scimv2.api.data.SCIMGroup) Logger(org.slf4j.Logger) SearchCond(org.apache.syncope.core.persistence.api.dao.search.SearchCond) Value(org.apache.syncope.ext.scimv2.api.data.Value) SCIMUserName(org.apache.syncope.ext.scimv2.api.data.SCIMUserName) SCIMEnterpriseInfo(org.apache.syncope.ext.scimv2.api.data.SCIMEnterpriseInfo) Set(java.util.Set) GroupTO(org.apache.syncope.common.lib.to.GroupTO) AuthDataAccessor(org.apache.syncope.core.spring.security.AuthDataAccessor) Function(org.apache.syncope.ext.scimv2.api.type.Function) SCIMUser(org.apache.syncope.ext.scimv2.api.data.SCIMUser) List(java.util.List) Meta(org.apache.syncope.ext.scimv2.api.data.Meta) Component(org.springframework.stereotype.Component) Resource(org.apache.syncope.ext.scimv2.api.type.Resource) SCIMComplexConf(org.apache.syncope.common.lib.scim.SCIMComplexConf) SCIMConf(org.apache.syncope.common.lib.scim.SCIMConf) AnyDAO(org.apache.syncope.core.persistence.api.dao.AnyDAO) SCIMConfManager(org.apache.syncope.core.logic.scim.SCIMConfManager) Member(org.apache.syncope.ext.scimv2.api.data.Member) Optional(java.util.Optional) UserTO(org.apache.syncope.common.lib.to.UserTO) MembershipCond(org.apache.syncope.core.persistence.api.dao.search.MembershipCond) Collections(java.util.Collections) UserTO(org.apache.syncope.common.lib.to.UserTO) SCIMUserAddressConf(org.apache.syncope.common.lib.scim.SCIMUserAddressConf) MembershipTO(org.apache.syncope.common.lib.to.MembershipTO) SCIMComplexValue(org.apache.syncope.ext.scimv2.api.data.SCIMComplexValue) Value(org.apache.syncope.ext.scimv2.api.data.Value) BadRequestException(org.apache.syncope.ext.scimv2.api.BadRequestException) SCIMConf(org.apache.syncope.common.lib.scim.SCIMConf)

Example 2 with SCIMUserAddressConf

use of org.apache.syncope.common.lib.scim.SCIMUserAddressConf in project syncope by apache.

the class SearchCondVisitor method addresses.

private SearchCond addresses(final String operator, final String left, final String right, final List<SCIMUserAddressConf> items) {
    if (left.endsWith(".type") && "eq".equals(operator)) {
        Optional<SCIMUserAddressConf> item = items.stream().filter(object -> object.getType().name().equals(StringUtils.strip(right, "\""))).findFirst();
        if (item.isPresent()) {
            AttributeCond attributeCond = new AttributeCond();
            attributeCond.setSchema(item.get().getFormatted());
            attributeCond.setType(AttributeCond.Type.ISNOTNULL);
            return SearchCond.getLeafCond(attributeCond);
        }
    } else if (!conf.getUserConf().getEmails().isEmpty() && (MULTIVALUE.contains(left) || left.endsWith(".value"))) {
        List<SearchCond> orConds = new ArrayList<>();
        items.forEach(item -> {
            AttributeCond cond = new AttributeCond();
            cond.setSchema(item.getFormatted());
            cond.setExpression(StringUtils.strip(right, "\""));
            orConds.add(setOperator(cond, operator));
        });
        if (!orConds.isEmpty()) {
            return SearchCond.getOrCond(orConds);
        }
    }
    return null;
}
Also used : Arrays(java.util.Arrays) SCIMUserConf(org.apache.syncope.common.lib.scim.SCIMUserConf) SearchCond(org.apache.syncope.core.persistence.api.dao.search.SearchCond) SCIMUserAddressConf(org.apache.syncope.common.lib.scim.SCIMUserAddressConf) StringUtils(org.apache.commons.lang3.StringUtils) ArrayList(java.util.ArrayList) List(java.util.List) AttributeCond(org.apache.syncope.core.persistence.api.dao.search.AttributeCond) Resource(org.apache.syncope.ext.scimv2.api.type.Resource) SCIMComplexConf(org.apache.syncope.common.lib.scim.SCIMComplexConf) SCIMConf(org.apache.syncope.common.lib.scim.SCIMConf) Map(java.util.Map) Optional(java.util.Optional) AnyCond(org.apache.syncope.core.persistence.api.dao.search.AnyCond) SCIMUserAddressConf(org.apache.syncope.common.lib.scim.SCIMUserAddressConf) AttributeCond(org.apache.syncope.core.persistence.api.dao.search.AttributeCond) ArrayList(java.util.ArrayList) List(java.util.List)

Example 3 with SCIMUserAddressConf

use of org.apache.syncope.common.lib.scim.SCIMUserAddressConf in project syncope by apache.

the class SearchCondVisitor method createAttributeCond.

public AttributeCond createAttributeCond(final String schema) {
    AttributeCond attributeCond = null;
    if (schemaEquals(Resource.User, "userName", schema)) {
        attributeCond = new AnyCond();
        attributeCond.setSchema("username");
    } else if (resource == Resource.Group && schemaEquals(Resource.Group, "displayName", schema)) {
        attributeCond = new AnyCond();
        attributeCond.setSchema("name");
    } else if (schemaEquals(null, "meta.created", schema)) {
        attributeCond = new AnyCond();
        attributeCond.setSchema("creationDate");
    } else if (schemaEquals(null, "meta.lastModified", schema)) {
        attributeCond = new AnyCond();
        attributeCond.setSchema("lastChangeDate");
    }
    if (resource == Resource.User) {
        if (conf.getUserConf() != null) {
            if (conf.getUserConf().getName() != null) {
                for (Map.Entry<String, String> entry : conf.getUserConf().getName().asMap().entrySet()) {
                    if (schemaEquals(Resource.User, "name." + entry.getKey(), schema)) {
                        attributeCond = new AttributeCond();
                        attributeCond.setSchema(entry.getValue());
                    }
                }
            }
            for (Map.Entry<String, String> entry : conf.getUserConf().asMap().entrySet()) {
                if (schemaEquals(Resource.User, entry.getKey(), schema)) {
                    attributeCond = new AttributeCond();
                    attributeCond.setSchema(entry.getValue());
                }
            }
            for (SCIMUserAddressConf address : conf.getUserConf().getAddresses()) {
                for (Map.Entry<String, String> entry : address.asMap().entrySet()) {
                    if (schemaEquals(Resource.User, "addresses." + entry.getKey(), schema)) {
                        attributeCond = new AttributeCond();
                        attributeCond.setSchema(entry.getValue());
                    }
                }
            }
        }
        if (conf.getEnterpriseUserConf() != null) {
            for (Map.Entry<String, String> entry : conf.getEnterpriseUserConf().asMap().entrySet()) {
                if (schemaEquals(Resource.EnterpriseUser, entry.getKey(), schema)) {
                    attributeCond = new AttributeCond();
                    attributeCond.setSchema(entry.getValue());
                }
            }
            if (conf.getEnterpriseUserConf().getManager() != null && conf.getEnterpriseUserConf().getManager().getKey() != null) {
                attributeCond = new AttributeCond();
                attributeCond.setSchema(conf.getEnterpriseUserConf().getManager().getKey());
            }
        }
    }
    if (attributeCond == null) {
        throw new IllegalArgumentException("Could not match " + schema + " for " + resource);
    }
    return attributeCond;
}
Also used : AttributeCond(org.apache.syncope.core.persistence.api.dao.search.AttributeCond) SCIMUserAddressConf(org.apache.syncope.common.lib.scim.SCIMUserAddressConf) AnyCond(org.apache.syncope.core.persistence.api.dao.search.AnyCond) Map(java.util.Map)

Aggregations

Map (java.util.Map)3 SCIMUserAddressConf (org.apache.syncope.common.lib.scim.SCIMUserAddressConf)3 ArrayList (java.util.ArrayList)2 Arrays (java.util.Arrays)2 List (java.util.List)2 Optional (java.util.Optional)2 StringUtils (org.apache.commons.lang3.StringUtils)2 SCIMComplexConf (org.apache.syncope.common.lib.scim.SCIMComplexConf)2 SCIMConf (org.apache.syncope.common.lib.scim.SCIMConf)2 AnyCond (org.apache.syncope.core.persistence.api.dao.search.AnyCond)2 AttributeCond (org.apache.syncope.core.persistence.api.dao.search.AttributeCond)2 SearchCond (org.apache.syncope.core.persistence.api.dao.search.SearchCond)2 Resource (org.apache.syncope.ext.scimv2.api.type.Resource)2 Collections (java.util.Collections)1 HashMap (java.util.HashMap)1 Set (java.util.Set)1 EntityTOUtils (org.apache.syncope.common.lib.EntityTOUtils)1 SyncopeConstants (org.apache.syncope.common.lib.SyncopeConstants)1 SCIMUserConf (org.apache.syncope.common.lib.scim.SCIMUserConf)1 AttrTO (org.apache.syncope.common.lib.to.AttrTO)1