use of org.apache.nifi.web.api.entity.LabelsEntity in project nifi by apache.
the class LabelsEndpointMerger method merge.
@Override
public NodeResponse merge(URI uri, String method, Set<NodeResponse> successfulResponses, Set<NodeResponse> problematicResponses, NodeResponse clientResponse) {
if (!canHandle(uri, method)) {
throw new IllegalArgumentException("Cannot use Endpoint Mapper of type " + getClass().getSimpleName() + " to map responses for URI " + uri + ", HTTP Method " + method);
}
final LabelsEntity responseEntity = clientResponse.getClientResponse().readEntity(LabelsEntity.class);
final Set<LabelEntity> labelEntities = responseEntity.getLabels();
final Map<String, Map<NodeIdentifier, LabelEntity>> entityMap = new HashMap<>();
for (final NodeResponse nodeResponse : successfulResponses) {
final LabelsEntity nodeResponseEntity = nodeResponse == clientResponse ? responseEntity : nodeResponse.getClientResponse().readEntity(LabelsEntity.class);
final Set<LabelEntity> nodeLabelEntities = nodeResponseEntity.getLabels();
for (final LabelEntity nodeLabelEntity : nodeLabelEntities) {
final String nodeLabelEntityId = nodeLabelEntity.getId();
Map<NodeIdentifier, LabelEntity> innerMap = entityMap.get(nodeLabelEntityId);
if (innerMap == null) {
innerMap = new HashMap<>();
entityMap.put(nodeLabelEntityId, innerMap);
}
innerMap.put(nodeResponse.getNodeId(), nodeLabelEntity);
}
}
LabelsEntityMerger.mergeLabels(labelEntities, entityMap);
// create a new client response
return new NodeResponse(clientResponse, responseEntity);
}
use of org.apache.nifi.web.api.entity.LabelsEntity in project nifi by apache.
the class ProcessGroupResource method getLabels.
/**
* Retrieves all the of labels in this NiFi.
*
* @return A labelsEntity.
*/
@GET
@Consumes(MediaType.WILDCARD)
@Produces(MediaType.APPLICATION_JSON)
@Path("{id}/labels")
@ApiOperation(value = "Gets all labels", response = LabelsEntity.class, authorizations = { @Authorization(value = "Read - /process-groups/{uuid}") })
@ApiResponses(value = { @ApiResponse(code = 400, message = "NiFi was unable to complete the request because it was invalid. The request should not be retried without modification."), @ApiResponse(code = 401, message = "Client could not be authenticated."), @ApiResponse(code = 403, message = "Client is not authorized to make this request."), @ApiResponse(code = 404, message = "The specified resource could not be found."), @ApiResponse(code = 409, message = "The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.") })
public Response getLabels(@ApiParam(value = "The process group id.", required = true) @PathParam("id") final String groupId) {
if (isReplicateRequest()) {
return replicate(HttpMethod.GET);
}
// authorize access
serviceFacade.authorizeAccess(lookup -> {
final Authorizable processGroup = lookup.getProcessGroup(groupId).getAuthorizable();
processGroup.authorize(authorizer, RequestAction.READ, NiFiUserUtils.getNiFiUser());
});
// get all the labels
final Set<LabelEntity> labels = serviceFacade.getLabels(groupId);
// create the response entity
final LabelsEntity entity = new LabelsEntity();
entity.setLabels(labelResource.populateRemainingLabelEntitiesContent(labels));
// generate the response
return generateOkResponse(entity).build();
}
Aggregations