Do not overwrite requestId
[so.git] / mso-api-handlers / mso-api-handler-common / src / main / java / org / onap / so / apihandler / filters / RequestIdFilter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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 package org.onap.so.apihandler.filters;
21
22 import java.io.IOException;
23
24 import javax.annotation.Priority;
25 import javax.ws.rs.container.ContainerRequestContext;
26 import javax.ws.rs.container.ContainerRequestFilter;
27 import javax.ws.rs.ext.Provider;
28
29 import org.apache.http.HttpStatus;
30 import org.onap.logging.ref.slf4j.ONAPLogConstants;
31 import org.onap.so.db.request.beans.InfraActiveRequests;
32 import org.onap.so.db.request.client.RequestsDbClient;
33 import org.slf4j.MDC;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36 import org.springframework.beans.factory.annotation.Autowired;
37 import org.springframework.stereotype.Component;
38
39 @Priority(2)
40 @Provider
41 @Component
42 public class RequestIdFilter implements ContainerRequestFilter {
43
44         protected static Logger logger = LoggerFactory.getLogger(RequestIdFilter.class);
45         
46         @Autowired
47         private RequestsDbClient infraActiveRequestsClient;
48
49         @Override
50         public void filter(ContainerRequestContext context) throws IOException {
51                 String requestId = MDC.get(ONAPLogConstants.MDCs.REQUEST_ID);
52         
53         InfraActiveRequests infraActiveRequests = infraActiveRequestsClient.getInfraActiveRequestbyRequestId(requestId);
54         
55         if (infraActiveRequests != null) {
56                 MDC.put(ONAPLogConstants.MDCs.RESPONSE_CODE, String.valueOf(HttpStatus.SC_BAD_REQUEST));
57                 logger.error("RequestID exists in RequestDB.InfraActiveRequests : " + requestId);
58         }
59         }
60 }