use of ddf.catalog.operation.DeleteResponse in project ddf by codice.
the class RemoteDeleteOperations method doRemoteDelete.
private DeleteResponse doRemoteDelete(DeleteRequest deleteRequest) {
HashSet<ProcessingDetails> exceptions = new HashSet<>();
Map<String, Serializable> properties = new HashMap<>();
List<CatalogStore> stores = opsCatStoreSupport.getCatalogStoresForRequest(deleteRequest, exceptions);
List<Metacard> metacards = new ArrayList<>();
for (CatalogStore store : stores) {
try {
if (!store.isAvailable()) {
exceptions.add(new ProcessingDetailsImpl(store.getId(), null, "CatalogStore is not available"));
} else {
// TODO: 4/27/17 Address bug in DDF-2970 for overwriting deleted metacards
DeleteResponse response = store.delete(deleteRequest);
properties.put(store.getId(), new ArrayList<>(response.getDeletedMetacards()));
metacards = response.getDeletedMetacards();
}
} catch (IngestException e) {
INGEST_LOGGER.error("Error deleting metacards for CatalogStore {}", store.getId(), e);
exceptions.add(new ProcessingDetailsImpl(store.getId(), e));
}
}
return new DeleteResponseImpl(deleteRequest, properties, metacards, exceptions);
}
use of ddf.catalog.operation.DeleteResponse in project ddf by codice.
the class CatalogComponentFrameworkTest method testDeleteWithSingleId.
@Test
public /**
* Operation: DELETE
* Body contains: 12345678900987654321abcdeffedcba
*/
void testDeleteWithSingleId() throws Exception {
resetMocks();
// Setup expectations to verify
final MockEndpoint mockVerifierEndpoint = getMockEndpoint("mock:result");
mockVerifierEndpoint.expectedMessageCount(1);
final List<Metacard> metacards = new ArrayList<Metacard>();
metacards.add(metacard1);
// setup mock catalog framework
final String[] metacardIds = new String[metacards.size()];
for (int i = 0; i < metacards.size(); i++) {
metacardIds[i] = metacards.get(i).getId();
}
DeleteRequest deleteRequest = new DeleteRequestImpl(metacardIds);
DeleteResponse deleteResponse = new DeleteResponseImpl(deleteRequest, new HashMap(), metacards);
when(catalogFramework.delete(any(DeleteRequest.class))).thenReturn(deleteResponse);
// Exercise the route with a DELETE operation
template.sendBodyAndHeader("direct:sampleInput", metacardIds, "Operation", "DELETE");
// Verify that the number of metacards in the exchange after the records
// is identical to the input
assertListSize(mockVerifierEndpoint.getExchanges(), 1);
final Exchange exchange = mockVerifierEndpoint.getExchanges().get(0);
final List<Update> cardsDeleted = (List<Update>) exchange.getIn().getBody();
assertListSize(cardsDeleted, 1);
mockVerifierEndpoint.assertIsSatisfied();
}
use of ddf.catalog.operation.DeleteResponse in project ddf by codice.
the class DeleteOperations method performLocalDelete.
private DeleteResponse performLocalDelete(DeleteRequest deleteRequest, DeleteStorageRequest deleteStorageRequest) throws IngestException {
if (!Requests.isLocal(deleteRequest)) {
return null;
}
try {
sourceOperations.getStorage().delete(deleteStorageRequest);
} catch (StorageException e) {
LOGGER.info("Unable to delete stored content items. Not removing stored metacards", e);
throw new InternalIngestException("Unable to delete stored content items. Not removing stored metacards.", e);
}
DeleteResponse deleteResponse = sourceOperations.getCatalog().delete(deleteRequest);
deleteResponse = injectAttributes(deleteResponse);
try {
historian.version(deleteResponse);
} catch (SourceUnavailableException e) {
LOGGER.debug("Could not version deleted item!", e);
throw new IngestException("Could not version deleted Item!");
}
return deleteResponse;
}
use of ddf.catalog.operation.DeleteResponse in project ddf by codice.
the class DeleteOperations method doDelete.
//
// Private helper methods
//
public DeleteResponse doDelete(DeleteRequest deleteRequest, List<String> fanoutTagBlacklist) throws IngestException, SourceUnavailableException {
DeleteStorageRequest deleteStorageRequest = null;
DeleteResponse deleteResponse = null;
deleteRequest = queryOperations.setFlagsOnRequest(deleteRequest);
deleteRequest = validateDeleteRequest(deleteRequest);
deleteRequest = validateLocalSource(deleteRequest);
try {
deleteRequest = populateMetacards(deleteRequest, fanoutTagBlacklist);
deleteRequest = preProcessPreAuthorizationPlugins(deleteRequest);
deleteStorageRequest = new DeleteStorageRequestImpl(getDeleteMetacards(deleteRequest), deleteRequest.getProperties());
deleteRequest = processPreDeletePolicyPlugins(deleteRequest);
deleteRequest = processPreDeleteAccessPlugins(deleteRequest);
deleteRequest = processPreIngestPlugins(deleteRequest);
deleteRequest = validateDeleteRequest(deleteRequest);
// Call the Provider delete method
LOGGER.debug("Calling catalog.delete() with {} entries.", deleteRequest.getAttributeValues().size());
deleteResponse = performLocalDelete(deleteRequest, deleteStorageRequest);
deleteResponse = remoteDeleteOperations.performRemoteDelete(deleteRequest, deleteResponse);
deleteResponse = postProcessPreAuthorizationPlugins(deleteResponse);
deleteRequest = populateDeleteRequestPolicyMap(deleteRequest, deleteResponse);
deleteResponse = processPostDeleteAccessPlugins(deleteResponse);
// Post results to be available for pubsub
deleteResponse = validateFixDeleteResponse(deleteResponse, deleteRequest);
} catch (StopProcessingException see) {
LOGGER.debug(PRE_INGEST_ERROR + see.getMessage(), see);
throw new IngestException(PRE_INGEST_ERROR + see.getMessage());
} catch (RuntimeException re) {
LOGGER.info("Exception during runtime while performing delete", re);
throw new InternalIngestException("Exception during runtime while performing delete");
} finally {
if (deleteStorageRequest != null) {
try {
sourceOperations.getStorage().commit(deleteStorageRequest);
} catch (StorageException e) {
LOGGER.info("Unable to remove stored content items.", e);
}
}
}
deleteResponse = doPostIngest(deleteResponse);
return deleteResponse;
}
Aggregations