Merge "[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
25 import javax.annotation.Priority;
26 import javax.servlet.http.HttpServletRequest;
27 import javax.ws.rs.container.*;
28 import javax.ws.rs.core.Context;
29 import javax.ws.rs.ext.Providers;
30
31 import org.onap.logging.ref.slf4j.ONAPLogConstants;
32 import org.slf4j.MDC;
33
34 @Priority(1)
35 public class AuditLogContainerFilter extends AbstractAuditLogFilter<ContainerRequestContext, ContainerResponseContext>
36         implements ContainerRequestFilter, ContainerResponseFilter {
37
38     @Context
39     private HttpServletRequest httpServletRequest;
40
41     @Context
42     private Providers providers;
43
44     @Override
45     public void filter(ContainerRequestContext containerRequest) {
46         SimpleMap headers = new SimpleJaxrsHeadersMap(containerRequest.getHeaders());
47         pre(headers, containerRequest, httpServletRequest);
48     }
49
50     @Override
51     public void filter(ContainerRequestContext requestContext, ContainerResponseContext responseContext)
52             throws IOException {
53         post(responseContext);
54     }
55
56     @Override
57     protected void setServiceName(ContainerRequestContext containerRequest) {
58         MDC.put(ONAPLogConstants.MDCs.SERVICE_NAME, containerRequest.getUriInfo().getPath());
59     }
60
61     @Override
62     protected int getResponseCode(ContainerResponseContext response) {
63         return response.getStatus();
64     }
65
66 }