]> source.dussan.org Git - archiva.git/blob
b12a82bd0c62cd7cd48249ab7a77c850f09190ba
[archiva.git] /
1 package org.apache.maven.archiva.web.mapper;
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 com.opensymphony.webwork.dispatcher.mapper.ActionMapping;
23 import com.opensymphony.webwork.dispatcher.mapper.DefaultActionMapper;
24
25 import org.apache.commons.lang.StringUtils;
26
27 import java.util.HashMap;
28 import java.util.Map;
29
30 import javax.servlet.http.HttpServletRequest;
31
32 /**
33  * Map alternate URLs to specific actions. Used for the repository browser and the proxy.
34  *
35  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
36  */
37 public class RepositoryActionMapper
38     extends DefaultActionMapper
39 {
40     private static final String ACTION_BROWSE = "browse";
41
42     private static final String ACTION_BROWSE_ARTIFACT = "browseArtifact";
43
44     private static final String ACTION_BROWSE_GROUP = "browseGroup";
45
46     private static final String ACTION_SHOW_ARTIFACT = "showArtifact";
47
48     private static final String ACTION_SHOW_ARTIFACT_DEPENDEES = "showArtifactDependees";
49
50     private static final String ACTION_SHOW_ARTIFACT_DEPENDENCIES = "showArtifactDependencies";
51
52     private static final String ACTION_SHOW_ARTIFACT_DEPENDENCY_TREE = "showArtifactDependencyTree";
53
54     private static final String ACTION_SHOW_ARTIFACT_MAILING_LISTS = "showArtifactMailingLists";
55
56     private static final String BROWSE_PREFIX = "/browse";
57
58     private static final String METHOD_DEPENDENCIES = "dependencies";
59
60     private static final String METHOD_DEPENDENCY_TREE = "dependencyTree";
61
62     private static final String METHOD_MAILING_LISTS = "mailingLists";
63
64     private static final String METHOD_USEDBY = "usedby";
65
66     private static final String PARAM_ARTIFACT_ID = "artifactId";
67
68     private static final String PARAM_GROUP_ID = "groupId";
69
70     private static final String PARAM_VERSION = "version";
71
72     public ActionMapping getMapping( HttpServletRequest httpServletRequest )
73     {
74         String path = httpServletRequest.getServletPath();
75         if ( path.startsWith( BROWSE_PREFIX ) )
76         {
77             path = path.substring( BROWSE_PREFIX.length() );
78             if ( StringUtils.isBlank( path ) ||
79                  StringUtils.equals( path, "/" ) || 
80                  StringUtils.equals( path, ".action" ) )
81             {
82                 // Return "root" browse.
83                 return new ActionMapping( ACTION_BROWSE, "/", "", null );
84             }
85             else
86             {
87                 Map params = new HashMap();
88
89                 if ( path.charAt( 0 ) == '/' )
90                 {
91                     path = path.substring( 1 );
92                 }
93
94                 String[] parts = path.split( "/" );
95                 switch ( parts.length )
96                 {
97                     case 1:
98                         params.put( PARAM_GROUP_ID, parts[0] );
99                         return new ActionMapping( ACTION_BROWSE_GROUP, "/", "", params );
100
101                     case 2:
102                         params.put( PARAM_GROUP_ID, parts[0] );
103                         params.put( PARAM_ARTIFACT_ID, parts[1] );
104                         return new ActionMapping( ACTION_BROWSE_ARTIFACT, "/", "", params );
105
106                     case 3:
107                         params.put( PARAM_GROUP_ID, parts[0] );
108                         params.put( PARAM_ARTIFACT_ID, parts[1] );
109                         params.put( PARAM_VERSION, parts[2] );
110                         return new ActionMapping( ACTION_SHOW_ARTIFACT, "/", "", params );
111
112                     case 4:
113                         params.put( PARAM_GROUP_ID, parts[0] );
114                         params.put( PARAM_ARTIFACT_ID, parts[1] );
115                         params.put( PARAM_VERSION, parts[2] );
116
117                         if ( METHOD_DEPENDENCIES.equals( parts[3] ) )
118                         {
119                             return new ActionMapping( ACTION_SHOW_ARTIFACT_DEPENDENCIES, "/", "", params );
120                         }
121                         else if ( METHOD_MAILING_LISTS.equals( parts[3] ) )
122                         {
123                             return new ActionMapping( ACTION_SHOW_ARTIFACT_MAILING_LISTS, "/", "", params );
124                         }
125                         else if ( METHOD_USEDBY.equals( parts[3] ) )
126                         {
127                             return new ActionMapping( ACTION_SHOW_ARTIFACT_DEPENDEES, "/", "", params );
128                         }
129                         else if ( METHOD_DEPENDENCY_TREE.equals( parts[3] ) )
130                         {
131                             return new ActionMapping( ACTION_SHOW_ARTIFACT_DEPENDENCY_TREE, "/", "", params );
132                         }
133                         break;
134                 }
135             }
136         }
137
138         return super.getMapping( httpServletRequest );
139     }
140
141     public String getUriFromActionMapping( ActionMapping actionMapping )
142     {
143         Map params = actionMapping.getParams();
144         if ( ACTION_BROWSE.equals( actionMapping.getName() ) )
145         {
146             return BROWSE_PREFIX;
147         }
148         else if ( ACTION_BROWSE_GROUP.equals( actionMapping.getName() ) )
149         {
150             return toUri( params, false, false, null );
151         }
152         else if ( ACTION_BROWSE_ARTIFACT.equals( actionMapping.getName() ) )
153         {
154             return toUri( params, true, false, null );
155         }
156         else if ( ACTION_SHOW_ARTIFACT.equals( actionMapping.getName() ) )
157         {
158             return toUri( params, true, true, null );
159         }
160         else if ( ACTION_SHOW_ARTIFACT_DEPENDENCIES.equals( actionMapping.getName() ) )
161         {
162             return toUri( params, true, true, METHOD_DEPENDENCIES );
163         }
164         else if ( ACTION_SHOW_ARTIFACT_MAILING_LISTS.equals( actionMapping.getName() ) )
165         {
166             return toUri( params, true, true, METHOD_MAILING_LISTS );
167         }
168         else if ( ACTION_SHOW_ARTIFACT_DEPENDEES.equals( actionMapping.getName() ) )
169         {
170             return toUri( params, true, true, METHOD_USEDBY );
171         }
172         else if ( ACTION_SHOW_ARTIFACT_DEPENDENCY_TREE.equals( actionMapping.getName() ) )
173         {
174             return toUri( params, true, true, METHOD_DEPENDENCY_TREE );
175         }
176
177         return super.getUriFromActionMapping( actionMapping );
178     }
179
180     private String toUri( Map params, boolean artifactId, boolean version, String method )
181     {
182         StringBuffer buf = new StringBuffer();
183
184         buf.append( BROWSE_PREFIX );
185         buf.append( '/' );
186         buf.append( params.remove( PARAM_GROUP_ID ) );
187
188         if ( artifactId )
189         {
190             buf.append( '/' );
191             buf.append( params.remove( PARAM_ARTIFACT_ID ) );
192
193             if ( version )
194             {
195                 buf.append( '/' );
196                 buf.append( params.remove( PARAM_VERSION ) );
197
198                 if ( StringUtils.isNotBlank( method ) )
199                 {
200                     buf.append( '/' );
201                     buf.append( method );
202                 }
203             }
204         }
205
206         return buf.toString();
207     }
208 }