]> source.dussan.org Git - archiva.git/blob
e32d8d2d6b8878049a1913283ba193f69bad7ab0
[archiva.git] /
1 package org.apache.maven.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.commons.lang.StringUtils;
23 import org.apache.maven.archiva.model.ArchivaArtifact;
24 import org.apache.maven.archiva.model.ArtifactReference;
25 import org.apache.maven.archiva.repository.layout.LayoutException;
26
27 import javax.inject.Inject;
28 import javax.inject.Named;
29 import java.util.HashMap;
30 import java.util.Map;
31
32 /**
33  * AbstractLegacyRepositoryContent
34  *
35  * @version $Id$
36  */
37 public abstract class AbstractLegacyRepositoryContent
38 {
39     private static final String PATH_SEPARATOR = "/";
40
41     private static final Map<String, String> typeToDirectoryMap;
42
43     static
44     {
45         typeToDirectoryMap = new HashMap<String, String>();
46         typeToDirectoryMap.put( "ejb-client", "ejb" );
47         typeToDirectoryMap.put( ArtifactExtensionMapping.MAVEN_ONE_PLUGIN, "plugin" );
48         typeToDirectoryMap.put( "distribution-tgz", "distribution" );
49         typeToDirectoryMap.put( "distribution-zip", "distribution" );
50         typeToDirectoryMap.put( "javadoc", "javadoc.jar" );
51     }
52
53     /**
54      * plexus.requirement role-hint="legacy"
55      */
56     @Inject
57     @Named( value = "pathParser#legacy" )
58     private PathParser legacyPathParser;
59
60     public ArtifactReference toArtifactReference( String path )
61         throws LayoutException
62     {
63         return legacyPathParser.toArtifactReference( path );
64     }
65
66     public String toPath( ArchivaArtifact reference )
67     {
68         if ( reference == null )
69         {
70             throw new IllegalArgumentException( "Artifact reference cannot be null" );
71         }
72
73         return toPath( reference.getGroupId(), reference.getArtifactId(), reference.getVersion(),
74                        reference.getClassifier(), reference.getType() );
75     }
76
77     public String toPath( ArtifactReference reference )
78     {
79         if ( reference == null )
80         {
81             throw new IllegalArgumentException( "Artifact reference cannot be null" );
82         }
83
84         return toPath( reference.getGroupId(), reference.getArtifactId(), reference.getVersion(),
85                        reference.getClassifier(), reference.getType() );
86     }
87
88     private String toPath( String groupId, String artifactId, String version, String classifier, String type )
89     {
90         StringBuilder path = new StringBuilder();
91
92         path.append( groupId ).append( PATH_SEPARATOR );
93         path.append( getDirectory( type ) ).append( PATH_SEPARATOR );
94
95         if ( version != null )
96         {
97             path.append( artifactId ).append( '-' ).append( version );
98
99             if ( StringUtils.isNotBlank( classifier ) )
100             {
101                 path.append( '-' ).append( classifier );
102             }
103
104             path.append( '.' ).append( ArtifactExtensionMapping.getExtension( type ) );
105         }
106
107         return path.toString();
108     }
109
110     private String getDirectory( String type )
111     {
112         String dirname = typeToDirectoryMap.get( type );
113
114         if ( dirname != null )
115         {
116             return dirname + "s";
117         }
118
119         // Default process.
120         return type + "s";
121     }
122
123     public void setLegacyPathParser( PathParser parser )
124     {
125         this.legacyPathParser = parser;
126     }
127 }