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