]> source.dussan.org Git - archiva.git/blob
e2b3cb299c1e4b307608f7821ab739a488011247
[archiva.git] /
1 package org.apache.archiva.repository.content;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.archiva.metadata.model.ArtifactMetadata;
23 import org.apache.archiva.metadata.repository.storage.RepositoryPathTranslator;
24 import org.apache.archiva.metadata.repository.storage.maven2.ArtifactMappingProvider;
25 import org.apache.archiva.metadata.repository.storage.maven2.DefaultArtifactMappingProvider;
26 import org.apache.archiva.metadata.repository.storage.maven2.Maven2RepositoryPathTranslator;
27 import org.apache.archiva.metadata.repository.storage.maven2.MavenArtifactFacet;
28 import org.apache.commons.lang.StringUtils;
29 import org.apache.archiva.model.ArtifactReference;
30 import org.apache.archiva.repository.layout.LayoutException;
31 import org.springframework.stereotype.Service;
32
33 import java.util.Collections;
34
35 /**
36  * DefaultPathParser is a parser for maven 2 (default layout) paths to ArtifactReference.
37  *
38  * TODO: remove in favour of path translator, this is just delegating for the most part, but won't accommodate other
39  * extensions like NPanday
40  *
41  * @version $Id$
42  */
43 @Service( "pathParser#default" )
44 public class DefaultPathParser
45     implements PathParser
46 {
47     private static final String INVALID_ARTIFACT_PATH = "Invalid path to Artifact: ";
48
49     private RepositoryPathTranslator pathTranslator = new Maven2RepositoryPathTranslator(
50         Collections.<ArtifactMappingProvider>singletonList( new DefaultArtifactMappingProvider() ) );
51
52     /**
53      * {@inheritDoc}
54      *
55      * @see org.apache.archiva.repository.content.PathParser#toArtifactReference(java.lang.String)
56      */
57     public ArtifactReference toArtifactReference( String path )
58         throws LayoutException
59     {
60         if ( StringUtils.isBlank( path ) )
61         {
62             throw new LayoutException( "Unable to convert blank path." );
63         }
64
65         ArtifactMetadata metadata;
66         try
67         {
68             metadata = pathTranslator.getArtifactForPath( null, path );
69         }
70         catch ( IllegalArgumentException e )
71         {
72             throw new LayoutException( e.getMessage(), e );
73         }
74
75         ArtifactReference artifact = new ArtifactReference();
76         artifact.setGroupId( metadata.getNamespace() );
77         artifact.setArtifactId( metadata.getProject() );
78         artifact.setVersion( metadata.getVersion() );
79         MavenArtifactFacet facet = (MavenArtifactFacet) metadata.getFacet( MavenArtifactFacet.FACET_ID );
80         if ( facet != null )
81         {
82             artifact.setClassifier( facet.getClassifier() );
83             artifact.setType( facet.getType() );
84         }
85
86         return artifact;
87     }
88
89 }