use of org.sonatype.nexus.repository.transaction.TransactionalDeleteBlob in project nexus-repository-r by sonatype-nexus-community.
the class RComponentMaintenance method deleteAssetTx.
/**
* Deletes the asset and its component if it's the only asset in it.
*/
@Override
@TransactionalDeleteBlob
protected Set<String> deleteAssetTx(final EntityId assetId, final boolean deleteBlob) {
StorageTx tx = UnitOfWork.currentTx();
final Asset asset = tx.findAsset(assetId, tx.findBucket(getRepository()));
if (asset == null) {
return Collections.emptySet();
}
final EntityId componentId = asset.componentId();
if (componentId == null) {
// Assets without components should be deleted on their own
return super.deleteAssetTx(assetId, deleteBlob);
}
final Component component = tx.findComponent(componentId);
if (Iterables.size(tx.browseAssets(component)) == 1) {
// Component with only one asset should be deleted as well with its asset
return deleteComponentTx(componentId, deleteBlob).getAssets();
} else {
return super.deleteAssetTx(assetId, deleteBlob);
}
}
Aggregations