[AAI] Fix doc config files
[aai/aai-common.git] / aai-els-onap-logging / src / main / java / org / onap / logging / filter / base / AuditLogContainerFilter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - Logging
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.logging.filter.base;
22
23 import java.io.IOException;
24 import javax.annotation.Priority;
25 import javax.servlet.http.HttpServletRequest;
26 import javax.ws.rs.container.*;
27 import javax.ws.rs.core.Context;
28 import javax.ws.rs.ext.Provider;
29 import javax.ws.rs.ext.Providers;
30 import org.onap.logging.ref.slf4j.ONAPLogConstants;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.slf4j.MDC;
34
35 @Priority(1)
36 public class AuditLogContainerFilter extends AbstractAuditLogFilter<ContainerRequestContext, ContainerResponseContext>
37         implements ContainerRequestFilter, ContainerResponseFilter {
38
39     @Context
40     private HttpServletRequest httpServletRequest;
41
42     @Context
43     private Providers providers;
44
45     @Override
46     public void filter(ContainerRequestContext containerRequest) {
47         SimpleMap headers = new SimpleJaxrsHeadersMap(containerRequest.getHeaders());
48         pre(headers, containerRequest, httpServletRequest);
49     }
50
51     @Override
52     public void filter(ContainerRequestContext requestContext, ContainerResponseContext responseContext)
53             throws IOException {
54         post(responseContext);
55     }
56
57     @Override
58     protected void setServiceName(ContainerRequestContext containerRequest) {
59         MDC.put(ONAPLogConstants.MDCs.SERVICE_NAME, containerRequest.getUriInfo().getPath());
60     }
61
62     @Override
63     protected int getResponseCode(ContainerResponseContext response) {
64         return response.getStatus();
65     }
66
67 }