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;
}
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;
}
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;
}
Aggregations