Initial commit with all the necessary files
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / util / AAIApiVersion.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.regex.Matcher;
24 import java.util.regex.Pattern;
25
26 import org.apache.cxf.message.Message;
27 import org.apache.cxf.phase.PhaseInterceptorChain;
28
29 import org.openecomp.aai.exceptions.AAIException;
30
31 public class AAIApiVersion {
32         
33         private static final Pattern versionPattern = Pattern.compile("(^|\\/)(v\\d+)\\/");
34         
35         private static final Pattern latestVersionPattern = Pattern.compile("(^|\\/)(latest)\\/");
36         
37         /**
38          * Gets the.
39          *
40          * @return the string
41          * @throws AAIException the AAI exception
42          */
43         public static String get() throws AAIException {
44                 
45                 String apiVersion = null;
46                 try {
47                         Message message = PhaseInterceptorChain.getCurrentMessage();
48                         String requestURI = (String) message.get(Message.REQUEST_URI);
49                         
50                         if (requestURI != null) {
51                                 Matcher matcher = versionPattern.matcher(requestURI);
52                                 if (matcher.find() && matcher.groupCount() >= 2) {
53                                         apiVersion = matcher.group(2);
54                         }
55                                 if (apiVersion == null) { 
56                                         Matcher latestMatcher = latestVersionPattern.matcher(requestURI);
57                                         if (latestMatcher.find() && latestMatcher.groupCount() >= 2) {
58                                                 apiVersion = AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP, AAIConstants.AAI_DEFAULT_API_VERSION);
59                                         }
60                                 }
61                                 
62                         }
63                         
64                 } catch (Exception e) { 
65                         // TODO: we may want to log an error here
66                 }
67                 // TODO: should this check the value a little closer and look for a pattern?
68                 if (apiVersion == null || !apiVersion.startsWith("v")) { 
69                         apiVersion = AAIConfig.get (AAIConstants.AAI_DEFAULT_API_VERSION_PROP, AAIConstants.AAI_DEFAULT_API_VERSION);
70                         //apiVersion = AAIConstants.AAI_DEFAULT_API_VERSION;
71                 }
72                 return apiVersion;
73         }
74 }