Content of file DefaultNodeContainerViewController.java.html
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../../jacoco-resources/report.gif" type="image/gif"/><title>DefaultNodeContainerViewController.java</title><link rel="stylesheet" href="../../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../../index.html" class="el_report">NorthernWind :: Frontend :: Components :: HTML Template</a> > <a href="../index.html" class="el_bundle">it-tidalwave-northernwind-frontend-components</a> > <a href="index.source.html" class="el_package">it.tidalwave.northernwind.frontend.ui.component.nodecontainer</a> > <span class="el_source">DefaultNodeContainerViewController.java</span></div><h1>DefaultNodeContainerViewController.java</h1><pre class="source lang-java linenums">/*
* #%L
* *********************************************************************************************************************
*
* NorthernWind - lightweight CMS
* http://northernwind.tidalwave.it - git clone https://bitbucket.org/tidalwave/northernwind-src.git
* %%
* Copyright (C) 2011 - 2023 Tidalwave s.a.s. (http://tidalwave.it)
* %%
* *********************************************************************************************************************
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* *********************************************************************************************************************
*
*
* *********************************************************************************************************************
* #L%
*/
package it.tidalwave.northernwind.frontend.ui.component.nodecontainer;
import javax.annotation.Nonnull;
import java.util.List;
import java.util.Optional;
import java.util.stream.Stream;
import it.tidalwave.util.Key;
import it.tidalwave.northernwind.core.model.RequestLocaleManager;
import it.tidalwave.northernwind.core.model.ResourcePath;
import it.tidalwave.northernwind.core.model.ResourceProperties;
import it.tidalwave.northernwind.core.model.SiteNode;
import it.tidalwave.northernwind.frontend.ui.RenderContext;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import static java.util.Collections.emptyList;
import static java.util.stream.Collectors.*;
import static it.tidalwave.northernwind.core.model.Content.*;
import static it.tidalwave.northernwind.core.model.SiteNode._SiteNode_;
import static it.tidalwave.northernwind.frontend.ui.component.Properties.P_TEMPLATE_PATH;
/***********************************************************************************************************************
*
* @author Fabrizio Giudici
*
**********************************************************************************************************************/
<span class="fc" id="L52">@RequiredArgsConstructor @Slf4j</span>
public class DefaultNodeContainerViewController implements NodeContainerViewController
{
// TODO: this class should not set the HTML contents... it should be a responsibility of the view.
// Instead, it should pass unformatted objects
private static final String RSS_MIME_TYPE = "application/rss+xml";
private static final String TEMPLATE_LINK_SCREEN_CSS =
"<link rel=\"stylesheet\" media=\"screen\" href=\"%s\" type=\"text/css\" />%n";
private static final String TEMPLATE_LINK_PRINT_CSS =
"<link rel=\"stylesheet\" media=\"print\" href=\"%s\" type=\"text/css\" />%n";
// Always use </script> to close, as some browsers break without
private static final String TEMPLATE_SCRIPT =
"<script type=\"text/javascript\" src=\"%s\"></script>%n";
private static final String TEMPLATE_RSS_LINK =
"<link rel=\"alternate\" type=\"%s\" title=\"%s\" href=\"%s\" />%n";
@Nonnull
private final NodeContainerView view;
@Nonnull
private final SiteNode siteNode;
@Nonnull
private final RequestLocaleManager requestLocaleManager;
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
@Override
public void renderView (@Nonnull final RenderContext context)
throws Exception
{
<span class="fc" id="L90"> final var viewProperties = getViewProperties();</span>
<span class="fc" id="L91"> final var siteNodeProperties = context.getRequestContext().getNodeProperties();</span>
<span class="fc" id="L92"> viewProperties.getProperty(P_TEMPLATE_PATH).flatMap(p -> siteNode.getSite().getTemplate(getClass(), p))</span>
<span class="fc" id="L93"> .ifPresent(view::setTemplate);</span>
<span class="fc" id="L95"> view.addAttribute("language", requestLocaleManager.getLocales().get(0).getLanguage());</span>
<span class="fc" id="L96"> viewProperties.getProperty(P_DESCRIPTION).ifPresent(d -> view.addAttribute("description", d));</span>
<span class="fc" id="L97"> viewProperties.getProperty(P_TITLE_PREFIX).ifPresent(p -> view.addAttribute("titlePrefix", p));</span>
<span class="fc" id="L98"> Stream.of(siteNodeProperties.getProperty(PD_TITLE), siteNodeProperties.getProperty(P_TITLE)) // TODO: use multi-key</span>
<span class="fc" id="L99"> .filter(Optional::isPresent)</span>
<span class="fc" id="L100"> .map(Optional::get)</span>
<span class="fc" id="L101"> .findFirst().ifPresent(s -> view.addAttribute("title", s));</span>
<span class="fc" id="L102"> view.addAttribute("screenCssSection", computeScreenCssSection());</span>
<span class="fc" id="L103"> view.addAttribute("printCssSection", computePrintCssSection());</span>
<span class="fc" id="L104"> view.addAttribute("rssFeeds", computeRssFeedsSection());</span>
<span class="fc" id="L105"> view.addAttribute("scripts", computeScriptsSection());</span>
<span class="fc" id="L106"> view.addAttribute("inlinedScripts", computeInlinedScriptsSection());</span>
<span class="pc" id="L107"> siteNodeProperties.getProperty(PD_IMAGE_ID).ifPresent(id -> view.addAttribute("imageId", id));</span>
<span class="pc" id="L108"> siteNodeProperties.getProperty(PD_URL).ifPresent(id -> view.addAttribute("url", id));</span>
<span class="fc" id="L109"> }</span>
/*******************************************************************************************************************
*
* .
*
******************************************************************************************************************/
@Nonnull
protected ResourceProperties getViewProperties()
{
<span class="fc" id="L119"> return siteNode.getPropertyGroup(view.getId());</span>
}
/*******************************************************************************************************************
*
* .
*
******************************************************************************************************************/
@Nonnull
private String computeScreenCssSection()
{
<span class="fc" id="L130"> return streamOf(P_SCREEN_STYLE_SHEETS)</span>
<span class="fc" id="L131"> .map(this::createLink)</span>
<span class="fc" id="L132"> .map(link -> String.format(TEMPLATE_LINK_SCREEN_CSS, link))</span>
<span class="fc" id="L133"> .collect(joining());</span>
}
/*******************************************************************************************************************
*
* .
*
******************************************************************************************************************/
@Nonnull
private String computePrintCssSection()
{
<span class="fc" id="L144"> return streamOf(P_PRINT_STYLE_SHEETS)</span>
<span class="fc" id="L145"> .map(this::createLink)</span>
<span class="fc" id="L146"> .map(link -> String.format(TEMPLATE_LINK_PRINT_CSS, link))</span>
<span class="fc" id="L147"> .collect(joining());</span>
}
/*******************************************************************************************************************
*
* .
*
******************************************************************************************************************/
@Nonnull
private String computeRssFeedsSection()
{
<span class="fc" id="L158"> final var site = siteNode.getSite();</span>
<span class="fc" id="L159"> return streamOf(P_RSS_FEEDS)</span>
<span class="fc" id="L160"> .flatMap(relativePath -> site.find(_SiteNode_).withRelativePath(relativePath).stream())</span>
<span class="fc" id="L161"> .map(node -> String.format(TEMPLATE_RSS_LINK,</span>
RSS_MIME_TYPE,
<span class="fc" id="L163"> node.getProperty(P_TITLE).orElse("RSS"),</span>
<span class="fc" id="L164"> site.createLink(node.getRelativeUri())))</span>
<span class="fc" id="L165"> .collect(joining());</span>
}
/*******************************************************************************************************************
*
* .
*
******************************************************************************************************************/
@Nonnull
private String computeScriptsSection()
{
<span class="fc" id="L176"> return streamOf(P_SCRIPTS)</span>
<span class="fc" id="L177"> .map(relativeUri -> siteNode.getSite().createLink(ResourcePath.of(relativeUri)))</span>
<span class="fc" id="L178"> .map(link -> String.format(TEMPLATE_SCRIPT, link))</span>
<span class="fc" id="L179"> .collect(joining());</span>
}
/*******************************************************************************************************************
*
* .
*
******************************************************************************************************************/
@Nonnull
protected String computeInlinedScriptsSection()
{
<span class="fc" id="L190"> return streamOf(P_INLINED_SCRIPTS)</span>
<span class="fc" id="L191"> .flatMap(path -> siteNode.getSite().find(_Content_).withRelativePath(path).stream())</span>
<span class="fc" id="L192"> .flatMap(script -> script.getProperty(P_TEMPLATE).stream())</span>
<span class="fc" id="L193"> .collect(joining());</span>
}
/*******************************************************************************************************************
*
* .
*
******************************************************************************************************************/
@Nonnull
private Stream<String> streamOf (@Nonnull final Key<List<String>> key)
{
<span class="fc" id="L204"> return getViewProperties().getProperty(key).orElse(emptyList()).stream();</span>
}
/*******************************************************************************************************************
*
* .
*
******************************************************************************************************************/
@Nonnull
private String createLink (@Nonnull final String relativeUri)
{
<span class="pc bpc" id="L215" title="1 of 2 branches missed."> return relativeUri.startsWith("http") ? relativeUri : siteNode.getSite().createLink(ResourcePath.of(relativeUri));</span>
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.9.202303310957</span></div></body></html>