Remove diffutils dependency
[aai/traversal.git] / aai-traversal / src / main / java / org / onap / aai / interceptors / PreAaiAjscInterceptor.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.interceptors;
23
24 import java.util.Map;
25
26 import javax.servlet.http.HttpServletRequest;
27 import javax.servlet.http.HttpServletResponse;
28
29 import org.onap.aai.logging.LoggingContext;
30
31 import ajsc.beans.interceptors.AjscInterceptor;
32
33 public class PreAaiAjscInterceptor implements AjscInterceptor {
34         private final static String TARGET_ENTITY = "aai-traversal";
35         
36         private static class LazyAaiAjscInterceptor {
37         public static final PreAaiAjscInterceptor INSTANCE = new PreAaiAjscInterceptor();
38         }
39
40     public static PreAaiAjscInterceptor getInstance() {
41         return LazyAaiAjscInterceptor.INSTANCE;
42     }
43      
44         @Override
45         public boolean allowOrReject(HttpServletRequest req, HttpServletResponse resp, Map<?, ?> paramMap)
46                         throws Exception {
47
48                 LoggingContext.init();
49
50                 String serviceName = req.getMethod() + " " + req.getRequestURI().toString();
51                 LoggingContext.partnerName(req.getHeader("X-FromAppId"));
52                 String queryStr = req.getQueryString();
53                 if ( queryStr != null ) {
54                         serviceName = serviceName + "?" + queryStr;
55                 }
56                 LoggingContext.serviceName(serviceName);
57                 LoggingContext.targetEntity(TARGET_ENTITY);
58                 LoggingContext.targetServiceName("allowOrReject");
59                 LoggingContext.requestId(req.getHeader("X-TransactionId"));
60                 LoggingContext.successStatusFields();
61                 return true;
62         }
63 }