use of org.apache.syncope.ext.scimv2.api.data.Group in project syncope by apache.
the class SCIMITCase method list.
@Test
public void list() throws IOException {
assumeTrue(SCIMDetector.isSCIMAvailable(webClient()));
Response response = webClient().path("Groups").query("count", 1100000).get();
assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
SCIMError error = response.readEntity(SCIMError.class);
assertEquals(ErrorType.tooMany, error.getScimType());
response = webClient().path("Groups").query("sortBy", "displayName").query("count", 11).get();
assertEquals(Response.Status.OK.getStatusCode(), response.getStatus());
assertEquals(SCIMConstants.APPLICATION_SCIM_JSON, StringUtils.substringBefore(response.getHeaderString(HttpHeaders.CONTENT_TYPE), ";"));
ListResponse<SCIMGroup> result = response.readEntity(new GenericType<ListResponse<SCIMGroup>>() {
});
assertNotNull(result);
assertTrue(result.getTotalResults() > 0);
assertEquals(11, result.getItemsPerPage());
assertFalse(result.getResources().isEmpty());
result.getResources().forEach(group -> {
assertNotNull(group.getId());
assertNotNull(group.getDisplayName());
});
}
use of org.apache.syncope.ext.scimv2.api.data.Group 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.ext.scimv2.api.data.Group in project syncope by apache.
the class SCIMLogic method resourceTypes.
@PreAuthorize("isAuthenticated()")
public List<ResourceType> resourceTypes(final UriBuilder uriBuilder) {
synchronized (MONITOR) {
if (USER == null) {
USER = new ResourceType("User", "User", "/Users", "User Account", Resource.User.schema(), new Meta(Resource.ResourceType, null, null, null, uriBuilder.path("User").build().toASCIIString()));
USER.getSchemaExtensions().add(new SchemaExtension(Resource.EnterpriseUser.schema(), true));
}
if (GROUP == null) {
GROUP = new ResourceType("Group", "Group", "/Groups", "Group", Resource.Group.schema(), new Meta(Resource.ResourceType, null, null, null, uriBuilder.path("Group").build().toASCIIString()));
}
}
return Arrays.asList(USER, GROUP);
}
use of org.apache.syncope.ext.scimv2.api.data.Group in project syncope by apache.
the class SCIMITCase method createGroup.
@Test
public void createGroup() {
assumeTrue(SCIMDetector.isSCIMAvailable(webClient()));
String displayName = UUID.randomUUID().toString();
SCIMGroup group = new SCIMGroup(null, null, displayName);
group.getMembers().add(new Member("1417acbe-cbf6-4277-9372-e75e04f97000", null, null));
assertNull(group.getId());
assertEquals(displayName, group.getDisplayName());
Response response = webClient().path("Groups").post(group);
assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus());
group = response.readEntity(SCIMGroup.class);
assertNotNull(group.getId());
assertTrue(response.getLocation().toASCIIString().endsWith(group.getId()));
assertEquals(1, group.getMembers().size());
assertEquals("1417acbe-cbf6-4277-9372-e75e04f97000", group.getMembers().get(0).getValue());
response = webClient().path("Users").path("1417acbe-cbf6-4277-9372-e75e04f97000").get();
assertEquals(Response.Status.OK.getStatusCode(), response.getStatus());
SCIMUser user = response.readEntity(SCIMUser.class);
assertEquals("1417acbe-cbf6-4277-9372-e75e04f97000", user.getId());
response = webClient().path("Groups").post(group);
assertEquals(Response.Status.CONFLICT.getStatusCode(), response.getStatus());
SCIMError error = response.readEntity(SCIMError.class);
assertEquals(Response.Status.CONFLICT.getStatusCode(), error.getStatus());
assertEquals(ErrorType.uniqueness, error.getScimType());
}
use of org.apache.syncope.ext.scimv2.api.data.Group in project syncope by apache.
the class SCIMITCase method deleteGroup.
@Test
public void deleteGroup() {
assumeTrue(SCIMDetector.isSCIMAvailable(webClient()));
SCIMGroup group = new SCIMGroup(null, null, UUID.randomUUID().toString());
Response response = webClient().path("Groups").post(group);
assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus());
group = response.readEntity(SCIMGroup.class);
assertNotNull(group.getId());
response = webClient().path("Groups").path(group.getId()).get();
assertEquals(Response.Status.OK.getStatusCode(), response.getStatus());
response = webClient().path("Groups").path(group.getId()).delete();
assertEquals(Response.Status.NO_CONTENT.getStatusCode(), response.getStatus());
response = webClient().path("Groups").path(group.getId()).get();
assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus());
}
Aggregations