use of eu.bcvsolutions.idm.core.api.dto.IdmRequestItemDto in project CzechIdMng by bcvsolutions.
the class DefaultRequestManager method get.
private <R extends Requestable> R get(UUID requestId, R dto) {
Assert.notNull(dto, "DTO is required!");
Assert.notNull(requestId, "Request ID is required!");
// Exists item for same original owner?
IdmRequestItemDto item = this.findRequestItem(requestId, dto);
if (item == null || dto == null) {
return dto;
} else if (RequestOperationType.REMOVE == item.getOperation()) {
addRequestItemToDto(dto, item);
return dto;
}
try {
@SuppressWarnings("unchecked") R requestedDto = this.convertItemToDto(item, (Class<? extends R>) dto.getClass());
addRequestItemToDto((R) requestedDto, item);
this.addEmbedded((AbstractDto) requestedDto, requestId);
return (R) requestedDto;
} catch (IOException | ReflectiveOperationException | IllegalArgumentException | IntrospectionException e) {
throw new ResultCodeException(CoreResultCode.JSON_CANNOT_BE_CONVERT_TO_DTO, ImmutableMap.of("json", item.getData()), e);
}
}
use of eu.bcvsolutions.idm.core.api.dto.IdmRequestItemDto in project CzechIdMng by bcvsolutions.
the class DefaultRequestManager method onDeleteRequestable.
@Override
@Transactional
public <R extends Requestable> void onDeleteRequestable(R requestable) {
Assert.notNull(requestable, "Requestable DTO cannot be null!");
// Search requests with that deleting owner
IdmRequestFilter requestFilter = new IdmRequestFilter();
requestFilter.setOwnerType(requestable.getClass().getName());
requestFilter.setOwnerId((UUID) requestable.getId());
List<IdmRequestDto> requests = requestService.find(requestFilter, null).getContent();
//
requests.stream().filter(// We need filtered request which
request -> RequestState.APPROVED != request.getState()).forEach(request -> {
//
request = changeRequestState(//
requestable, //
request, new //
ResultCodeException(//
CoreResultCode.REQUEST_OWNER_WAS_DELETED, //
ImmutableMap.of("owner", requestable.toString())));
requestService.save(request);
});
// Search request items with that deleting owner
IdmRequestItemFilter requestItemFilter = new IdmRequestItemFilter();
requestItemFilter.setOwnerType(requestable.getClass().getName());
requestItemFilter.setOwnerId((UUID) requestable.getId());
List<IdmRequestItemDto> requestItems = requestItemService.find(requestItemFilter, null).getContent();
//
requestItems.stream().filter(// We need filtered request which invoked that
item -> RequestState.APPROVED != item.getState()).forEach(item -> {
//
item = changeItemState(//
requestable, //
item, new //
ResultCodeException(//
CoreResultCode.REQUEST_OWNER_WAS_DELETED, //
ImmutableMap.of("owner", requestable.toString())));
requestItemService.save(item);
IdmRequestItemFilter subItemFilter = new IdmRequestItemFilter();
subItemFilter.setRequestId(item.getRequest());
// Search all items for that request
List<IdmRequestItemDto> subItems = requestItemService.find(subItemFilter, null).getContent();
// TODO: This can be (maybe) removed ... because that 'cancel' is implemented
// during realization of item
// Check if items in same request does not contains same ID of deleting owner in
// the DATA Json.
// If yes, then state will be changed to cancel.
//
subItems.stream().filter(// We need filtered request
subItem -> RequestState.APPROVED != subItem.getState()).filter(//
subItem -> !requestable.getId().equals(subItem.getOwnerId())).filter(//
subItem -> subItem.getData() != null).filter(subItem -> //
subItem.getData().indexOf(requestable.getId().toString()) != //
-1).forEach(subItem -> {
//
subItem = changeItemState(//
requestable, //
subItem, new //
ResultCodeException(//
CoreResultCode.REQUEST_OWNER_FROM_OTHER_REQUEST_WAS_DELETED, ImmutableMap.of("owner", requestable.toString(), "otherRequest", //
subItem.toString())));
requestItemService.save(subItem);
});
});
//
}
use of eu.bcvsolutions.idm.core.api.dto.IdmRequestItemDto in project CzechIdMng by bcvsolutions.
the class DefaultIdmRequestService method toDto.
@Override
public IdmRequestDto toDto(IdmRequest entity, IdmRequestDto dto) {
IdmRequestDto requestDto = super.toDto(entity, dto);
// Load and add WF process DTO to embedded. Prevents of many requests from FE.
if (requestDto != null && requestDto.getWfProcessId() != null) {
if (RequestState.IN_PROGRESS == requestDto.getState()) {
// Instance of process should exists only in 'IN_PROGRESS' state
WorkflowProcessInstanceDto processInstanceDto = workflowProcessInstanceService.get(requestDto.getWfProcessId());
// size
if (processInstanceDto != null) {
processInstanceDto.setProcessVariables(null);
}
requestDto.getEmbedded().put(AbstractRequestDto.WF_PROCESS_FIELD, processInstanceDto);
} else {
// In others states we need load historic process
WorkflowHistoricProcessInstanceDto processHistDto = workflowHistoricProcessInstanceService.get(requestDto.getWfProcessId());
// size
if (processHistDto != null) {
processHistDto.setProcessVariables(null);
}
requestDto.getEmbedded().put(AbstractRequestDto.WF_PROCESS_FIELD, processHistDto);
}
}
// Load and add owner DTO to embedded. Prevents of many requests from FE.
if (requestDto != null && requestDto.getOwnerId() != null && requestDto.getOwnerType() != null) {
try {
@SuppressWarnings("unchecked") Requestable requestable = requestManager.get(requestDto.getId(), requestDto.getOwnerId(), (Class<Requestable>) Class.forName(requestDto.getOwnerType()));
if (requestable instanceof AbstractDto) {
// If is requestable realized REMOVE, then requestable DTO does not contains
// data (only ID). In this case we don't want send this DTO to FE.
AbstractDto requestableDto = (AbstractDto) requestable;
IdmRequestItemDto itemDto = DtoUtils.getEmbedded(requestableDto, Requestable.REQUEST_ITEM_FIELD, IdmRequestItemDto.class, null);
if (itemDto != null && RequestOperationType.REMOVE == itemDto.getOperation() && itemDto.getState().isTerminatedState()) {
requestable = null;
}
// Minimise response size
requestableDto.setEmbedded(null);
}
if (requestable == null) {
// Entity was not found ... maybe was deleted or not exists yet
LOG.debug(MessageFormat.format("Owner [{0}, {1}] not found for request {2}.", requestDto.getOwnerType(), requestDto.getOwnerId(), requestDto.getId()));
}
requestDto.getEmbedded().put(IdmRequestDto.OWNER_FIELD, requestable);
} catch (ClassNotFoundException e) {
// Only print warning
LOG.warn(MessageFormat.format("Class not found for request {0}.", requestDto.getId()), e);
}
}
return requestDto;
}
use of eu.bcvsolutions.idm.core.api.dto.IdmRequestItemDto in project CzechIdMng by bcvsolutions.
the class DefaultIdmRequestItemService method toDto.
@Override
public IdmRequestItemDto toDto(IdmRequestItem entity, IdmRequestItemDto dto) {
IdmRequestItemDto requestItemDto = super.toDto(entity, dto);
// Load and add WF process DTO to embedded. Prevents of many requests from FE.
if (requestItemDto != null && requestItemDto.getWfProcessId() != null) {
if (RequestState.IN_PROGRESS == requestItemDto.getState()) {
// Instance of process should exists only in 'IN_PROGRESS' state
WorkflowProcessInstanceDto processInstanceDto = workflowProcessInstanceService.get(requestItemDto.getWfProcessId());
// size
if (processInstanceDto != null) {
processInstanceDto.setProcessVariables(null);
}
requestItemDto.getEmbedded().put(AbstractRequestDto.WF_PROCESS_FIELD, processInstanceDto);
} else {
// In others states we need load historic process
WorkflowHistoricProcessInstanceDto processHistDto = workflowHistoricProcessInstanceService.get(requestItemDto.getWfProcessId());
// size
if (processHistDto != null) {
processHistDto.setProcessVariables(null);
}
requestItemDto.getEmbedded().put(AbstractRequestDto.WF_PROCESS_FIELD, processHistDto);
}
}
// Load and add owner DTO to embedded. Prevents of many requests from FE.
if (requestItemDto != null && requestItemDto.getOwnerId() != null && requestItemDto.getOwnerType() != null) {
try {
@SuppressWarnings("unchecked") Requestable requestable = requestManager.convertItemToDto(requestItemDto, (Class<Requestable>) Class.forName(requestItemDto.getOwnerType()));
// Item for remove operation does not contains the JSON data, so we need load owner via lookupService
if (requestable == null && RequestOperationType.REMOVE == requestItemDto.getOperation()) {
requestable = (Requestable) lookupService.lookupDto(requestItemDto.getOwnerType(), requestItemDto.getOwnerId());
}
if (requestable == null) {
// Entity was not found ... maybe was deleted or not exists yet
LOG.debug(MessageFormat.format("Owner [{0}, {1}] not found for request {2}.", requestItemDto.getOwnerType(), requestItemDto.getOwnerId(), requestItemDto.getId()));
}
requestItemDto.getEmbedded().put(IdmRequestDto.OWNER_FIELD, requestable);
} catch (ClassNotFoundException e) {
// Only print warning
LOG.warn(MessageFormat.format("Class not found for request item {0}.", requestItemDto.getId()), e);
} catch (JsonParseException e) {
// Only print warning
LOG.warn(MessageFormat.format("JsonParseException for request item {0}.", requestItemDto.getId()), e);
} catch (JsonMappingException e) {
// Only print warning
LOG.warn(MessageFormat.format("JsonMappingException for request item {0}.", requestItemDto.getId()), e);
} catch (IOException e) {
// Only print warning
LOG.warn(MessageFormat.format("IOException for request item {0}.", requestItemDto.getId()), e);
}
}
return requestItemDto;
}
use of eu.bcvsolutions.idm.core.api.dto.IdmRequestItemDto in project CzechIdMng by bcvsolutions.
the class RequestManagerTest method testDeleteRequestIntegrityWithWf.
@Test
public void testDeleteRequestIntegrityWithWf() {
// Log as admin, but not user 'admin' (we don't want to skip WF)
IdmIdentityDto adminUser = getHelper().createIdentity();
loginAsAdmin(adminUser.getUsername());
// Create role
IdmRoleDto role = getHelper().createRole();
// Create request
IdmRequestDto request = requestManager.createRequest(role);
Assert.assertNotNull(request);
// Create guarantee
IdmIdentityDto guarantee = getHelper().createIdentity();
IdmRoleGuaranteeDto roleGuarantee = new IdmRoleGuaranteeDto();
roleGuarantee.setRole(role.getId());
roleGuarantee.setGuarantee(guarantee.getId());
Requestable requestablePost = requestManager.post(request.getId(), roleGuarantee);
IdmRequestItemDto changeRequestItem = DtoUtils.getEmbedded((AbstractDto) requestablePost, Requestable.REQUEST_ITEM_FIELD, IdmRequestItemDto.class);
Assert.assertEquals(RequestOperationType.ADD, changeRequestItem.getOperation());
Assert.assertTrue(requestablePost instanceof IdmRoleGuaranteeDto);
// Change role (without save)
role.setDescription(getHelper().createName());
role.setPriority(1000);
// Create request item
Requestable requestable = requestManager.post(request.getId(), role);
Assert.assertNotNull(requestable);
Assert.assertNotNull(requestable.getRequestItem());
changeRequestItem = DtoUtils.getEmbedded((AbstractDto) requestable, Requestable.REQUEST_ITEM_FIELD, IdmRequestItemDto.class);
Assert.assertEquals(RequestOperationType.UPDATE, changeRequestItem.getOperation());
Assert.assertTrue(requestable instanceof IdmRoleDto);
// Start request
IdmRequestDto executedRequest = requestManager.startRequest(request.getId(), true);
executedRequest = requestService.get(executedRequest.getId());
Assert.assertEquals(RequestState.IN_PROGRESS, executedRequest.getState());
String processId = executedRequest.getWfProcessId();
Assert.assertNotNull(processId);
// Wf process is in progress
WorkflowProcessInstanceDto processInstace = workflowProcessInstanceService.get(processId);
Assert.assertNotNull(processInstace);
// Two items should be created
Assert.assertEquals(2, requestManager.findRequestItems(request.getId(), null).size());
// Delete the request
requestService.delete(executedRequest);
IdmRequestDto requestDeleted = requestService.get(executedRequest.getId());
Assert.assertNull(requestDeleted);
// Process should be deleted (canceled)
processInstace = workflowProcessInstanceService.get(processId);
Assert.assertNull(processInstace);
}
Aggregations