eu.europa.esig.dss.tsl.alerts.TLValidationJobAlerter Maven / Gradle / Ivy
/**
* DSS - Digital Signature Services
* Copyright (C) 2015 European Commission, provided under the CEF programme
*
* This file is part of the "DSS - Digital Signature Services" project.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package eu.europa.esig.dss.tsl.alerts;
import eu.europa.esig.dss.alert.Alert;
import eu.europa.esig.dss.model.tsl.LOTLInfo;
import eu.europa.esig.dss.model.tsl.TLInfo;
import eu.europa.esig.dss.model.tsl.TLValidationJobSummary;
import eu.europa.esig.dss.utils.Utils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
/**
* The class to process alerts on TLValidationJob
*
*/
public class TLValidationJobAlerter {
private static final Logger LOG = LoggerFactory.getLogger(TLValidationJobAlerter.class);
/** Contains a list of LOTL alerts */
private final List> lotlAlerts;
/** Contains a list of TL alerts */
private final List> tlAlerts;
/**
* The constructor to instantiate a TLValidationJobAlerter
*
* @param lotlAlerts a list of {@link LOTLAlert}s to be applied on LOTL changes
* @param tlAlerts a list of {@link TLAlert}s to be applied on TL changes
*/
public TLValidationJobAlerter(final List> lotlAlerts, final List> tlAlerts) {
this.lotlAlerts = lotlAlerts;
this.tlAlerts = tlAlerts;
}
/**
* The method to run alerts on the given TLValidationJobSummary
*
* @param jobSummary {@link TLValidationJobSummary} to execute alerts on
*/
public void detectChanges(final TLValidationJobSummary jobSummary) {
for (LOTLInfo lotlInfo : jobSummary.getLOTLInfos()) {
// run LOTL alerts
if (Utils.isCollectionNotEmpty(lotlAlerts)) {
for (Alert lotlAlert : lotlAlerts) {
execute(lotlAlert, lotlInfo);
}
}
// run TL alerts
if (Utils.isCollectionNotEmpty(tlAlerts)) {
for (TLInfo tlInfo : lotlInfo.getTLInfos()) {
for (Alert tlAlert : tlAlerts) {
execute(tlAlert, tlInfo);
}
}
}
}
// other TLs
if (Utils.isCollectionNotEmpty(tlAlerts)) {
for (TLInfo tlInfo : jobSummary.getOtherTLInfos()) {
for (Alert tlAlert : tlAlerts) {
execute(tlAlert, tlInfo);
}
}
}
}
private void execute(Alert alert, T info) {
try {
alert.alert(info);
} catch (Exception e) {
LOG.warn("An error occurred while trying to detect changes inside '{}'. Reason : {}",
info.getDSSId().asXmlId(), e.getMessage());
}
}
}