2020-09-17 02:03:56 +02:00
|
|
|
/*
|
2021-06-03 03:05:12 +02:00
|
|
|
* Copyright (C) 2020-2021 Christian Pierre MOMON <christian@momon.org>
|
2020-09-17 02:03:56 +02:00
|
|
|
*
|
|
|
|
* 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-09-17 02:03:56 +02:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
2020-10-28 15:32:05 +01:00
|
|
|
import fr.devinsy.catgenerator.core.CatGenerator;
|
|
|
|
import fr.devinsy.statoolinfos.HtmlizerContext;
|
2020-09-17 02:03:56 +02:00
|
|
|
import fr.devinsy.statoolinfos.core.Federation;
|
|
|
|
import fr.devinsy.statoolinfos.core.StatoolInfosException;
|
2020-10-28 15:32:05 +01:00
|
|
|
import fr.devinsy.statoolinfos.crawl.CrawlCache;
|
2021-06-07 18:48:18 +02:00
|
|
|
import fr.devinsy.statoolinfos.htmlize.FederationMetricMenuView.PeriodMenu;
|
|
|
|
import fr.devinsy.statoolinfos.htmlize.FederationMetricMenuView.ViewMenu;
|
2020-09-17 02:03:56 +02:00
|
|
|
|
|
|
|
/**
|
2020-10-28 15:32:05 +01:00
|
|
|
* The Class FederationPage.
|
2020-09-17 02:03:56 +02:00
|
|
|
*/
|
2021-07-04 12:35:11 +02:00
|
|
|
public class FederationPages
|
2020-09-17 02:03:56 +02:00
|
|
|
{
|
2021-07-04 12:35:11 +02:00
|
|
|
private static Logger logger = LoggerFactory.getLogger(FederationPages.class);
|
2020-09-17 02:03:56 +02:00
|
|
|
|
2020-10-28 15:32:05 +01:00
|
|
|
/**
|
|
|
|
* Builds the.
|
|
|
|
*
|
|
|
|
* @throws StatoolInfosException
|
|
|
|
* the statool infos exception
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
public static void build() throws StatoolInfosException, IOException
|
|
|
|
{
|
|
|
|
Federation federation = HtmlizerContext.instance().getFederation();
|
|
|
|
CrawlCache cache = HtmlizerContext.instance().getCache();
|
|
|
|
File htmlizeDirectory = HtmlizerContext.instance().getHtmlizeDirectory();
|
|
|
|
|
|
|
|
//
|
|
|
|
logger.info("PAGE FEDERATION Htmlize federation logo.");
|
|
|
|
htmlizeFederationLogo(federation, cache, htmlizeDirectory);
|
|
|
|
|
|
|
|
//
|
|
|
|
logger.info("PAGE FEDERATION Htmlize federation properties files.");
|
|
|
|
FileUtils.copyFile(federation.getInputFile(), new File(htmlizeDirectory, federation.getTechnicalName() + ".properties"));
|
|
|
|
|
|
|
|
logger.info("PAGE FEDERATION federation page: {}.", federation.getName());
|
2021-07-04 12:35:11 +02:00
|
|
|
String page = FederationOrganizationsPage.htmlize(federation);
|
2020-10-28 15:32:05 +01:00
|
|
|
FileUtils.write(new File(htmlizeDirectory, "index.xhtml"), page, StandardCharsets.UTF_8);
|
2021-05-14 02:40:15 +02:00
|
|
|
|
2021-07-04 12:35:11 +02:00
|
|
|
//
|
|
|
|
FederationOrganizationsPage.build();
|
|
|
|
FederationServicesPage.build();
|
2022-02-27 11:57:37 +01:00
|
|
|
FederationServicesFiguresPage.build();
|
2021-07-04 12:35:11 +02:00
|
|
|
FederationCrawlJournalPage.build();
|
|
|
|
FederationPropertyCheckPage.build();
|
|
|
|
FederationPropertyAlertPage.buildAll();
|
|
|
|
FederationStatsPage.build();
|
|
|
|
FederationUptimePage.build();
|
|
|
|
|
2021-06-03 04:25:16 +02:00
|
|
|
//
|
2021-06-07 18:48:18 +02:00
|
|
|
logger.info("Htmlize federation metric pages: {}.", federation.getName());
|
|
|
|
for (ViewMenu view : ViewMenu.values())
|
|
|
|
{
|
|
|
|
for (PeriodMenu period : PeriodMenu.values())
|
|
|
|
{
|
|
|
|
if ((view != ViewMenu.YEARS) || (period == PeriodMenu.FULL))
|
|
|
|
{
|
|
|
|
if (view != ViewMenu.DAYS)
|
|
|
|
{
|
|
|
|
FederationMetricSummaryPage.build(htmlizeDirectory, federation, view, period);
|
|
|
|
FederationMetricGenericPage.build(htmlizeDirectory, federation, view, period);
|
|
|
|
FederationMetricSpecificPage.build(htmlizeDirectory, federation, view, period);
|
|
|
|
FederationMetricWebPage.build(htmlizeDirectory, federation, view, period);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 15:32:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Htmlize federation logo.
|
|
|
|
*
|
|
|
|
* @param federation
|
|
|
|
* the federation
|
|
|
|
* @param cache
|
|
|
|
* the cache
|
|
|
|
* @param htmlizeDirectory
|
|
|
|
* the htmlize directory
|
|
|
|
* @throws IOException
|
|
|
|
* Signals that an I/O exception has occurred.
|
|
|
|
*/
|
|
|
|
private static void htmlizeFederationLogo(final Federation federation, final CrawlCache cache, final File htmlizeDirectory) throws IOException
|
|
|
|
{
|
|
|
|
logger.info("Htmlize federation logo.");
|
|
|
|
|
|
|
|
File target = new File(htmlizeDirectory, federation.getLogoFileName());
|
|
|
|
|
|
|
|
File logoFile = cache.restoreFile(federation.getLogoURL());
|
|
|
|
if (logoFile == null)
|
|
|
|
{
|
|
|
|
logger.info("CatGeneratoring cat avatar: {}", target.getAbsoluteFile());
|
|
|
|
CatGenerator.buildAvatarTo(federation.getTechnicalName(), target);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FileUtils.copyFile(logoFile, target);
|
|
|
|
}
|
|
|
|
}
|
2020-09-17 02:03:56 +02:00
|
|
|
}
|