View Javadoc
1   package org.apache.maven.plugins.site.deploy;
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.util.Map;
23  import org.apache.commons.lang.StringUtils;
24  import org.apache.maven.model.Build;
25  import org.apache.maven.model.Plugin;
26  import org.apache.maven.model.PluginManagement;
27  import org.apache.maven.model.Site;
28  import org.apache.maven.plugin.MojoExecutionException;
29  import org.apache.maven.plugins.annotations.Mojo;
30  import org.apache.maven.plugins.annotations.Parameter;
31  import org.apache.maven.plugins.annotations.ResolutionScope;
32  import org.apache.maven.project.MavenProject;
33  import org.codehaus.plexus.util.xml.Xpp3Dom;
34  
35  /**
36   * Deploys the generated site to a staging or mock URL to the site URL
37   * specified in the <code>&lt;distributionManagement&gt;</code> section of the
38   * POM, using <a href="/wagon/">wagon supported protocols</a>
39   *
40   * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
41   * @version $Id: SiteStageDeployMojo.html 914946 2014-07-03 23:00:36Z hboutemy $
42   * @since 2.0
43   */
44  @Mojo( name = "stage-deploy", requiresDependencyResolution = ResolutionScope.TEST )
45  public class SiteStageDeployMojo
46      extends AbstractStagingMojo
47  {
48      /**
49       * The staged site will be deployed to this URL.
50       * <p/>
51       * If you don't specify this, the default-value will be
52       * "${project.distributionManagement.site.url}/staging", where "project" is
53       * either the current project or, in a reactor build, the top level project
54       * in the reactor.
55       * <p>
56       * Note that even if you specify this plugin parameter, you still need to indicate
57       * ${project.distributionManagement.site.url} at least in your top level project
58       * in order for relative links between modules to be resolved correctly.
59       * </p>
60       *
61       * @see <a href="http://maven.apache.org/maven-model/maven.html#class_site">MavenModel#class_site</a>
62       *
63       * @since 2.3
64       */
65      @Parameter( property = "stagingSiteURL" )
66      private String stagingSiteURL;
67  
68      /**
69       * The identifier of the repository where the staging site will be deployed. This id will be used to lookup a
70       * corresponding <code>&lt;server&gt;</code> entry from the <code>settings.xml</code>. If a matching
71       * <code>&lt;server&gt;</code> entry is found, its configured credentials will be used for authentication.
72       * <p/>
73       * If this is not specified, then the corresponding value of <code>distributionManagement.site.id</code>
74       * will be taken as default, unless this is not defined either then the String
75       * <code>"stagingSite"</code> is used. (<strong>Note</strong>:
76       * until v. 2.3 and 3.0-beta-3 the String <code>"stagingSite"</code> is always used.)
77       *
78       * @since 2.0.1
79       */
80      @Parameter( property = "stagingRepositoryId" )
81      private String stagingRepositoryId;
82  
83      @Override
84      protected boolean isDeploy()
85      {
86          return true;
87      }
88  
89      /**
90       * If <code>stagingSiteURL</code> is configured, top most parent with same staging site url
91       * will be used.
92       */
93      @Override
94      protected String determineTopDistributionManagementSiteUrl()
95          throws MojoExecutionException
96      {
97          if ( StringUtils.isNotEmpty( topSiteURL ) )
98          {
99              return topSiteURL;
100         }
101 
102         if ( StringUtils.isNotEmpty( stagingSiteURL ) )
103         {
104             // We need to calculate the first project that supplied same stagingSiteURL
105             return getSite( getTopMostParentWithSameStagingSiteURL() ).getUrl();
106         }
107 
108         return super.determineTopDistributionManagementSiteUrl();
109     }
110 
111     @Override
112     protected Site determineDeploySite()
113         throws MojoExecutionException
114     {
115         Site top = new Site();
116 
117         top.setId( stagingRepoId() );
118         getLog().info( "Using this server ID for stage deploy: " + top.getId() );
119 
120         String stagingURL = determineStageDeploySiteURL();
121         getLog().info( "Using this base URL for stage deploy: " + stagingURL );
122 
123         top.setUrl( stagingURL );
124 
125         return top;
126     }
127 
128     /**
129      * Extract the distributionManagement.site of the top most project in the
130      * hierarchy that specifies a stagingSiteURL, starting at the actual MavenProject.
131      * <p/>
132      * This climbs up the project hierarchy and returns the site of the top most
133      * project for which
134      * {@link #getStagingSiteURL(org.apache.maven.project.MavenProject)} returns
135      * same URL as actual.
136      *
137      * @return the site for the top most project that has a stagingSiteURL. Not null.
138      */
139     private MavenProject getTopMostParentWithSameStagingSiteURL()
140     {
141         MavenProject current = project;
142         MavenProject parent;
143 
144         while (   // MSITE-585, MNG-1943
145                 ( parent = siteTool.getParentProject( current, reactorProjects, localRepository ) ) != null
146                 && stagingSiteURL.equals( getStagingSiteURL( parent ) ) )
147         {
148             current = parent;
149         }
150 
151         return current;
152     }
153 
154     /**
155      * Extract the value of the stagingSiteURL configuration parameter of
156      * maven-site-plugin for the given project.
157      *
158      * @param project The MavenProject, not null
159      * @return The stagingSiteURL for the project, or null if it doesn't have one
160      */
161     private String getStagingSiteURL( MavenProject project )
162     {
163         final String sitePluginKey = "org.apache.maven.plugins:maven-site-plugin";
164 
165         if ( project == null )
166         {
167             return null;
168         }
169 
170         final Build build = project.getBuild();
171         if ( build == null )
172         {
173             return null;
174         }
175 
176         Map<String, Plugin> plugins = build.getPluginsAsMap();
177 
178         Plugin sitePlugin = plugins.get( sitePluginKey );
179         if ( sitePlugin == null )
180         {
181             final PluginManagement buildPluginManagement = build.getPluginManagement();
182             if ( buildPluginManagement == null )
183             {
184                 return null;
185             }
186 
187             plugins = buildPluginManagement.getPluginsAsMap();
188             sitePlugin = plugins.get( sitePluginKey );
189         }
190 
191         if ( sitePlugin == null )
192         {
193             return null;
194         }
195 
196         final Xpp3Dom sitePluginConfiguration = (Xpp3Dom) sitePlugin.getConfiguration();
197         if ( sitePluginConfiguration == null )
198         {
199             return null;
200         }
201 
202         final Xpp3Dom child = sitePluginConfiguration.getChild( "stagingSiteURL" );
203         if ( child == null )
204         {
205             return null;
206         }
207         else
208         {
209             return child.getValue();
210         }
211     }
212 
213     /**
214      * Find the URL where staging will take place.
215      *
216      * @return the site URL for staging
217      */
218     private String determineStageDeploySiteURL()
219         throws MojoExecutionException
220     {
221         if ( stagingSiteURL != null )
222         {
223             // the user has specified a stagingSiteURL - use it
224             getLog().debug( "stagingSiteURL specified by the user: " + stagingSiteURL );
225             return stagingSiteURL;
226         }
227 
228         // The user didn't specify a URL, use the top level site distribution URL and add "[/]staging/" to it
229         String defaultStagingSiteURL = appendSlash( getTopDistributionManagementSiteUrl() ) + DEFAULT_STAGING_DIRECTORY;
230         getLog().debug( "stagingSiteURL NOT specified, using the top level project: " + defaultStagingSiteURL );
231 
232         return defaultStagingSiteURL;
233     }
234 
235     private String stagingRepoId()
236     {
237         if ( stagingRepositoryId != null )
238         {
239             return stagingRepositoryId;
240         }
241 
242         try
243         {
244             return getSite( project ).getId();
245         }
246         catch ( MojoExecutionException ex )
247         {
248             return "stagingSite";
249         }
250     }
251 }