2020-10-17 17:57:10 +02:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
|
2020-10-28 15:32:05 +01:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
|
|
|
|
|
import org.apache.commons.io.FileUtils;
|
2020-10-17 17:57:10 +02:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
2020-10-28 15:32:05 +01:00
|
|
|
import fr.devinsy.statoolinfos.HtmlizerContext;
|
2020-10-17 17:57:10 +02:00
|
|
|
import fr.devinsy.statoolinfos.checker.PropertyCheck;
|
2020-10-28 15:32:05 +01:00
|
|
|
import fr.devinsy.statoolinfos.checker.PropertyChecker;
|
2020-10-17 17:57:10 +02:00
|
|
|
import fr.devinsy.statoolinfos.checker.PropertyChecks;
|
2020-10-28 15:32:05 +01:00
|
|
|
import fr.devinsy.statoolinfos.core.Federation;
|
|
|
|
import fr.devinsy.statoolinfos.core.Organization;
|
|
|
|
import fr.devinsy.statoolinfos.core.Service;
|
2020-10-29 19:41:53 +01:00
|
|
|
import fr.devinsy.statoolinfos.core.Service.Status;
|
2020-10-17 17:57:10 +02:00
|
|
|
import fr.devinsy.statoolinfos.core.StatoolInfosException;
|
|
|
|
import fr.devinsy.xidyn.XidynException;
|
|
|
|
import fr.devinsy.xidyn.data.TagDataManager;
|
|
|
|
import fr.devinsy.xidyn.presenters.PresenterUtils;
|
|
|
|
|
|
|
|
/**
|
2020-10-17 21:52:39 +02:00
|
|
|
* The Class PropertyFileCheckPage.
|
2020-10-17 17:57:10 +02:00
|
|
|
*/
|
|
|
|
public class PropertyFileCheckPage
|
|
|
|
{
|
|
|
|
private static Logger logger = LoggerFactory.getLogger(PropertyFileCheckPage.class);
|
|
|
|
|
2020-10-28 15:32:05 +01:00
|
|
|
/**
|
|
|
|
* Builds the.
|
|
|
|
*
|
|
|
|
* @throws IOException
|
|
|
|
* @throws StatoolInfosException
|
|
|
|
*/
|
|
|
|
public static void buildAll() throws IOException, StatoolInfosException
|
|
|
|
{
|
|
|
|
Federation federation = HtmlizerContext.instance().getFederation();
|
|
|
|
File htmlizeDirectory = HtmlizerContext.instance().getHtmlizeDirectory();
|
|
|
|
|
|
|
|
PropertyChecker checker = new PropertyChecker();
|
|
|
|
|
|
|
|
PropertyChecks checks = checker.checkFederation(federation.getInputFile());
|
|
|
|
String page = PropertyFileCheckPage.htmlize("Fédération", checks);
|
|
|
|
FileUtils.write(new File(htmlizeDirectory, federation.getTechnicalName() + "-check.xhtml"), page, StandardCharsets.UTF_8);
|
|
|
|
|
|
|
|
for (Organization organization : federation.getOrganizations())
|
|
|
|
{
|
|
|
|
checks = checker.checkOrganization(organization.getInputFile());
|
|
|
|
page = PropertyFileCheckPage.htmlize("Organisation", checks);
|
|
|
|
FileUtils.write(new File(htmlizeDirectory, organization.getTechnicalName() + "-check.xhtml"), page, StandardCharsets.UTF_8);
|
|
|
|
|
|
|
|
for (Service service : organization.getServices())
|
|
|
|
{
|
|
|
|
checks = checker.checkService(service.getInputFile());
|
|
|
|
page = PropertyFileCheckPage.htmlize("Service", checks);
|
|
|
|
FileUtils.write(new File(htmlizeDirectory, organization.getTechnicalName() + "-" + service.getTechnicalName() + "-check.xhtml"), page, StandardCharsets.UTF_8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 17:57:10 +02:00
|
|
|
/**
|
|
|
|
* Builds the.
|
|
|
|
*
|
2020-10-17 21:52:39 +02:00
|
|
|
* @param title
|
|
|
|
* the title
|
|
|
|
* @param checks
|
|
|
|
* the checks
|
2020-10-17 17:57:10 +02:00
|
|
|
* @return the string
|
|
|
|
* @throws StatoolInfosException
|
|
|
|
* the statool infos exception
|
|
|
|
*/
|
2020-10-28 15:32:05 +01:00
|
|
|
public static String htmlize(final String title, final PropertyChecks checks) throws StatoolInfosException
|
2020-10-17 17:57:10 +02:00
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
logger.debug("Building propertyStats page…");
|
|
|
|
|
|
|
|
TagDataManager data = new TagDataManager();
|
|
|
|
|
|
|
|
//
|
|
|
|
data.setContent("statsTitle", title);
|
|
|
|
|
|
|
|
int index = 0;
|
|
|
|
for (PropertyCheck check : checks)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
data.setContent("line", index, "lineIndex", check.getIndex());
|
|
|
|
data.setEscapedContent("line", index, "lineComment", check.getComment());
|
|
|
|
data.setEscapedContent("line", index, "lineContent", check.getLine());
|
2020-10-29 19:41:53 +01:00
|
|
|
data.setAttribute("line", index, "lineContent", "class", statusToCSS(check.getStatus()));
|
2020-10-17 17:57:10 +02:00
|
|
|
|
2020-10-29 19:41:53 +01:00
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
index = 0;
|
|
|
|
for (PropertyCheck check : checks.extractActiveLines())
|
|
|
|
{
|
2020-10-17 17:57:10 +02:00
|
|
|
//
|
2020-10-29 19:41:53 +01:00
|
|
|
data.setContent("shrunkLine", index, "shrunkLineIndex", check.getIndex());
|
|
|
|
data.setEscapedContent("shrunkLine", index, "shrunkLineContent", check.getLine());
|
|
|
|
data.setEscapedContent("shrunkLine", index, "shrunkLineComment", check.getComment());
|
|
|
|
data.setAttribute("shrunkLine", index, "shrunkLineContent", "class", statusToCSS(check.getStatus()));
|
2020-10-17 17:57:10 +02:00
|
|
|
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
String content = PresenterUtils.dynamize("/fr/devinsy/statoolinfos/htmlize/propertyFileCheck.xhtml", data).toString();
|
|
|
|
|
|
|
|
BreadcrumbTrail trail = new BreadcrumbTrail();
|
|
|
|
trail.add("Propriétés", "propertyStats.xhtml");
|
|
|
|
result = WebCharterView.build(content, trail);
|
|
|
|
}
|
|
|
|
catch (XidynException exception)
|
|
|
|
{
|
|
|
|
throw new StatoolInfosException("Error building service page: " + exception.getMessage(), exception);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
2020-10-29 19:41:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Status to CSS.
|
|
|
|
*
|
|
|
|
* @param status
|
|
|
|
* the status
|
|
|
|
* @return the string
|
|
|
|
*/
|
|
|
|
public static String statusToCSS(final Status status)
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
switch (status)
|
|
|
|
{
|
|
|
|
case OK:
|
|
|
|
result = "bg_ok";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WARNING:
|
|
|
|
result = "bg_warning";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ALERT:
|
|
|
|
result = "bg_alert";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ERROR:
|
|
|
|
result = "bg_error";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OVER:
|
|
|
|
result = "bg_over";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VOID:
|
|
|
|
default:
|
|
|
|
result = "bg_void";
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-17 17:57:10 +02:00
|
|
|
}
|