use of org.sonatype.nexus.repository.storage.StorageTx 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);
}
}
use of org.sonatype.nexus.repository.storage.StorageTx in project nexus-repository-r by sonatype-nexus-community.
the class RRestoreFacetImpl method restore.
@Override
@TransactionalTouchBlob
public void restore(final AssetBlob assetBlob, final String path) throws IOException {
StorageTx tx = UnitOfWork.currentTx();
RFacet facet = facet(RFacet.class);
Asset asset;
if (componentRequired(path)) {
Map<String, String> attributes;
try (InputStream is = assetBlob.getBlob().getInputStream()) {
attributes = extractDescriptionFromArchive(path, is);
}
Component component = facet.findOrCreateComponent(tx, path, attributes);
asset = facet.findOrCreateAsset(tx, component, path, attributes);
} else {
asset = facet.findOrCreateAsset(tx, path);
}
tx.attachBlob(asset, assetBlob);
Content.applyToAsset(asset, Content.maintainLastModified(asset, new AttributesMap()));
tx.saveAsset(asset);
}
Aggregations