da3bb11e80d18cef7f962c6fcc392621e676e2c8
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / util / AAIApiServerURLBase.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
4  * ================================================================================
5  * Copyright (C) 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
21 package org.openecomp.aai.util;
22
23 import java.util.List;
24 import java.util.Map;
25
26 import org.apache.cxf.helpers.CastUtils;
27 import org.apache.cxf.message.Message;
28 import org.apache.cxf.phase.PhaseInterceptorChain;
29
30 import org.openecomp.aai.exceptions.AAIException;
31 import org.openecomp.aai.introspection.Version;
32
33 public class AAIApiServerURLBase {
34         
35         /**
36          * Gets the.
37          *
38          * @return the string
39          * @throws AAIException the AAI exception
40          */
41         public static String get() throws AAIException {
42                 
43                 String hostName = null;
44                 try {
45                         Message message = PhaseInterceptorChain.getCurrentMessage();
46                         Map<String, List<String>> headers = CastUtils.cast((Map) message.get(Message.PROTOCOL_HEADERS));
47                         List sa = null;
48                             if (headers != null) {
49                                     sa = headers.get("host");
50                                 }
51
52                                 if (sa != null && sa.size() == 1) {
53                                     hostName = "https://"+ sa.get(0).toString() + "/aai/";
54                                 }
55                 } catch (Exception e) { 
56                         // TODO: we may want to log an error here
57                 }
58                 // TODO: should this check the value a little closer and look for a pattern?
59                 if (hostName == null) { 
60                         hostName = AAIConfig.get(AAIConstants.AAI_SERVER_URL_BASE);
61                         //AAIConstants.AAI_SERVER_URL_BASE;
62                 }
63                 return hostName;
64         }
65         
66         /**
67          * Gets the.
68          *
69          * @param v the v
70          * @return the string
71          * @throws AAIException the AAI exception
72          */
73         public static String get(Version v) throws AAIException {
74                 String hostName = null;
75                 hostName = AAIApiServerURLBase.get();
76
77                 return hostName;
78         }
79         
80 }