Added custom edito management.
This commit is contained in:
parent
23da938b3b
commit
d321e3a162
5 changed files with 177 additions and 1 deletions
|
@ -246,6 +246,30 @@ public class Configuration extends PathPropertyList
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the edito directory.
|
||||||
|
*
|
||||||
|
* @return the edito directory
|
||||||
|
*/
|
||||||
|
public File getEditoDirectory()
|
||||||
|
{
|
||||||
|
File result;
|
||||||
|
|
||||||
|
String directoryPath = get("conf.htmlize.edito.directory");
|
||||||
|
|
||||||
|
if (StringUtils.isBlank(directoryPath))
|
||||||
|
{
|
||||||
|
result = null;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = new File(directoryPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the htmlize directory.
|
* Gets the htmlize directory.
|
||||||
*
|
*
|
||||||
|
|
127
src/fr/devinsy/statoolinfos/htmlize/EditoPage.java
Normal file
127
src/fr/devinsy/statoolinfos/htmlize/EditoPage.java
Normal file
|
@ -0,0 +1,127 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2020 Christian Pierre MOMON <christian@momon.org>
|
||||||
|
*
|
||||||
|
* This file is part of StatoolInfos, simple service statistics tool.
|
||||||
|
*
|
||||||
|
* StatoolInfos is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* StatoolInfos is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with StatoolInfos. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
package fr.devinsy.statoolinfos.htmlize;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
|
||||||
|
import org.apache.commons.io.FileUtils;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import fr.devinsy.statoolinfos.HtmlizerContext;
|
||||||
|
import fr.devinsy.statoolinfos.core.Configuration;
|
||||||
|
import fr.devinsy.statoolinfos.core.StatoolInfosException;
|
||||||
|
import fr.devinsy.xidyn.XidynException;
|
||||||
|
import fr.devinsy.xidyn.data.TagDataManager;
|
||||||
|
import fr.devinsy.xidyn.presenters.PresenterUtils;
|
||||||
|
import fr.devinsy.xidyn.utils.XidynUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Class EditoPage.
|
||||||
|
*/
|
||||||
|
public class EditoPage
|
||||||
|
{
|
||||||
|
private static Logger logger = LoggerFactory.getLogger(EditoPage.class);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds the.
|
||||||
|
*
|
||||||
|
* @throws StatoolInfosException
|
||||||
|
* the statool infos exception
|
||||||
|
* @throws IOException
|
||||||
|
* Signals that an I/O exception has occurred.
|
||||||
|
*/
|
||||||
|
public static void build() throws StatoolInfosException, IOException
|
||||||
|
{
|
||||||
|
logger.info("Htmlize edito page.");
|
||||||
|
|
||||||
|
Configuration configuration = HtmlizerContext.instance().getConfiguration();
|
||||||
|
File htmlizeDirectory = HtmlizerContext.instance().getHtmlizeDirectory();
|
||||||
|
|
||||||
|
String edito;
|
||||||
|
File editoDirectory = configuration.getEditoDirectory();
|
||||||
|
if ((editoDirectory != null) && (editoDirectory.exists()))
|
||||||
|
{
|
||||||
|
File editoFile = new File(editoDirectory, "edito.xhtml");
|
||||||
|
|
||||||
|
if (editoFile.exists())
|
||||||
|
{
|
||||||
|
logger.info("EDITO: found data.");
|
||||||
|
// Copy files.
|
||||||
|
FileUtils.copyDirectory(editoDirectory, htmlizeDirectory);
|
||||||
|
|
||||||
|
// Load body edito xhtml file.
|
||||||
|
edito = FileUtils.readFileToString(editoFile, "UTF-8");
|
||||||
|
edito = XidynUtils.extractBodyContent(edito);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logger.info("EDITO: not found data.");
|
||||||
|
edito = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logger.info("EDITO: not found configuration.");
|
||||||
|
edito = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
String page = htmlize(edito);
|
||||||
|
FileUtils.write(new File(htmlizeDirectory, "edito.xhtml"), page, StandardCharsets.UTF_8);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds the.
|
||||||
|
*
|
||||||
|
* @return the string
|
||||||
|
* @throws StatoolInfosException
|
||||||
|
* the statool infos exception
|
||||||
|
*/
|
||||||
|
public static String htmlize(final String edito) throws StatoolInfosException
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
logger.debug("Building edito page {}.");
|
||||||
|
|
||||||
|
TagDataManager data = new TagDataManager();
|
||||||
|
|
||||||
|
if (edito != null)
|
||||||
|
{
|
||||||
|
data.setContent("edito", edito);
|
||||||
|
}
|
||||||
|
|
||||||
|
String content = PresenterUtils.dynamize("/fr/devinsy/statoolinfos/htmlize/edito.xhtml", data).toString();
|
||||||
|
|
||||||
|
BreadcrumbTrail trail = new BreadcrumbTrail();
|
||||||
|
trail.add("Édito", "edito.xhtml");
|
||||||
|
result = WebCharterView.build(content, trail);
|
||||||
|
}
|
||||||
|
catch (XidynException exception)
|
||||||
|
{
|
||||||
|
throw new StatoolInfosException("Error building edito page: " + exception.getMessage(), exception);
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
|
@ -253,6 +253,7 @@ public class Htmlizer
|
||||||
copyCategoriesStuff(HtmlizerContext.instance().getConfiguration().get("conf.htmlize.categories.icons"), htmlizeDirectory);
|
copyCategoriesStuff(HtmlizerContext.instance().getConfiguration().get("conf.htmlize.categories.icons"), htmlizeDirectory);
|
||||||
|
|
||||||
AboutPage.build();
|
AboutPage.build();
|
||||||
|
EditoPage.build();
|
||||||
FederationPage.build();
|
FederationPage.build();
|
||||||
OrganizationPage.buildAll();
|
OrganizationPage.buildAll();
|
||||||
ServicePage.buildAll();
|
ServicePage.buildAll();
|
||||||
|
|
19
src/fr/devinsy/statoolinfos/htmlize/edito.xhtml
Normal file
19
src/fr/devinsy/statoolinfos/htmlize/edito.xhtml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>StatoolInfos</title>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="keywords" content="statoolinfos,devinsy,federation" />
|
||||||
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="statoolinfos.css" />
|
||||||
|
<script src="sorttable.js" />
|
||||||
|
<script src="Chart.bundle.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="edito">
|
||||||
|
<h1>Édito</h1>
|
||||||
|
<p>Ceci est un édito par défaut.</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -15,7 +15,12 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div style="margin: 5px 10px 10px 10px;">
|
<div style="margin: 5px 10px 10px 10px;">
|
||||||
<h1><a href="index.xhtml"><img src="logo.jpg" style="width: 35px;"/> StatoolInfos</a><sup id="versionsup" style="font-size: 9px;">v0.0.14</sup> – <a href="about.xhtml">About</a><span style="font-size: 9px; float: right;">Page updated on<br/><span id="lastUpdateDate" style="font-size: 9px;">xx/xx/xxxx xx:xx</span></span></h1>
|
<h1>
|
||||||
|
<a href="index.xhtml"><img src="logo.jpg" style="width: 35px;"/> StatoolInfos</a><sup id="versionsup" style="font-size: 9px;">v0.0.14</sup> –
|
||||||
|
<a href="edito.xhtml">Édito</a> –
|
||||||
|
<a href="about.xhtml">About</a>
|
||||||
|
<span style="font-size: 9px; float: right;">Page updated on<br/><span id="lastUpdateDate" style="font-size: 9px;">xx/xx/xxxx xx:xx</span></span>
|
||||||
|
</h1>
|
||||||
|
|
||||||
<div style="margin: 5px;">
|
<div style="margin: 5px;">
|
||||||
<a id="federationButton" href="index.xhtml" class="button">Fédération</a>
|
<a id="federationButton" href="index.xhtml" class="button">Fédération</a>
|
||||||
|
|
Loading…
Reference in a new issue