]> source.dussan.org Git - archiva.git/blob
2f9f95fe6a1baef465f3f0c1d22c679af2393c14
[archiva.git] /
1 package org.apache.archiva.repository.maven.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  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.repository.*;
22 import org.apache.archiva.repository.content.ItemSelector;
23 import org.apache.archiva.repository.content.PathParser;
24 import org.apache.archiva.repository.features.RepositoryFeature;
25 import org.apache.archiva.repository.metadata.base.MetadataTools;
26 import org.apache.commons.lang3.StringUtils;
27
28 /**
29  * RepositoryRequest is used to determine the type of request that is incoming, and convert it to an appropriate
30  * ArtifactReference.
31  */
32 public class MavenRepositoryRequestInfo implements RepositoryRequestInfo
33 {
34     private PathParser defaultPathParser = new DefaultPathParser();
35
36     ManagedRepository repository;
37
38     public MavenRepositoryRequestInfo(ManagedRepository repository)
39     {
40         this.repository = repository;
41     }
42
43     @Override
44     public ItemSelector toItemSelector( String requestPath ) throws LayoutException
45     {
46         return repository.getContent( ).toItemSelector( requestPath );
47     }
48
49     /**
50      * <p>
51      * Tests the path to see if it conforms to the expectations of a metadata request.
52      * </p>
53      * <p>
54      * NOTE: This does a cursory check on the path's last element.  A result of true
55      * from this method is not a guarantee that the metadata is in a valid format, or
56      * that it even contains data.
57      * </p>
58      *
59      * @param requestedPath the path to test.
60      * @return true if the requestedPath is likely a metadata request.
61      */
62     public boolean isMetadata( String requestedPath )
63     {
64         return requestedPath.endsWith( "/" + MetadataTools.MAVEN_METADATA );
65     }
66
67     /**
68      * @param requestedPath
69      * @return true if the requestedPath is likely an archetype catalog request.
70      */
71     public boolean isArchetypeCatalog( String requestedPath )
72     {
73         return requestedPath.endsWith( "/" + MetadataTools.MAVEN_ARCHETYPE_CATALOG );
74     }
75
76     /**
77      * <p>
78      * Tests the path to see if it conforms to the expectations of a support file request.
79      * </p>
80      * <p>
81      * Tests for <code>.sha1</code>, <code>.md5</code>, <code>.asc</code>, and <code>.php</code>.
82      * </p>
83      * <p>
84      * NOTE: This does a cursory check on the path's extension only.  A result of true
85      * from this method is not a guarantee that the support resource is in a valid format, or
86      * that it even contains data.
87      * </p>
88      *
89      * @param requestedPath the path to test.
90      * @return true if the requestedPath is likely that of a support file request.
91      */
92     public boolean isSupportFile( String requestedPath )
93     {
94         int idx = requestedPath.lastIndexOf( '.' );
95         if ( idx <= 0 )
96         {
97             return false;
98         }
99
100         String ext = requestedPath.substring( idx );
101         return ( ".sha1".equals( ext ) || ".md5".equals( ext ) || ".asc".equals( ext ) || ".pgp".equals( ext ) );
102     }
103
104     public boolean isMetadataSupportFile( String requestedPath )
105     {
106         if ( isSupportFile( requestedPath ) )
107         {
108             String basefilePath = StringUtils.substring( requestedPath, 0, requestedPath.lastIndexOf( '.' ) );
109             if ( isMetadata( basefilePath ) )
110             {
111                 return true;
112             }
113         }
114
115         return false;
116     }
117
118     @Override
119     public String getLayout(String requestPath) {
120         if (isDefault(requestPath)) {
121             return "default";
122         } else if (isLegacy(requestPath)) {
123             return "legacy";
124         } else {
125             return "unknown";
126         }
127     }
128
129     /**
130      * <p>
131      * Tests the path to see if it conforms to the expectations of a default layout request.
132      * </p>
133      * <p>
134      * NOTE: This does a cursory check on the count of path elements only.  A result of
135      * true from this method is not a guarantee that the path sections are valid and
136      * can be resolved to an artifact reference.  use {@link #toItemSelector(String)}
137      * if you want a more complete analysis of the validity of the path.
138      * </p>
139      *
140      * @param requestedPath the path to test.
141      * @return true if the requestedPath is likely that of a default layout request.
142      */
143     private boolean isDefault( String requestedPath )
144     {
145         if ( StringUtils.isBlank( requestedPath ) )
146         {
147             return false;
148         }
149
150         String pathParts[] = StringUtils.splitPreserveAllTokens( requestedPath, '/' );
151         if ( pathParts.length > 3 )
152         {
153             return true;
154         }
155         else if ( pathParts.length == 3 )
156         {
157             // check if artifact-level metadata (ex. eclipse/jdtcore/maven-metadata.xml)
158             if ( isMetadata( requestedPath ) )
159             {
160                 return true;
161             }
162             else
163             {
164                 // check if checksum of artifact-level metadata (ex. eclipse/jdtcore/maven-metadata.xml.sha1)
165                 int idx = requestedPath.lastIndexOf( '.' );
166                 if ( idx > 0 )
167                 {
168                     String base = requestedPath.substring( 0, idx );
169                     if ( isMetadata( base ) && isSupportFile( requestedPath ) )
170                     {
171                         return true;
172                     }
173                 }
174
175                 return false;
176             }
177         }
178         else
179         {
180             return false;
181         }
182     }
183
184     /**
185      * <p>
186      * Tests the path to see if it conforms to the expectations of a legacy layout request.
187      * </p>
188      * <p>
189      * NOTE: This does a cursory check on the count of path elements only.  A result of
190      * true from this method is not a guarantee that the path sections are valid and
191      * can be resolved to an artifact reference.  Use {@link #toItemSelector(String)}
192      * if you want a more complete analysis of the validity of the path.
193      * </p>
194      *
195      * @param requestedPath the path to test.
196      * @return true if the requestedPath is likely that of a legacy layout request.
197      */
198     private boolean isLegacy( String requestedPath )
199     {
200         if ( StringUtils.isBlank( requestedPath ) )
201         {
202             return false;
203         }
204
205         String pathParts[] = StringUtils.splitPreserveAllTokens( requestedPath, '/' );
206         return pathParts.length == 3;
207     }
208
209     /**
210      * Adjust the requestedPath to conform to the native layout of the provided {@link BaseRepositoryContentLayout}.
211      *
212      * @param requestedPath the incoming requested path.
213      * @return the adjusted (to native) path.
214      * @throws LayoutException if the path cannot be parsed.
215      */
216     public String toNativePath( String requestedPath)
217         throws LayoutException
218     {
219         if ( StringUtils.isBlank( requestedPath ) )
220         {
221             throw new LayoutException( "Request Path is blank." );
222         }
223
224         String referencedResource = requestedPath;
225         // No checksum by default.
226         String supportfile = "";
227
228         // Figure out support file, and actual referencedResource.
229         if ( isSupportFile( requestedPath ) )
230         {
231             int idx = requestedPath.lastIndexOf( '.' );
232             referencedResource = requestedPath.substring( 0, idx );
233             supportfile = requestedPath.substring( idx );
234         }
235
236         if ( isMetadata( referencedResource ) )
237         {
238             /* Nothing to translate.
239              * Default layout is the only layout that can contain maven-metadata.xml files, and
240              * if the managedRepository is layout legacy, this request would never occur.
241              */
242             if (requestedPath.startsWith( "/" )) {
243                 return requestedPath;
244             } else
245             {
246                 return "/"+requestedPath;
247             }
248         }
249
250
251
252         // Treat as an artifact reference.
253         String adjustedPath = repository.getContent( ).toPath( repository.getContent( ).toItem( requestedPath ) );
254         return adjustedPath + supportfile;
255     }
256
257     @Override
258     public <T extends RepositoryFeature<T>> RepositoryFeature<T> getFeature(Class<T> clazz) throws UnsupportedFeatureException {
259         return null;
260     }
261
262     @Override
263     public <T extends RepositoryFeature<T>> boolean supportsFeature(Class<T> clazz) {
264         return false;
265     }
266 }