package at.asitplus.eidas.specific.connector.logger; import org.apache.commons.lang3.StringUtils; import org.joda.time.DateTime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import at.asitplus.eidas.specific.connector.MSeIDASNodeConstants; import at.gv.egiz.eaaf.core.api.IRequest; import at.gv.egiz.eaaf.core.api.idp.IAuthData; import at.gv.egiz.eaaf.core.api.logging.IStatisticLogger; import at.gv.egiz.eaaf.core.exceptions.EAAFException; public class StatisticLogger implements IStatisticLogger { private static final Logger log = LoggerFactory.getLogger(StatisticLogger.class); private static final String DATEFORMATER = "yyyy.MM.dd-HH:mm:ss+z"; private static final String STATUS_SUCCESS = "success"; private static final String STATUS_ERROR = "error"; @Override public void logSuccessOperation(IRequest protocolRequest, IAuthData authData, boolean isSSOSession) { log.info(buildLogMessage( protocolRequest.getUniqueTransactionIdentifier(), protocolRequest.getSPEntityId(), protocolRequest.getRawData(MSeIDASNodeConstants.DATA_REQUESTERID), protocolRequest.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier(), authData.getCiticenCountryCode(), STATUS_SUCCESS , StringUtils.EMPTY, StringUtils.EMPTY)); } @Override public void logErrorOperation(Throwable throwable) { String errorId = "TODO"; if (throwable instanceof EAAFException) errorId = ((EAAFException) throwable).getErrorId(); log.info(buildLogMessage( StringUtils.EMPTY, StringUtils.EMPTY, StringUtils.EMPTY, StringUtils.EMPTY, StringUtils.EMPTY, STATUS_ERROR, errorId, throwable.getMessage())); } @Override public void logErrorOperation(Throwable throwable, IRequest errorRequest) { String errorId = "TODO"; if (throwable instanceof EAAFException) errorId = ((EAAFException) throwable).getErrorId(); if (errorRequest != null) log.info(buildLogMessage( errorRequest.getUniqueTransactionIdentifier(), errorRequest.getSPEntityId(), errorRequest.getRawData(MSeIDASNodeConstants.DATA_REQUESTERID), errorRequest.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier(), StringUtils.EMPTY, STATUS_ERROR, errorId, throwable.getMessage())); else log.info(buildLogMessage( StringUtils.EMPTY, StringUtils.EMPTY, StringUtils.EMPTY, StringUtils.EMPTY, StringUtils.EMPTY, STATUS_ERROR, errorId, throwable.getMessage())); } @Override public void internalTesting() throws Exception { log.trace("Not implemented for a File-based logger"); } private String buildLogMessage(String tId, String moaIDEntityId, Object requesterId, String target, String cc, String status, String errorCode, String errorMsg) { String logMsg = StringUtils.EMPTY; //data,tId,MOAID-Id,SP-Id,bPKTarget,CC,status,error-code,error-msg logMsg += DateTime.now().toString(DATEFORMATER ) + ","; logMsg += tId + ","; logMsg += moaIDEntityId + ","; if (requesterId instanceof String && StringUtils.isNotEmpty((String)requesterId)) logMsg += (String)requesterId + ","; else logMsg += StringUtils.EMPTY + ","; logMsg += target + ","; logMsg += cc + ","; logMsg += status + ","; logMsg += errorCode + ","; logMsg += errorMsg; return logMsg; } }