/* * Copyright (C) 2020 Christian Pierre MOMON * * 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 . */ 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.checker.PropertyCheck; import fr.devinsy.statoolinfos.checker.PropertyChecker; import fr.devinsy.statoolinfos.checker.PropertyChecks; import fr.devinsy.statoolinfos.core.Federation; import fr.devinsy.statoolinfos.core.Organization; import fr.devinsy.statoolinfos.core.Service; import fr.devinsy.statoolinfos.core.StatoolInfosException; import fr.devinsy.xidyn.XidynException; import fr.devinsy.xidyn.data.TagDataManager; import fr.devinsy.xidyn.presenters.PresenterUtils; /** * The Class PropertyFileCheckPage. */ public class PropertyFileCheckPage { private static Logger logger = LoggerFactory.getLogger(PropertyFileCheckPage.class); /** * 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); } } } /** * Builds the. * * @param title * the title * @param checks * the checks * @return the string * @throws StatoolInfosException * the statool infos exception */ public static String htmlize(final String title, final PropertyChecks checks) throws StatoolInfosException { 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()); // String statusClass; switch (check.getStatus()) { case OK: statusClass = "bg_ok"; break; case WARNING: statusClass = "bg_warning"; break; case ALERT: statusClass = "bg_alert"; break; case ERROR: statusClass = "bg_error"; break; case OVER: statusClass = "bg_over"; break; case VOID: default: statusClass = "bg_void"; } data.setAttribute("line", index, "lineContent", "class", statusClass); 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; } }