use of org.sonatype.nexus.repository.transaction.TransactionalStoreBlob in project nexus-repository-r by sonatype-nexus-community.
the class RProxyFacetImpl method doPutPackages.
@TransactionalStoreBlob
protected Content doPutPackages(final String path, final TempBlob packagesContent, final Payload payload) throws IOException {
StorageTx tx = UnitOfWork.currentTx();
Bucket bucket = tx.findBucket(getRepository());
String assetPath = packagesPath(path);
Asset asset = findAsset(tx, bucket, assetPath);
if (asset == null) {
asset = tx.createAsset(bucket, getRepository().getFormat());
asset.name(assetPath);
asset.formatAttributes().set(P_ASSET_KIND, PACKAGES.name());
}
return saveAsset(tx, asset, packagesContent, payload);
}
use of org.sonatype.nexus.repository.transaction.TransactionalStoreBlob in project nexus-repository-r by sonatype-nexus-community.
the class RProxyFacetImpl method doPutArchive.
@TransactionalStoreBlob
protected Content doPutArchive(final String path, final String filename, final TempBlob archiveContent, final Payload payload) throws IOException {
StorageTx tx = UnitOfWork.currentTx();
Bucket bucket = tx.findBucket(getRepository());
String assetPath = path(path, filename);
Map<String, String> attributes;
try (InputStream is = archiveContent.get()) {
attributes = extractDescriptionFromArchive(filename, is);
}
String name = attributes.get(P_PACKAGE);
String version = attributes.get(P_VERSION);
Component component = findComponent(tx, getRepository(), name, version);
if (component == null) {
component = tx.createComponent(bucket, getRepository().getFormat()).name(name).version(version);
}
tx.saveComponent(component);
Asset asset = findAsset(tx, bucket, assetPath);
if (asset == null) {
asset = tx.createAsset(bucket, component);
asset.name(assetPath);
asset.formatAttributes().set(P_ASSET_KIND, ARCHIVE.name());
}
// TODO: Make this a bit more robust (could be problematic if keys are removed in later versions, or if keys clash)
for (Entry<String, String> entry : attributes.entrySet()) {
asset.formatAttributes().set(entry.getKey(), entry.getValue());
}
return saveAsset(tx, asset, archiveContent, payload);
}
use of org.sonatype.nexus.repository.transaction.TransactionalStoreBlob in project nexus-repository-r by sonatype-nexus-community.
the class RHostedFacetImpl method doPutArchive.
@TransactionalStoreBlob
protected void doPutArchive(final String path, final TempBlob archiveContent, final Payload payload) throws IOException {
checkNotNull(path);
checkNotNull(archiveContent);
checkNotNull(payload);
StorageTx tx = UnitOfWork.currentTx();
Bucket bucket = tx.findBucket(getRepository());
Map<String, String> attributes;
try (InputStream is = archiveContent.get()) {
attributes = extractDescriptionFromArchive(path, is);
}
String name = attributes.get(P_PACKAGE);
String version = attributes.get(P_VERSION);
Component component = findComponent(tx, getRepository(), name, version);
if (component == null) {
component = tx.createComponent(bucket, getRepository().getFormat()).name(name).version(version);
}
tx.saveComponent(component);
Asset asset = findAsset(tx, bucket, path);
if (asset == null) {
asset = tx.createAsset(bucket, component);
asset.name(path);
asset.formatAttributes().set(P_ASSET_KIND, ARCHIVE.name());
}
// TODO: Make this a bit more robust (could be problematic if keys are removed in later versions, or if keys clash)
for (Entry<String, String> entry : attributes.entrySet()) {
asset.formatAttributes().set(entry.getKey(), entry.getValue());
}
saveAsset(tx, asset, archiveContent, payload);
}
use of org.sonatype.nexus.repository.transaction.TransactionalStoreBlob in project nexus-repository-r by sonatype-nexus-community.
the class RHostedFacetImpl method doPutPackagesGz.
@TransactionalStoreBlob
protected Content doPutPackagesGz(final StorageTx tx, final String basePath, final TempBlob tempPackagesGz) throws IOException {
RFacet rFacet = facet(RFacet.class);
Asset asset = rFacet.findOrCreateAsset(tx, buildPath(basePath, PACKAGES_GZ_FILENAME));
return saveAsset(tx, asset, tempPackagesGz, "", null);
}
use of org.sonatype.nexus.repository.transaction.TransactionalStoreBlob in project nexus-repository-r by sonatype-nexus-community.
the class RHostedFacetImpl method doPutArchive.
@TransactionalStoreBlob
protected Asset doPutArchive(final String path, final TempBlob archiveContent, final Payload payload) throws IOException {
StorageTx tx = UnitOfWork.currentTx();
RFacet rFacet = facet(RFacet.class);
Map<String, String> attributes;
try (InputStream is = archiveContent.get()) {
attributes = extractDescriptionFromArchive(path, is);
}
Component component = rFacet.findOrCreateComponent(tx, path, attributes);
Asset asset = rFacet.findOrCreateAsset(tx, component, path, attributes);
saveAsset(tx, asset, archiveContent, payload);
return asset;
}
Aggregations