Upversion artifacts to 1.8.0-SNAPSHOT
[aai/data-router.git] / src / main / java / org / onap / aai / datarouter / util / AaiUiSvcPolicyUtil.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.datarouter.util;
22
23 import java.util.regex.Matcher;
24 import java.util.regex.Pattern;
25
26 import com.fasterxml.jackson.databind.JsonNode;
27 import com.fasterxml.jackson.databind.ObjectMapper;
28
29
30 public class AaiUiSvcPolicyUtil {
31
32   static ObjectMapper mapper = new ObjectMapper();
33   
34   public static JsonNode getOriginPayload(JsonNode payload) throws Exception{
35     /*
36      *{
37         "origin-uri": "/routerService/1search1",
38         "origin-payload": {}
39       }
40      */
41     JsonNode origPayload = null;
42     
43     if (payload.has("origin-payload")){
44       origPayload = payload.get("origin-payload");
45     }
46     return origPayload;
47   }
48   
49   public static String getOriginUri ( JsonNode payload ) throws Exception {
50     String originUri = "";
51     if (payload.has("origin-uri")){
52       originUri = payload.get("origin-uri").textValue();
53     }
54     return originUri;
55   }
56   
57   public static String getTargetUri(JsonNode payload) throws Exception{
58     /*
59      *{
60         "origin-uri": "/routerService/1search1",
61         "origin-payload": {}
62       }
63      */
64     String uri = "";
65     String originUri = getOriginUri(payload);
66     final Matcher m = Pattern.compile("/routerService/(.*)").matcher(originUri);
67     if ( m.find() ) {
68       uri = m.group(1);
69     } 
70     return uri;
71   }
72   
73 }