View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.plugins.site.render;
20  
21  import java.io.File;
22  import java.io.IOException;
23  import java.util.ArrayList;
24  import java.util.Collection;
25  import java.util.Date;
26  import java.util.HashMap;
27  import java.util.Iterator;
28  import java.util.LinkedHashMap;
29  import java.util.List;
30  import java.util.Locale;
31  import java.util.Map;
32  
33  import org.apache.maven.archiver.MavenArchiver;
34  import org.apache.maven.artifact.Artifact;
35  import org.apache.maven.doxia.site.Menu;
36  import org.apache.maven.doxia.site.MenuItem;
37  import org.apache.maven.doxia.site.SiteModel;
38  import org.apache.maven.doxia.siterenderer.DocumentRenderer;
39  import org.apache.maven.doxia.siterenderer.DocumentRenderingContext;
40  import org.apache.maven.doxia.siterenderer.RendererException;
41  import org.apache.maven.doxia.siterenderer.SiteRenderer;
42  import org.apache.maven.doxia.siterenderer.SiteRenderingContext;
43  import org.apache.maven.doxia.tools.SiteTool;
44  import org.apache.maven.doxia.tools.SiteToolException;
45  import org.apache.maven.execution.MavenSession;
46  import org.apache.maven.model.ReportPlugin;
47  import org.apache.maven.model.Reporting;
48  import org.apache.maven.plugin.MojoExecution;
49  import org.apache.maven.plugin.MojoExecutionException;
50  import org.apache.maven.plugin.MojoFailureException;
51  import org.apache.maven.plugins.annotations.Component;
52  import org.apache.maven.plugins.annotations.Parameter;
53  import org.apache.maven.plugins.site.descriptor.AbstractSiteDescriptorMojo;
54  import org.apache.maven.reporting.MavenReport;
55  import org.apache.maven.reporting.MavenReportException;
56  import org.apache.maven.reporting.exec.MavenReportExecution;
57  import org.apache.maven.reporting.exec.MavenReportExecutor;
58  import org.apache.maven.reporting.exec.MavenReportExecutorRequest;
59  import org.apache.maven.shared.utils.WriterFactory;
60  import org.codehaus.plexus.util.ReaderFactory;
61  
62  import static org.apache.maven.shared.utils.logging.MessageUtils.buffer;
63  
64  /**
65   * Base class for site rendering mojos.
66   *
67   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
68   *
69   */
70  public abstract class AbstractSiteRenderingMojo extends AbstractSiteDescriptorMojo {
71      /**
72       * Module type exclusion mappings
73       * ex: <code>fml  -> **&#47;*-m1.fml</code>  (excludes fml files ending in '-m1.fml' recursively)
74       * <p/>
75       * The configuration looks like this:
76       * <pre>
77       *   &lt;moduleExcludes&gt;
78       *     &lt;moduleType&gt;filename1.ext,**&#47;*sample.ext&lt;/moduleType&gt;
79       *     &lt;!-- moduleType can be one of 'apt', 'fml' or 'xdoc'. --&gt;
80       *     &lt;!-- The value is a comma separated list of           --&gt;
81       *     &lt;!-- filenames or fileset patterns.                   --&gt;
82       *     &lt;!-- Here's an example:                               --&gt;
83       *     &lt;xdoc&gt;changes.xml,navigation.xml&lt;/xdoc&gt;
84       *   &lt;/moduleExcludes&gt;
85       * </pre>
86       */
87      @Parameter
88      private Map<String, String> moduleExcludes;
89  
90      /**
91       * Additional template properties for rendering the site. See
92       * <a href="/doxia/doxia-sitetools/doxia-site-renderer/">Doxia Site Renderer</a>.
93       */
94      @Parameter
95      private Map<String, Object> attributes;
96  
97      /**
98       * Site renderer.
99       */
100     @Component
101     protected SiteRenderer siteRenderer;
102 
103     /**
104      * Directory containing generated documentation in source format (Doxia supported markup).
105      * This is used to pick up other source docs that might have been generated at build time (by reports or any other
106      * build time mean).
107      * This directory is expected to have the same structure as <code>siteDirectory</code>
108      * (ie. one directory per Doxia-source-supported markup types).
109      *
110      * todo should we deprecate in favour of reports directly using Doxia Sink API, without this Doxia source
111      * intermediate step?
112      */
113     @Parameter(alias = "workingDirectory", defaultValue = "${project.build.directory}/generated-site")
114     protected File generatedSiteDirectory;
115 
116     /**
117      * The current Maven session.
118      */
119     @Parameter(defaultValue = "${session}", readonly = true, required = true)
120     protected MavenSession mavenSession;
121 
122     /**
123      * The mojo execution
124      */
125     @Parameter(defaultValue = "${mojoExecution}", readonly = true, required = true)
126     protected MojoExecution mojoExecution;
127 
128     /**
129      * replaces previous reportPlugins parameter, that was injected by Maven core from
130      * reporting section: but this new configuration format has been abandoned.
131      *
132      * @since 3.7.1
133      */
134     @Parameter(defaultValue = "${project.reporting}", readonly = true)
135     private Reporting reporting;
136 
137     /**
138      * Whether to generate the summary page for project reports: project-info.html.
139      *
140      * @since 2.3
141      */
142     @Parameter(property = "generateProjectInfo", defaultValue = "true")
143     private boolean generateProjectInfo;
144 
145     /**
146      * Generate a sitemap. The result will be a "sitemap.html" file at the site root.
147      *
148      * @since 2.1
149      */
150     @Parameter(property = "generateSitemap", defaultValue = "false")
151     private boolean generateSitemap;
152 
153     /**
154      * Specifies the input encoding.
155      *
156      * @since 2.3
157      */
158     @Parameter(property = "encoding", defaultValue = "${project.build.sourceEncoding}")
159     private String inputEncoding;
160 
161     /**
162      * Specifies the output encoding.
163      *
164      * @since 2.3
165      */
166     @Parameter(property = "outputEncoding", defaultValue = "${project.reporting.outputEncoding}")
167     private String outputEncoding;
168 
169     /**
170      * Timestamp for reproducible output archive entries, either formatted as ISO 8601
171      * <code>yyyy-MM-dd'T'HH:mm:ssXXX</code> or as an int representing seconds since the epoch (like
172      * <a href="https://reproducible-builds.org/docs/source-date-epoch/">SOURCE_DATE_EPOCH</a>).
173      *
174      * @since 3.9.0
175      */
176     @Parameter(defaultValue = "${project.build.outputTimestamp}")
177     protected String outputTimestamp;
178 
179     @Component
180     protected MavenReportExecutor mavenReportExecutor;
181 
182     /**
183      * Gets the input files encoding.
184      *
185      * @return The input files encoding, never <code>null</code>.
186      */
187     protected String getInputEncoding() {
188         return (inputEncoding == null || inputEncoding.isEmpty()) ? ReaderFactory.FILE_ENCODING : inputEncoding;
189     }
190 
191     /**
192      * Gets the effective reporting output files encoding.
193      *
194      * @return The effective reporting output file encoding, never <code>null</code>.
195      */
196     protected String getOutputEncoding() {
197         return (outputEncoding == null) ? WriterFactory.UTF_8 : outputEncoding;
198     }
199 
200     /**
201      * Whether to save Velocity processed Doxia content (<code>*.&lt;ext&gt;.vm</code>)
202      * to <code>${generatedSiteDirectory}/processed</code>.
203      *
204      * @since 3.5
205      */
206     @Parameter
207     private boolean saveProcessedContent;
208 
209     protected void checkInputEncoding() {
210         if (inputEncoding == null || inputEncoding.isEmpty()) {
211             getLog().warn("Input file encoding has not been set, using platform encoding " + ReaderFactory.FILE_ENCODING
212                     + ", i.e. build is platform dependent!");
213         }
214     }
215 
216     protected List<MavenReportExecution> getReports() throws MojoExecutionException {
217         MavenReportExecutorRequest mavenReportExecutorRequest = new MavenReportExecutorRequest();
218         mavenReportExecutorRequest.setMavenSession(mavenSession);
219         mavenReportExecutorRequest.setExecutionId(mojoExecution.getExecutionId());
220         mavenReportExecutorRequest.setProject(project);
221         mavenReportExecutorRequest.setReportPlugins(getReportingPlugins());
222 
223         List<MavenReportExecution> allReports = mavenReportExecutor.buildMavenReports(mavenReportExecutorRequest);
224 
225         // filter out reports that can't be generated
226         List<MavenReportExecution> reportExecutions = new ArrayList<>(allReports.size());
227         for (MavenReportExecution exec : allReports) {
228             try {
229                 if (exec.canGenerateReport()) {
230                     reportExecutions.add(exec);
231                 }
232             } catch (MavenReportException e) {
233                 String reportMojoInfo = exec.getPlugin().getId() + ":" + exec.getGoal();
234                 throw new MojoExecutionException(
235                         "Failed to determine whether report '" + reportMojoInfo + "' can be generated", e);
236             }
237         }
238         return reportExecutions;
239     }
240 
241     /**
242      * Get the report plugins from reporting section, adding if necessary (i.e. not excluded)
243      * default reports (i.e. maven-project-info-reports)
244      *
245      * @return the effective list of reports
246      * @since 3.7.1
247      */
248     private ReportPlugin[] getReportingPlugins() {
249         List<ReportPlugin> reportingPlugins = reporting.getPlugins();
250 
251         // MSITE-806: add default report plugin like done in maven-model-builder DefaultReportingConverter
252         boolean hasMavenProjectInfoReportsPlugin = false;
253         for (ReportPlugin plugin : reportingPlugins) {
254             if ("org.apache.maven.plugins".equals(plugin.getGroupId())
255                     && "maven-project-info-reports-plugin".equals(plugin.getArtifactId())) {
256                 hasMavenProjectInfoReportsPlugin = true;
257                 break;
258             }
259         }
260 
261         if (!reporting.isExcludeDefaults() && !hasMavenProjectInfoReportsPlugin) {
262             ReportPlugin mpir = new ReportPlugin();
263             mpir.setArtifactId("maven-project-info-reports-plugin");
264             reportingPlugins.add(mpir);
265         }
266         return reportingPlugins.toArray(new ReportPlugin[0]);
267     }
268 
269     protected SiteRenderingContext createSiteRenderingContext(Locale locale)
270             throws MojoExecutionException, IOException, MojoFailureException {
271         SiteModel siteModel = prepareSiteModel(locale);
272         Map<String, Object> templateProperties = new HashMap<>();
273         templateProperties.put("project", project);
274         templateProperties.put("inputEncoding", getInputEncoding());
275         templateProperties.put("outputEncoding", getOutputEncoding());
276 
277         // Put any of the properties in directly into the Velocity context
278         for (Map.Entry<Object, Object> entry : project.getProperties().entrySet()) {
279             templateProperties.put((String) entry.getKey(), entry.getValue());
280         }
281 
282         // Comes last if someone wants to deliberately override any default or model properties
283         if (attributes != null) {
284             templateProperties.putAll(attributes);
285         }
286 
287         SiteRenderingContext context;
288         try {
289             Artifact skinArtifact =
290                     siteTool.getSkinArtifactFromRepository(repoSession, remoteProjectRepositories, siteModel.getSkin());
291 
292             getLog().info(buffer().a("Rendering content with ")
293                     .strong(skinArtifact.getId() + " skin")
294                     .toString());
295 
296             context = siteRenderer.createContextForSkin(
297                     skinArtifact, templateProperties, siteModel, project.getName(), locale);
298         } catch (SiteToolException e) {
299             throw new MojoExecutionException("Failed to retrieve skin artifact from repository", e);
300         } catch (RendererException e) {
301             throw new MojoExecutionException("Failed to create context for skin", e);
302         }
303 
304         // Add publish date
305         MavenArchiver.parseBuildOutputTimestamp(outputTimestamp).ifPresent(v -> {
306             context.setPublishDate(Date.from(v));
307         });
308 
309         // Generate static site
310         context.setRootDirectory(project.getBasedir());
311         if (!locale.equals(SiteTool.DEFAULT_LOCALE)) {
312             context.addSiteDirectory(new File(siteDirectory, locale.toString()));
313         } else {
314             context.addSiteDirectory(siteDirectory);
315         }
316 
317         if (moduleExcludes != null) {
318             context.setModuleExcludes(moduleExcludes);
319         }
320 
321         if (saveProcessedContent) {
322             File processedDir = new File(generatedSiteDirectory, "processed");
323             if (!locale.equals(SiteTool.DEFAULT_LOCALE)) {
324                 context.setProcessedContentOutput(new File(processedDir, locale.toString()));
325             } else {
326                 context.setProcessedContentOutput(processedDir);
327             }
328         }
329 
330         return context;
331     }
332 
333     /**
334      * Go through the list of reports and process each one like this:
335      * <ul>
336      * <li>Add the report to a map of reports keyed by filename having the report itself as value
337      * <li>If the report is not yet in the map of documents, add it together with a suitable renderer
338      * </ul>
339      *
340      * @param reports A List of MavenReports
341      * @param documents A Map of documents, keyed by filename
342      * @param locale the Locale the reports are processed for.
343      * @return A map with all reports keyed by filename having the report itself as value.
344      * The map will be used to populate a menu.
345      */
346     protected Map<String, MavenReport> locateReports(
347             List<MavenReportExecution> reports, Map<String, DocumentRenderer> documents, Locale locale) {
348         Map<String, MavenReport> reportsByOutputName = new LinkedHashMap<>();
349         for (MavenReportExecution mavenReportExecution : reports) {
350             MavenReport report = mavenReportExecution.getMavenReport();
351 
352             String outputName = report.getOutputName();
353             String filename = outputName + ".html";
354 
355             // Always add the report to the menu, see MSITE-150
356             reportsByOutputName.put(outputName, report);
357 
358             if (documents.containsKey(filename)) {
359                 String reportMojoInfo = mavenReportExecution.getGoal() == null
360                         ? ""
361                         : (" (" + mavenReportExecution.getPlugin().getArtifactId() + ':'
362                                 + mavenReportExecution.getPlugin().getVersion() + ':' + mavenReportExecution.getGoal()
363                                 + ')');
364 
365                 getLog().info("Skipped \"" + report.getName(locale) + "\" report" + reportMojoInfo + ", file \""
366                         + filename + "\" already exists.");
367             } else {
368                 String generator = mavenReportExecution.getGoal() == null
369                         ? null
370                         : mavenReportExecution.getPlugin().getId() + ':' + mavenReportExecution.getGoal();
371                 DocumentRenderingContext docRenderingContext =
372                         new DocumentRenderingContext(siteDirectory, outputName, generator);
373                 DocumentRenderer docRenderer =
374                         new ReportDocumentRenderer(mavenReportExecution, docRenderingContext, getLog());
375                 documents.put(filename, docRenderer);
376             }
377         }
378         return reportsByOutputName;
379     }
380 
381     /**
382      * Go through the collection of reports and put each report into a list for the appropriate category. The list is
383      * put into a map keyed by the name of the category.
384      *
385      * @param reports A Collection of MavenReports
386      * @return A map keyed category having the report itself as value
387      */
388     protected Map<String, List<MavenReport>> categoriseReports(Collection<MavenReport> reports) {
389         Map<String, List<MavenReport>> categories = new LinkedHashMap<>();
390         for (MavenReport report : reports) {
391             List<MavenReport> categoryReports = categories.get(report.getCategoryName());
392             if (categoryReports == null) {
393                 categoryReports = new ArrayList<>();
394                 categories.put(report.getCategoryName(), categoryReports);
395             }
396             categoryReports.add(report);
397         }
398         return categories;
399     }
400 
401     /**
402      * Locate every document to be rendered for given locale:<ul>
403      * <li>handwritten content, ie Doxia files,</li>
404      * <li>reports,</li>
405      * <li>"Project Information" and "Project Reports" category summaries.</li>
406      * </ul>
407      *
408      * @param context the site context
409      * @param reports the documents
410      * @param locale the locale
411      * @return the documents and their renderers
412      * @throws IOException in case of file reading issue
413      * @throws RendererException in case of Doxia rendering issue
414      * @see CategorySummaryDocumentRenderer
415      */
416     protected Map<String, DocumentRenderer> locateDocuments(
417             SiteRenderingContext context, List<MavenReportExecution> reports, Locale locale)
418             throws IOException, RendererException {
419         Map<String, DocumentRenderer> documents = siteRenderer.locateDocumentFiles(context, true);
420 
421         Map<String, MavenReport> reportsByOutputName = locateReports(reports, documents, locale);
422 
423         // TODO: I want to get rid of categories eventually. There's no way to add your own in a fully i18n manner
424         Map<String, List<MavenReport>> categories = categoriseReports(reportsByOutputName.values());
425 
426         siteTool.populateReportsMenu(context.getSiteModel(), locale, categories);
427         populateReportItems(context.getSiteModel(), locale, reportsByOutputName);
428 
429         if (categories.containsKey(MavenReport.CATEGORY_PROJECT_INFORMATION) && generateProjectInfo) {
430             // add "Project Information" category summary document
431             List<MavenReport> categoryReports = categories.get(MavenReport.CATEGORY_PROJECT_INFORMATION);
432             MojoExecution subMojoExecution =
433                     new MojoExecution(mojoExecution.getPlugin(), "project-info", mojoExecution.getExecutionId());
434             DocumentRenderingContext docRenderingContext = new DocumentRenderingContext(
435                     siteDirectory,
436                     subMojoExecution.getGoal(),
437                     subMojoExecution.getPlugin().getId() + ':' + subMojoExecution.getGoal());
438             String title = i18n.getString("site-plugin", locale, "report.information.title");
439             String desc1 = i18n.getString("site-plugin", locale, "report.information.description1");
440             String desc2 = i18n.getString("site-plugin", locale, "report.information.description2");
441             DocumentRenderer docRenderer = new CategorySummaryDocumentRenderer(
442                     subMojoExecution, docRenderingContext, title, desc1, desc2, i18n, categoryReports, getLog());
443 
444             String filename = docRenderer.getOutputName();
445             if (!documents.containsKey(filename)) {
446                 documents.put(filename, docRenderer);
447             } else {
448                 getLog().info("Skipped \"" + title + "\" report; file \"" + filename + "\" already exists.");
449             }
450         }
451 
452         if (categories.containsKey(MavenReport.CATEGORY_PROJECT_REPORTS)) {
453             // add "Project Reports" category summary document
454             List<MavenReport> categoryReports = categories.get(MavenReport.CATEGORY_PROJECT_REPORTS);
455             MojoExecution subMojoExecution =
456                     new MojoExecution(mojoExecution.getPlugin(), "project-reports", mojoExecution.getExecutionId());
457             DocumentRenderingContext docRenderingContext = new DocumentRenderingContext(
458                     siteDirectory,
459                     subMojoExecution.getGoal(),
460                     subMojoExecution.getPlugin().getId() + ':' + subMojoExecution.getGoal());
461             String title = i18n.getString("site-plugin", locale, "report.project.title");
462             String desc1 = i18n.getString("site-plugin", locale, "report.project.description1");
463             String desc2 = i18n.getString("site-plugin", locale, "report.project.description2");
464             DocumentRenderer docRenderer = new CategorySummaryDocumentRenderer(
465                     subMojoExecution, docRenderingContext, title, desc1, desc2, i18n, categoryReports, getLog());
466 
467             String filename = docRenderer.getOutputName();
468             if (!documents.containsKey(filename)) {
469                 documents.put(filename, docRenderer);
470             } else {
471                 getLog().info("Skipped \"" + title + "\" report; file \"" + filename + "\" already exists.");
472             }
473         }
474 
475         if (generateSitemap) {
476             MojoExecution subMojoExecution =
477                     new MojoExecution(mojoExecution.getPlugin(), "sitemap", mojoExecution.getExecutionId());
478             DocumentRenderingContext docRenderingContext = new DocumentRenderingContext(
479                     siteDirectory,
480                     subMojoExecution.getGoal(),
481                     subMojoExecution.getPlugin().getId() + ':' + subMojoExecution.getGoal());
482             String title = i18n.getString("site-plugin", locale, "site.sitemap.title");
483             DocumentRenderer docRenderer = new SitemapDocumentRenderer(
484                     subMojoExecution, docRenderingContext, title, context.getSiteModel(), i18n, getLog());
485 
486             String filename = docRenderer.getOutputName();
487             if (!documents.containsKey(filename)) {
488                 documents.put(filename, docRenderer);
489             } else {
490                 getLog().info("Skipped \"" + title + "\" report; file \"" + filename + "\" already exists.");
491             }
492         }
493 
494         return documents;
495     }
496 
497     protected void populateReportItems(
498             SiteModel siteModel, Locale locale, Map<String, MavenReport> reportsByOutputName) {
499         for (Menu menu : siteModel.getMenus()) {
500             populateItemRefs(menu.getItems(), locale, reportsByOutputName);
501         }
502     }
503 
504     private void populateItemRefs(List<MenuItem> items, Locale locale, Map<String, MavenReport> reportsByOutputName) {
505         for (Iterator<MenuItem> i = items.iterator(); i.hasNext(); ) {
506             MenuItem item = i.next();
507 
508             if (item.getRef() != null) {
509                 MavenReport report = reportsByOutputName.get(item.getRef());
510 
511                 if (report != null) {
512                     if (item.getName() == null) {
513                         item.setName(report.getName(locale));
514                     }
515 
516                     if (item.getHref() == null || item.getHref().length() == 0) {
517                         item.setHref(report.getOutputName() + ".html");
518                     }
519                 } else {
520                     getLog().warn("Unrecognised reference: '" + item.getRef() + "'");
521                     i.remove();
522                 }
523             }
524 
525             populateItemRefs(item.getItems(), locale, reportsByOutputName);
526         }
527     }
528 }