Remove diffutils dependency
[aai/traversal.git] / aai-traversal / src / main / java / org / onap / aai / interceptors / PostAaiAjscInterceptor.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 import org.onap.aai.logging.LoggingContext.StatusCode;
31 import com.att.eelf.configuration.EELFLogger;
32 import com.att.eelf.configuration.EELFManager;
33
34 import ajsc.beans.interceptors.AjscInterceptor;
35
36 public class PostAaiAjscInterceptor implements AjscInterceptor {
37
38         private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(PostAaiAjscInterceptor.class);
39
40         private static class LazyAaiAjscInterceptor {
41         public static final PostAaiAjscInterceptor INSTANCE = new PostAaiAjscInterceptor();
42         }
43
44     public static PostAaiAjscInterceptor getInstance() {
45         return LazyAaiAjscInterceptor.INSTANCE;
46     }
47
48         @Override
49         public boolean allowOrReject(HttpServletRequest req, HttpServletResponse resp, Map<?, ?> paramMap)
50                         throws Exception {
51                 final int httpStatusCode = resp.getStatus();
52                 LoggingContext.responseCode(Integer.toString(httpStatusCode));
53                 if ( httpStatusCode < 200 || httpStatusCode > 299 ) {
54                         LoggingContext.statusCode(StatusCode.ERROR);
55                         LoggingContext.responseDescription("Error");
56                         LOGGER.error(req.getRequestURL() + " call failed with responseCode=" + httpStatusCode);
57                 }
58                 else {
59                         LoggingContext.responseDescription(LoggingContext.responseMap.get(LoggingContext.SUCCESS));
60                         LoggingContext.statusCode(StatusCode.COMPLETE);
61                         LOGGER.info(req.getRequestURL() + " call succeeded");
62                 }
63                 LoggingContext.clear();
64                 return true;
65         }
66 }