]> source.dussan.org Git - archiva.git/blob
368e1a1d7593e49c5e4f580c56cb820e6b7fac68
[archiva.git] /
1 package org.apache.maven.archiva.webdav.util;
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.commons.lang.ArrayUtils;
24 import org.apache.commons.io.FilenameUtils;
25
26 /**
27  * @author <a href="mailto:james@atlassian.com">James William Dumay</a>
28  */
29 public class RepositoryPathUtil
30 {
31     public static String getLogicalResource(final String href)
32     {
33         String logicalResource = null;
34         String requestPathInfo = StringUtils.defaultString( href );
35
36         //remove prefix ie /repository/blah becomes /blah
37         requestPathInfo = removePrefix(requestPathInfo);
38
39         // Remove prefixing slash as the repository id doesn't contain it;
40         if ( requestPathInfo.startsWith( "/" ) )
41         {
42             requestPathInfo = requestPathInfo.substring( 1 );
43         }        
44
45         int slash = requestPathInfo.indexOf( '/' );
46         if ( slash > 0 )
47         {
48             logicalResource = requestPathInfo.substring( slash );
49
50             if (logicalResource.endsWith( "/.." ) )
51             {
52                 logicalResource += "/";
53             }
54
55             if ( logicalResource != null && logicalResource.startsWith( "//" ) )
56             {
57                 logicalResource = logicalResource.substring( 1 );
58             }
59
60             if ( logicalResource == null )
61             {
62                 logicalResource = "/";
63             }
64         }
65         else
66         {
67             logicalResource = "/";
68         }
69         return logicalResource;
70     }
71
72     public static String getRepositoryName(final String href)
73     {
74         String requestPathInfo = StringUtils.defaultString( href );
75
76         //remove prefix ie /repository/blah becomes /blah
77         requestPathInfo = removePrefix(requestPathInfo);
78
79         // Remove prefixing slash as the repository id doesn't contain it;
80         if ( requestPathInfo.startsWith( "/" ) )
81         {
82             requestPathInfo = requestPathInfo.substring( 1 );
83         }
84
85         // Find first element, if slash exists.
86         int slash = requestPathInfo.indexOf( '/' );
87         if ( slash > 0 )
88         {
89             // Filtered: "central/org/apache/maven/" -> "central"
90             return requestPathInfo.substring( 0, slash );
91         }
92         return requestPathInfo;
93     }
94
95     private static String removePrefix(final String href)
96     {
97         String[] parts = StringUtils.split(href, '/');
98         parts = (String[]) ArrayUtils.subarray(parts, 1, parts.length);
99         if (parts == null || parts.length == 0)
100         {
101             return "/";
102         }
103         return StringUtils.join(parts, '/');
104     }
105 }