]> source.dussan.org Git - archiva.git/blob
828667b7a7937017527d664a64bc249398e26b34
[archiva.git] /
1 package org.apache.maven.archiva.webdav;
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.jackrabbit.webdav.DavResourceLocator;
23 import org.apache.jackrabbit.webdav.DavLocatorFactory;
24 import org.apache.jackrabbit.util.Text;
25
26 /**
27  */
28 public class ArchivaDavResourceLocator
29     implements DavResourceLocator, RepositoryLocator
30 {
31     private final String prefix;
32
33     private final String resourcePath;
34
35     private final String href;
36
37     private final String repositoryId;
38
39     private final DavLocatorFactory davLocatorFactory;
40
41     public ArchivaDavResourceLocator( String prefix, String resourcePath, String repositoryId,
42                                       DavLocatorFactory davLocatorFactory )
43     {
44         this.prefix = prefix;
45         this.repositoryId = repositoryId;
46         this.davLocatorFactory = davLocatorFactory;
47         
48         String path = resourcePath;
49         
50         if (!resourcePath.startsWith("/"))
51         {
52             path = "/" + resourcePath;
53         }
54
55         String escapedPath = Text.escapePath( resourcePath );
56         String hrefPrefix = prefix;
57
58         // Ensure no extra slashes when href is joined
59         if ( hrefPrefix.endsWith( "/" ) && escapedPath.startsWith( "/" ) )
60         {
61             hrefPrefix = hrefPrefix.substring( 0, hrefPrefix.length() - 1 );
62         }
63
64         href = hrefPrefix + escapedPath;
65         
66         //Remove trailing slashes otherwise Text.getRelativeParent fails
67         if (resourcePath.endsWith("/") && resourcePath.length() > 1)
68         {
69             path = resourcePath.substring( 0, resourcePath.length() - 1 );
70         }
71         
72         this.resourcePath = path;
73     }
74
75     public String getRepositoryId()
76     {
77         return repositoryId;
78     }
79
80     public String getPrefix()
81     {
82         return prefix;
83     }
84
85     public String getResourcePath()
86     {
87         return resourcePath;
88     }
89
90     public String getWorkspacePath()
91     {
92         return "";
93     }
94
95     public String getWorkspaceName()
96     {
97         return "";
98     }
99
100     public boolean isSameWorkspace( DavResourceLocator locator )
101     {
102         return isSameWorkspace( locator.getWorkspaceName() );
103     }
104
105     public boolean isSameWorkspace( String workspaceName )
106     {
107         return getWorkspaceName().equals( workspaceName );
108     }
109
110     public String getHref( boolean isCollection )
111     {
112         // avoid doubled trailing '/' for the root item
113         String suffix = ( isCollection && !isRootLocation() && !href.endsWith("/") ) ? "/" : "";
114         return href + suffix;
115     }
116
117     public boolean isRootLocation()
118     {
119         return "/".equals( resourcePath );
120     }
121
122     public DavLocatorFactory getFactory()
123     {
124         return davLocatorFactory;
125     }
126
127     public String getRepositoryPath()
128     {
129         return getResourcePath();
130     }
131
132     /**
133      * Computes the hash code from the href, which is built using the final fields prefix and resourcePath.
134      * 
135      * @return the hash code
136      */
137     public int hashCode()
138     {
139         return href.hashCode();
140     }
141
142     /**
143      * Equality of path is achieved if the specified object is a <code>DavResourceLocator</code> object with the same
144      * hash code.
145      * 
146      * @param obj the object to compare to
147      * @return <code>true</code> if the 2 objects are equal; <code>false</code> otherwise
148      */
149     public boolean equals( Object obj )
150     {
151         if ( obj instanceof DavResourceLocator )
152         {
153             DavResourceLocator other = (DavResourceLocator) obj;
154             return hashCode() == other.hashCode();
155         }
156         return false;
157     }
158 }