added generic fabric support to SO
[so.git] / cxf-logging / src / main / java / org / onap / so / logging / cxf / interceptor / SOAPMDCSetup.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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.so.logging.cxf.interceptor;
22
23 import java.net.InetAddress;
24 import java.net.UnknownHostException;
25 import java.time.ZoneOffset;
26 import java.time.ZonedDateTime;
27 import java.time.format.DateTimeFormatter;
28 import java.util.UUID;
29 import javax.servlet.http.HttpServletRequest;
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
36
37 public class SOAPMDCSetup {
38     
39     protected static Logger logger = LoggerFactory.getLogger(SOAPMDCSetup.class); 
40     
41     private static final String INSTANCE_UUID = UUID.randomUUID().toString();
42     
43     public void setInstanceUUID(){
44         MDC.put(ONAPLogConstants.MDCs.INSTANCE_UUID, INSTANCE_UUID);
45     }
46
47     public void setServerFQDN(){
48         String serverFQDN = "";
49         InetAddress addr= null;
50         try {
51             addr = InetAddress.getLocalHost();
52             serverFQDN = addr.toString();
53         } catch (UnknownHostException e) {
54             logger.warn("Cannot Resolve Host Name");
55             serverFQDN = "";
56         }
57         MDC.put(ONAPLogConstants.MDCs.SERVER_FQDN, serverFQDN);
58     }
59
60     public void setClientIPAddress(HttpServletRequest httpServletRequest){
61         String remoteIpAddress = "";
62         if (httpServletRequest != null) {
63             remoteIpAddress = httpServletRequest.getRemoteAddr();
64         } 
65         MDC.put(ONAPLogConstants.MDCs.CLIENT_IP_ADDRESS, remoteIpAddress);
66     }
67
68     public void setEntryTimeStamp() {
69         MDC.put(ONAPLogConstants.MDCs.ENTRY_TIMESTAMP,ZonedDateTime.now(ZoneOffset.UTC).format(DateTimeFormatter.ISO_INSTANT));
70     }
71     
72    
73 }