]> source.dussan.org Git - archiva.git/blob
7d9fdb86c374b9899a5e595c88874971fefc745d
[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 org.apache.struts2.StrutsException;
23 import org.apache.struts2.components.Component;
24
25 import com.opensymphony.xwork2.util.ValueStack;
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  * @version $Id$
37  */
38 public class GroupIdLink
39     extends Component
40 {
41     private static final String ACTION = "browseGroup";
42
43     private static final String NAMESPACE = "/";
44
45     private static final boolean includeContext = true;
46
47     private static final boolean encode = true;
48
49     private static final String method = null;
50
51     private HttpServletRequest req;
52
53     private HttpServletResponse res;
54
55     private String groupId;
56
57     private boolean includeTop = false;
58
59     public GroupIdLink( ValueStack stack, HttpServletRequest req, HttpServletResponse res )
60     {
61         super( stack );
62         this.req = req;
63         this.res = res;
64     }
65
66     @Override
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 StrutsException( "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, encode, false, false );
117     }
118
119     private String determineBrowseGroupActionUrl( String gid )
120     {
121         parameters.put( "groupId", gid );
122
123         return determineActionURL( ACTION, NAMESPACE, method, req, res, parameters, req.getScheme(), includeContext, encode, false, false );
124     }
125
126     public String getGroupId()
127     {
128         return groupId;
129     }
130
131     public void setGroupId( String groupId )
132     {
133         this.groupId = groupId;
134     }
135
136     public boolean isIncludeTop()
137     {
138         return includeTop;
139     }
140
141     public void setIncludeTop( boolean includeTop )
142     {
143         this.includeTop = includeTop;
144     }
145
146 }