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</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>