aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/log/wrappers/LoggerSdcAudit.java
blob: aac4e2b1c8c031e6227ff1118b409f393e0334bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.common.log.wrappers;

import org.apache.commons.lang3.StringUtils;
import org.openecomp.sdc.common.api.Constants;
import org.openecomp.sdc.common.log.elements.LoggerAudit;
import org.openecomp.sdc.common.log.elements.LoggerFactory;
import org.openecomp.sdc.common.log.enums.LogLevel;
import org.openecomp.sdc.common.log.enums.Severity;
import org.openecomp.sdc.common.util.ThreadLocalsHolder;
import org.slf4j.MDC;

import javax.ws.rs.container.ContainerRequestContext;
import javax.ws.rs.core.Response;


/**
 * Created by dd4296 on 12/19/2017.
 * <p>
 * audit log for asdc using the log library
 * this is adapted for filter classes
 */
public class LoggerSdcAudit extends LoggerSdcUtilBase {

    private static final String AUDIT_ON = "auditOn";
    private String className;
    private final LoggerAudit ecompLoggerAudit;

    public LoggerSdcAudit(Class<?> clazz) {
        this.className = clazz.getName();
        ecompLoggerAudit = LoggerFactory.getMdcLogger(LoggerAudit.class, org.slf4j.LoggerFactory.getLogger(clazz));
    }

    public void startLog(ContainerRequestContext requestContext) {
        ecompLoggerAudit.clear()
                .startTimer()
                .setPartnerName(getPartnerName(
                        requestContext.getHeaderString("user-agent"),
                        requestContext.getHeaderString("USER_ID"),
                        getUrl(requestContext)))
                .setServiceName(getServiceName(requestContext))
                .setKeyRequestId(ThreadLocalsHolder.getUuid());
        MDC.put(AUDIT_ON, "true");
    }

    public static boolean isFlowBeingTakenCare() {
        String auditOn = MDC.get(AUDIT_ON);
        return !StringUtils.isEmpty(auditOn) && "true".equals(auditOn);
    }

    //this function clears the MDC data that relevant for this class
    public void clearMyData() {
        ecompLoggerAudit.clear();
    }

    public void log(String remoteAddress,
                    ContainerRequestContext requestContext,
                    Response.StatusType statusInfo,
                    LogLevel logLevel,
                    Severity securityLevel,
                    String message) {

        try {

            String msg = ecompLoggerAudit.getAuditMessage() == null
                    ? message : ecompLoggerAudit.getAuditMessage();
            ecompLoggerAudit.stopTimer()
                    .setRemoteHost(remoteAddress)
                    .setResponseCode(convertHttpCodeToErrorCode(statusInfo.getStatusCode()))
                    .setStatusCode(Integer.toString(statusInfo.getStatusCode()))
                    .setResponseDesc(statusInfo.getReasonPhrase())
                    .setInstanceUUID(requestContext.getHeaderString(Constants.X_ECOMP_INSTANCE_ID_HEADER))
                    .setOptServiceInstanceId(requestContext.getHeaderString(Constants.X_ECOMP_SERVICE_ID_HEADER))
                    .setOptClassName(className)
                    .setOptAlertSeverity(securityLevel)
                    .setOptCustomField1(requestContext.getMethod() + ": " + getUrl(requestContext))
                    .setOptCustomField2(Integer.toString(statusInfo.getStatusCode()))
                    .log(logLevel, msg);
        } catch (Exception e) {
            log.warn("Failed to write to Audit Log. Original Message: {}", message, e);
        } finally {
            MDC.put(AUDIT_ON, "false");
        }
    }
}