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