]> source.dussan.org Git - archiva.git/blob
37871480cfb84b66f786e328918acbc9f0b7c029
[archiva.git] /
1 package org.apache.maven.archiva.web.tags;
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.WebWorkException;
23 import com.opensymphony.webwork.components.Component;
24 import com.opensymphony.xwork.util.OgnlValueStack;
25
26 import java.io.IOException;
27 import java.io.Writer;
28 import java.util.StringTokenizer;
29
30 import javax.servlet.http.HttpServletRequest;
31 import javax.servlet.http.HttpServletResponse;
32
33 /**
34  * GroupIdLink 
35  *
36  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
37  * @version $Id$
38  */
39 public class GroupIdLink
40     extends Component
41 {
42     private static final String ACTION = "browseGroup";
43
44     private static final String NAMESPACE = "/";
45
46     private static final boolean includeContext = true;
47
48     private static final boolean encode = true;
49
50     private static final String method = null;
51
52     private HttpServletRequest req;
53
54     private HttpServletResponse res;
55
56     private String groupId;
57
58     private boolean includeTop = false;
59
60     public GroupIdLink( OgnlValueStack stack, HttpServletRequest req, HttpServletResponse res )
61     {
62         super( stack );
63         this.req = req;
64         this.res = res;
65     }
66
67     public boolean end( Writer writer, String body )
68     {
69         StringBuffer sb = new StringBuffer();
70
71         sb.append( "<span class=\"groupId\">" );
72
73         if ( includeTop )
74         {
75             sb.append( "<a href=\"" );
76             sb.append( determineBrowseActionUrl() );
77             sb.append( "\">[top]</a> / " ); // TODO: i18n
78         }
79
80         StringTokenizer tok = new StringTokenizer( groupId, "." );
81         String cumulativeGroup = null;
82
83         while ( tok.hasMoreTokens() )
84         {
85             String token = tok.nextToken();
86
87             if ( cumulativeGroup == null )
88             {
89                 cumulativeGroup = token;
90             }
91             else
92             {
93                 cumulativeGroup += "." + token;
94             }
95             sb.append( "<a href=\"" );
96             sb.append( determineBrowseGroupActionUrl( cumulativeGroup ) );
97             sb.append( "\">" ).append( token ).append( "</a> / " );
98         }
99         
100         sb.append( "</span>" );
101
102         try
103         {
104             writer.write( sb.toString() );
105         }
106         catch ( IOException e )
107         {
108             throw new WebWorkException( "IOError: " + e.getMessage(), e );
109         }
110
111         return super.end( writer, body );
112     }
113
114     private String determineBrowseActionUrl()
115     {
116         return determineActionURL( "browse", NAMESPACE, method, req, res, parameters, req.getScheme(), includeContext,
117                                    encode, true );
118     }
119
120     private String determineBrowseGroupActionUrl( String gid )
121     {
122         parameters.put( "groupId", gid );
123
124         return determineActionURL( ACTION, NAMESPACE, method, req, res, parameters, req.getScheme(), includeContext,
125                                    encode, true );
126     }
127
128     public String getGroupId()
129     {
130         return groupId;
131     }
132
133     public void setGroupId( String groupId )
134     {
135         this.groupId = groupId;
136     }
137
138     public boolean isIncludeTop()
139     {
140         return includeTop;
141     }
142
143     public void setIncludeTop( boolean includeTop )
144     {
145         this.includeTop = includeTop;
146     }
147
148 }