use of org.sonatype.nexus.repository.storage.Component in project nexus-repository-r by sonatype-nexus-community.
the class RProxyIT method checkComponentCreated.
@Test
public void checkComponentCreated() throws Exception {
final Component nullComponent = findComponent(repository, AGRICOLAE_131_TGZ.packageName);
Assert.assertThat(nullComponent, is(nullValue()));
client.fetch(AGRICOLAE_131_TGZ.fullPath);
final Component component = findComponent(repository, AGRICOLAE_131_TGZ.packageName);
Assert.assertThat(component.name(), is(equalTo(AGRICOLAE_131_TGZ.packageName)));
Assert.assertThat(component.format(), is(equalTo(R_FORMAT_NAME)));
Assert.assertThat(component.group(), is(AGRICOLAE_131_TGZ.basePath));
Assert.assertThat(component.version(), is(equalTo(AGRICOLAE_131_TGZ.packageVersion)));
}
use of org.sonatype.nexus.repository.storage.Component in project nexus-repository-r by sonatype-nexus-community.
the class RProxyIT method testDeletingComponentDeletesAllAssociatedAssets.
@Test
public void testDeletingComponentDeletesAllAssociatedAssets() throws IOException {
client.fetch(AGRICOLAE_131_TGZ.fullPath);
final Asset asset = findAsset(repository, AGRICOLAE_131_TGZ.fullPath);
assertNotNull(asset);
assertNotNull(asset.componentId());
final Component component = findComponentById(repository, asset.componentId());
assertNotNull(component);
ComponentMaintenance maintenanceFacet = repository.facet(ComponentMaintenance.class);
maintenanceFacet.deleteComponent(component.getEntityMetadata().getId(), true);
assertNull(findAsset(repository, AGRICOLAE_131_TGZ.fullPath));
assertNull(findComponentById(repository, asset.componentId()));
}
use of org.sonatype.nexus.repository.storage.Component 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.Component 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