blob: 6336d0ae8b4536c9091da6287f624406709ab236 [file] [log] [blame]
package org.apache.archiva.repository.content.maven2;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.archiva.common.filelock.FileLockManager;
import org.apache.archiva.common.utils.PathUtil;
import org.apache.archiva.common.utils.VersionUtil;
import org.apache.archiva.configuration.FileTypes;
import org.apache.archiva.metadata.repository.storage.maven2.ArtifactMappingProvider;
import org.apache.archiva.metadata.repository.storage.maven2.DefaultArtifactMappingProvider;
import org.apache.archiva.model.ArchivaArtifact;
import org.apache.archiva.model.ArtifactReference;
import org.apache.archiva.model.ProjectReference;
import org.apache.archiva.model.VersionedReference;
import org.apache.archiva.repository.ContentNotFoundException;
import org.apache.archiva.repository.EditableManagedRepository;
import org.apache.archiva.repository.LayoutException;
import org.apache.archiva.repository.ManagedRepository;
import org.apache.archiva.repository.ManagedRepositoryContent;
import org.apache.archiva.repository.RepositoryException;
import org.apache.archiva.repository.storage.StorageAsset;
import org.apache.commons.lang3.StringUtils;
import java.io.IOException;
import java.net.URI;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Objects;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* ManagedDefaultRepositoryContent
*/
public class ManagedDefaultRepositoryContent
extends AbstractDefaultRepositoryContent
implements ManagedRepositoryContent
{
private FileTypes filetypes;
public void setFileTypes(FileTypes fileTypes) {
this.filetypes = fileTypes;
}
private ManagedRepository repository;
FileLockManager lockManager;
public ManagedDefaultRepositoryContent(ManagedRepository repository, FileTypes fileTypes, FileLockManager lockManager) {
super(Collections.singletonList( new DefaultArtifactMappingProvider() ));
setFileTypes( fileTypes );
this.lockManager = lockManager;
setRepository( repository );
}
public ManagedDefaultRepositoryContent( ManagedRepository repository, List<? extends ArtifactMappingProvider> artifactMappingProviders, FileTypes fileTypes, FileLockManager lockManager )
{
super(artifactMappingProviders==null ? Collections.singletonList( new DefaultArtifactMappingProvider() ) : artifactMappingProviders);
setFileTypes( fileTypes );
this.lockManager = lockManager;
setRepository( repository );
}
/**
* Returns a version reference from the coordinates
* @param groupId the group id
* @param artifactId the artifact id
* @param version the version
* @return the versioned reference object
*/
@Override
public VersionedReference toVersion( String groupId, String artifactId, String version ) {
VersionedReference ref = new VersionedReference();
ref.setGroupId(groupId);
ref.setArtifactId(artifactId);
ref.setVersion(version);
return ref;
}
/**
* Return the version the artifact is part of
* @param artifactReference
* @return
*/
public VersionedReference toVersion( ArtifactReference artifactReference) {
return toVersion( artifactReference.getGroupId( ), artifactReference.getArtifactId( ), VersionUtil.getBaseVersion( artifactReference.getVersion( ) ));
}
@Override
public ArtifactReference toArtifact( String groupId, String artifactId, String version, String type, String classifier) {
ArtifactReference ar = new ArtifactReference( );
ar.setGroupId( groupId );
ar.setArtifactId( artifactId );
ar.setVersion( version );
ar.setType( type );
ar.setClassifier( classifier );
return ar;
}
@Override
public void deleteVersion( VersionedReference reference )
{
Path projectDir = getRepoDir().resolve(toPath(reference));
if ( Files.exists(projectDir) && Files.isDirectory(projectDir) )
{
org.apache.archiva.common.utils.FileUtils.deleteQuietly( projectDir );
}
}
@Override
public void deleteProject( String namespace, String projectId )
throws RepositoryException
{
ProjectReference ref = new ProjectReference( );
ref.setGroupId( namespace );
ref.setArtifactId( projectId );
Path projDirectory = getRepoDir( ).resolve( toPath(ref) );
if ( !Files.exists(projDirectory) )
{
throw new ContentNotFoundException( "cannot found project " + namespace + ":" + projectId );
}
if ( Files.isDirectory(projDirectory) )
{
try
{
org.apache.archiva.common.utils.FileUtils.deleteDirectory( projDirectory );
}
catch ( IOException e )
{
throw new RepositoryException( e.getMessage(), e );
}
}
else
{
log.warn( "project {}:{} is not a directory", namespace, projectId );
}
}
@Override
public void deleteArtifact( ArtifactReference artifactReference )
{
final Path repoDir = getRepoDir( );
Path filePath = repoDir.resolve( toPath( artifactReference ) );
Path parentPath = filePath.getParent( );
if ( Files.exists(filePath) )
{
org.apache.archiva.common.utils.FileUtils.deleteQuietly( filePath );
}
Path filePathmd5 = parentPath.resolve( filePath.getFileName().toString()+".md5" );
if ( Files.exists(filePathmd5) )
{
org.apache.archiva.common.utils.FileUtils.deleteQuietly( filePathmd5 );
}
Path filePathsha1 = parentPath.resolve( filePath.getFileName().toString()+ ".sha1" );
if ( Files.exists(filePathsha1) )
{
org.apache.archiva.common.utils.FileUtils.deleteQuietly( filePathsha1 );
}
}
@Override
public void deleteGroupId( String groupId )
throws ContentNotFoundException
{
Path directory = getRepoDir( ).resolve( toPath( groupId ) );
if ( Files.exists(directory) )
{
try
{
org.apache.archiva.common.utils.FileUtils.deleteDirectory( directory );
}
catch ( IOException e )
{
log.warn( "skip error deleting directory {}:", directory, e );
}
}
}
@Override
public String getId()
{
return repository.getId();
}
@Override
public List<ArtifactReference> getRelatedArtifacts( ArtifactReference reference )
throws ContentNotFoundException, LayoutException
{
StorageAsset artifactFile = toFile( reference );
StorageAsset repoDir = artifactFile.getParent();
if ( !repoDir.exists())
{
throw new ContentNotFoundException(
"Unable to get related artifacts using a non-existant directory: " + repoDir.getPath() );
}
if ( !repoDir.isContainer() )
{
throw new ContentNotFoundException(
"Unable to get related artifacts using a non-directory: " + repoDir.getPath() );
}
// First gather up the versions found as artifacts in the managed repository.
try (Stream<StorageAsset> stream = repoDir.list().stream() ) {
return stream.filter(asset -> !asset.isContainer()).map(path -> {
try {
ArtifactReference artifact = toArtifactReference(path.getPath());
if( artifact.getGroupId().equals( reference.getGroupId() ) && artifact.getArtifactId().equals(
reference.getArtifactId() ) && artifact.getVersion().equals( reference.getVersion() )) {
return artifact;
} else {
return null;
}
} catch (LayoutException e) {
log.debug( "Not processing file that is not an artifact: {}", e.getMessage() );
return null;
}
}).filter(Objects::nonNull).collect(Collectors.toList());
}
}
@Override
public List<StorageAsset> getRelatedAssets( ArtifactReference reference ) throws ContentNotFoundException, LayoutException
{
return null;
}
@Override
public String getRepoRoot()
{
return convertUriToPath( repository.getLocation() );
}
private String convertUriToPath( URI uri ) {
if (uri.getScheme()==null) {
return Paths.get(uri.getPath()).toString();
} else if ("file".equals(uri.getScheme())) {
return Paths.get(uri).toString();
} else {
return uri.toString();
}
}
@Override
public ManagedRepository getRepository()
{
return repository;
}
/**
* Gather the Available Versions (on disk) for a specific Project Reference, based on filesystem
* information.
*
* @return the Set of available versions, based on the project reference.
* @throws LayoutException
*/
@Override
public Set<String> getVersions( ProjectReference reference )
throws ContentNotFoundException, LayoutException
{
final Path projDir = getRepoDir().resolve(toPath(reference));
if ( !Files.exists(projDir) )
{
throw new ContentNotFoundException(
"Unable to get Versions on a non-existant directory: " + projDir.toAbsolutePath() );
}
if ( !Files.isDirectory(projDir) )
{
throw new ContentNotFoundException(
"Unable to get Versions on a non-directory: " + projDir.toAbsolutePath() );
}
final String groupId = reference.getGroupId();
final String artifactId = reference.getArtifactId();
try(Stream<Path> stream = Files.list(projDir)) {
return stream.filter(Files::isDirectory).map(
p -> toVersion(groupId, artifactId, p.getFileName().toString())
).filter(this::hasArtifact).map(ref -> ref.getVersion())
.collect(Collectors.toSet());
} catch (IOException e) {
log.error("Could not read directory {}: {}", projDir, e.getMessage(), e);
} catch (RuntimeException e) {
if (e.getCause()!=null)
{
if ( e.getCause( ) instanceof LayoutException )
{
throw (LayoutException) e.getCause( );
}
}else {
throw e;
}
}
return Collections.emptySet();
}
@Override
public Set<String> getVersions( VersionedReference reference )
throws ContentNotFoundException
{
try(Stream<ArtifactReference> stream = getArtifactStream( reference ))
{
return stream.filter( Objects::nonNull )
.map( ar -> ar.getVersion( ) )
.collect( Collectors.toSet( ) );
}
catch ( LayoutException | IOException e )
{
throw new ContentNotFoundException( e.getMessage( ), e );
}
}
@Override
public boolean hasContent( ArtifactReference reference )
{
StorageAsset artifactFile = toFile( reference );
return artifactFile.exists() && !artifactFile.isContainer();
}
@Override
public boolean hasContent( ProjectReference reference )
{
try
{
Set<String> versions = getVersions( reference );
return !versions.isEmpty();
}
catch ( ContentNotFoundException | LayoutException e )
{
return false;
}
}
@Override
public boolean hasContent( VersionedReference reference )
{
try
{
return ( getFirstArtifact( reference ) != null );
}
catch ( IOException | LayoutException | ContentNotFoundException e )
{
return false;
}
}
@Override
public void setRepository( final ManagedRepository repo )
{
this.repository = repo;
if (repo!=null) {
if (repository instanceof EditableManagedRepository) {
((EditableManagedRepository) repository).setContent(this);
}
}
}
private Path getRepoDir() {
return repository.getAsset( "" ).getFilePath( );
}
/**
* Convert a path to an artifact reference.
*
* @param path the path to convert. (relative or full location path)
* @throws LayoutException if the path cannot be converted to an artifact reference.
*/
@Override
public ArtifactReference toArtifactReference( String path )
throws LayoutException
{
String repoPath = convertUriToPath( repository.getLocation() );
if ( ( path != null ) && path.startsWith( repoPath ) && repoPath.length() > 0 )
{
return super.toArtifactReference( path.substring( repoPath.length() + 1 ) );
} else {
repoPath = path;
if (repoPath!=null) {
while (repoPath.startsWith("/")) {
repoPath = repoPath.substring(1);
}
}
return super.toArtifactReference( repoPath );
}
}
// The variant with runtime exception for stream usage
private ArtifactReference toArtifactRef(String path) {
try {
return toArtifactReference(path);
} catch (LayoutException e) {
throw new RuntimeException(e);
}
}
@Override
public StorageAsset toFile( ArtifactReference reference )
{
return repository.getAsset(toPath(reference));
}
@Override
public StorageAsset toFile( ArchivaArtifact reference )
{
return repository.getAsset( toPath( reference ) );
}
/**
* Get the first Artifact found in the provided VersionedReference location.
*
* @param reference the reference to the versioned reference to search within
* @return the ArtifactReference to the first artifact located within the versioned reference. or null if
* no artifact was found within the versioned reference.
* @throws java.io.IOException if the versioned reference is invalid (example: doesn't exist, or isn't a directory)
* @throws LayoutException
*/
private ArtifactReference getFirstArtifact( VersionedReference reference )
throws ContentNotFoundException, LayoutException, IOException
{
try(Stream<ArtifactReference> stream = getArtifactStream( reference ))
{
return stream.findFirst( ).orElse( null );
} catch (RuntimeException e) {
throw new ContentNotFoundException( e.getMessage( ), e.getCause( ) );
}
}
private Stream<ArtifactReference> getArtifactStream(VersionedReference reference) throws ContentNotFoundException, LayoutException, IOException {
final Path repoBase = getRepoDir( );
String path = toMetadataPath( reference );
Path versionDir = repoBase.resolve( path ).getParent();
if ( !Files.exists(versionDir) )
{
throw new ContentNotFoundException( "Unable to gather the list of artifacts on a non-existant directory: "
+ versionDir.toAbsolutePath() );
}
if ( !Files.isDirectory(versionDir) )
{
throw new ContentNotFoundException(
"Unable to gather the list of snapshot versions on a non-directory: " + versionDir.toAbsolutePath() );
}
return Files.list(versionDir).filter(Files::isRegularFile)
.map(p -> repoBase.relativize(p).toString())
.filter(p -> !filetypes.matchesDefaultExclusions(p))
.filter(filetypes::matchesArtifactPattern)
.map(this::toArtifactRef);
}
public List<ArtifactReference> getArtifacts(VersionedReference reference) throws ContentNotFoundException, LayoutException
{
try (Stream<ArtifactReference> stream = getArtifactStream( reference ))
{
return stream.collect( Collectors.toList( ) );
} catch ( IOException e )
{
log.error( "Could not access the repository files: ", e.getMessage( ), e );
throw new ContentNotFoundException( e.getMessage( ), e );
}
}
private boolean hasArtifact( VersionedReference reference )
{
try(Stream<ArtifactReference> stream = getArtifactStream( reference ))
{
return stream.anyMatch( e -> true );
} catch (ContentNotFoundException e) {
return false;
} catch ( LayoutException | IOException e) {
// We throw the runtime exception for better stream handling
throw new RuntimeException(e);
}
}
public void setFiletypes( FileTypes filetypes )
{
this.filetypes = filetypes;
}
}