]> source.dussan.org Git - archiva.git/blob
b8cff4f7a46f1cf12d0f55b959f3eb6d9cc78956
[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 java.io.IOException;
23
24 import javax.servlet.jsp.JspException;
25 import javax.servlet.jsp.JspWriter;
26 import javax.servlet.jsp.PageContext;
27 import javax.servlet.jsp.tagext.TagSupport;
28
29 import org.apache.commons.lang.StringEscapeUtils;
30 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
31 import org.apache.maven.archiva.web.util.ContextUtils;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34
35 /**
36  * CopyPasteSnippetTag 
37  *
38  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
39  * @version $Id$
40  */
41 public class CopyPasteSnippetTag
42     extends TagSupport
43 {
44     private Logger log = LoggerFactory.getLogger( CopyPasteSnippetTag.class );
45     
46     private Object object;
47     
48     private String wrapper = PRE;
49
50     public static final String PRE = "pre";
51     
52     public static final String TOGGLE = "toggle";
53     
54     @Override
55     public void release()
56     {
57         object = null;
58         super.release();
59     }
60
61     @Override
62     public int doEndTag()
63         throws JspException
64     {
65         StringBuffer prefix = new StringBuffer();
66         StringBuffer buf = new StringBuffer();
67         StringBuffer suffix = new StringBuffer();
68         
69         if ( object == null )
70         {
71             buf.append( "Error generating snippet." );
72             log.error( "Unable to generate snippet for null object." );
73         }
74         else if ( object instanceof ManagedRepositoryConfiguration )
75         {
76             ManagedRepositoryConfiguration repo = (ManagedRepositoryConfiguration) object;
77             
78             if ( TOGGLE.equals( wrapper ) )
79             {
80                 prefix.append( "<a href=\"#\" class=\"expand\">Show POM Snippet</a><br/>" );
81                 prefix.append( "<pre class=\"pom\"><code>" );
82         
83                 suffix.append( "</code></pre>" );
84             }
85             else if ( PRE.equals( wrapper ) )
86             {
87                 prefix.append( "<pre>" );
88                 suffix.append( "</pre>" );
89             }
90             
91             createSnippet( buf, repo, pageContext );
92         }
93         else
94         {
95             buf.append( "Unable to generate snippet for object " ).append( object.getClass().getName() );
96         }
97         
98         try
99         {
100             JspWriter out = pageContext.getOut();
101         
102             out.write( prefix.toString() );
103             out.write( StringEscapeUtils.escapeXml( buf.toString() ) );
104             out.write( suffix.toString() );
105             
106             out.flush();
107         }
108         catch ( IOException e )
109         {
110             throw new JspException( "Unable to write snippet to output: " + e.getMessage(), e );
111         }
112
113         return super.doEndTag();
114     }
115
116     public void setObject( Object object )
117     {
118         this.object = object;
119     }
120
121     public void setWrapper( String wrapper )
122     {
123         this.wrapper = wrapper;
124     }
125
126     private void createSnippet( StringBuffer snippet, ManagedRepositoryConfiguration repo, PageContext pageContext )
127     {
128         snippet.append( "<project>\n" );
129         snippet.append( "  ...\n" );
130         snippet.append( "  <distributionManagement>\n" );
131
132         String distRepoName = "repository";
133         if ( repo.isSnapshots() )
134         {
135             distRepoName = "snapshotRepository";
136         }
137
138         snippet.append( "    <" ).append( distRepoName ).append( ">\n" );
139         snippet.append( "      <id>" ).append( repo.getId() ).append( "</id>\n" );
140         snippet.append( "      <url>dav:" ).append( ContextUtils.getBaseURL( pageContext, "repository" ) );
141         snippet.append( "/" ).append( repo.getId() ).append( "/" ).append( "</url>\n" );
142
143         if ( !"default".equals( repo.getLayout() ) )
144         {
145             snippet.append( "      <layout>" ).append( repo.getLayout() ).append( "</layout>" );
146         }
147
148         snippet.append( "    </" ).append( distRepoName ).append( ">\n" );
149         snippet.append( "  </distributionManagement>\n" );
150         snippet.append( "\n" );
151
152         snippet.append( "  <repositories>\n" );
153         snippet.append( "    <repository>\n" );
154         snippet.append( "      <id>" ).append( repo.getId() ).append( "</id>\n" );
155         snippet.append( "      <name>" ).append( repo.getName() ).append( "</name>\n" );
156
157         snippet.append( "      <url>" );
158         snippet.append( ContextUtils.getBaseURL( pageContext, "repository" ) );
159         snippet.append( "/" ).append( repo.getId() ).append( "/" );
160
161         snippet.append( "</url>\n" );
162
163         if ( !"default".equals( repo.getLayout() ) )
164         {
165             snippet.append( "      <layout>" ).append( repo.getLayout() ).append( "</layout>\n" );
166         }
167
168         snippet.append( "      <releases>\n" );
169         snippet.append( "        <enabled>" ).append( Boolean.valueOf( repo.isReleases() ) ).append( "</enabled>\n" );
170         snippet.append( "      </releases>\n" );
171         snippet.append( "      <snapshots>\n" );
172         snippet.append( "        <enabled>" ).append( Boolean.valueOf( repo.isSnapshots() ) ).append( "</enabled>\n" );
173         snippet.append( "      </snapshots>\n" );
174         snippet.append( "    </repository>\n" );
175         snippet.append( "  </repositories>\n" );
176
177         snippet.append( "  ...\n" );
178         snippet.append( "</project>\n" );
179     }
180 }