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