[AAI-178 Amsterdam] Make Edge Properties to be
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / parsers / uri / URIToRelationshipObject.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.parsers.uri;
22
23 import org.openecomp.aai.exceptions.AAIException;
24 import org.openecomp.aai.introspection.Introspector;
25 import org.openecomp.aai.introspection.Loader;
26 import org.openecomp.aai.introspection.Version;
27 import org.openecomp.aai.introspection.exceptions.AAIUnknownObjectException;
28 import org.openecomp.aai.serialization.db.EdgeType;
29 import org.openecomp.aai.util.AAIApiServerURLBase;
30 import org.openecomp.aai.workarounds.LegacyURITransformer;
31
32 import javax.ws.rs.core.MultivaluedMap;
33 import java.io.UnsupportedEncodingException;
34 import java.net.MalformedURLException;
35 import java.net.URI;
36 import java.net.URISyntaxException;
37 import java.util.List;
38
39 /**
40  * Given a URI a Relationship Object is returned.
41  * 
42  * The relationship-data objects are created from the keys in the model.
43  * The keys are processed in the order they appear in the model.
44  
45  *
46  */
47 public class URIToRelationshipObject implements Parsable {
48         
49         private Introspector result = null;
50                         
51         private LegacyURITransformer uriTransformer = null;
52         
53         private Version originalVersion = null;
54         
55         private Introspector relationship = null;
56         
57         private Loader loader = null;
58         
59         private String baseURL; 
60         
61         private final URI uri;
62         /**
63          * Instantiates a new URI to relationship object.
64          *
65          * @param loader the loader
66          * @param uri the uri
67          * @throws IllegalArgumentException the illegal argument exception
68          * @throws AAIException the AAI exception
69          * @throws UnsupportedEncodingException the unsupported encoding exception
70          * @throws MalformedURLException the malformed URL exception
71          */
72         public URIToRelationshipObject(Loader loader, URI uri) throws AAIException {
73                 
74                 this.loader = loader;
75                 uriTransformer = LegacyURITransformer.getInstance();
76                 originalVersion = loader.getVersion();
77
78                 try {
79                         relationship = loader.introspectorFromName("relationship");
80                 } catch (AAIUnknownObjectException e1) {
81                         throw new RuntimeException("Fatal error - could not load relationship object!", e1);
82                 }
83
84                 this.baseURL = AAIApiServerURLBase.get(originalVersion);
85                 this.uri = uri;
86                 
87                 }
88                 
89         public URIToRelationshipObject(Loader loader, URI uri, String baseURL) throws AAIException {
90                 this(loader, uri);
91                 
92                 if (baseURL != null) {
93                         this.baseURL = baseURL;
94                 }
95         }
96
97         
98         /**
99          * @{inheritDoc}
100          */
101         @Override
102         public String getCloudRegionTransform(){
103                 return "remove";
104         }
105         
106         /**
107          * @{inheritDoc}
108          */
109         @Override
110         public void processNamespace(Introspector obj) {
111         
112         }
113         
114         /**
115          * @{inheritDoc}
116          */
117         @Override
118         public boolean useOriginalLoader() {
119                 return true;
120         }
121         
122         /**
123          * Gets the result.
124          *
125          * @return the result
126          * @throws AAIException 
127          * @throws UnsupportedEncodingException 
128          * @throws URISyntaxException 
129          */
130         public Introspector getResult() throws UnsupportedEncodingException, AAIException, URISyntaxException {
131                 URIParser parser = new URIParser(this.loader, this.uri);
132                 parser.parse(this);
133                 URI originalUri = parser.getOriginalURI();
134                 
135                 URI relatedLink = new URI(this.baseURL + this.originalVersion + "/" + originalUri);
136                 this.relationship.setValue("related-link", relatedLink);
137                 if (this.originalVersion.compareTo(Version.v10) >= 0) {
138                         //only return the path section of the URI past v10
139                         relatedLink = new URI(relatedLink.getRawPath());
140                 }
141                 
142                 this.relationship.setValue("related-link", relatedLink.toString());
143                 
144                 this.result = relationship;
145                 return this.result;
146         }
147
148         @Override
149         public void processObject(Introspector obj, EdgeType type, MultivaluedMap<String, String> uriKeys)
150                         throws AAIException {
151                 for (String key : obj.getKeys()) {
152                         try {
153                                 Introspector data = loader.introspectorFromName("relationship-data");
154                                 data.setValue("relationship-key", obj.getDbName() + "." + key);
155                                 data.setValue("relationship-value", obj.getValue(key));
156                                 
157                                 ((List<Object>)relationship.getValue("relationship-data")).add(data.getUnderlyingObject());
158                         } catch (AAIUnknownObjectException e) {
159                                 throw new RuntimeException("Fatal error - relationship-data object not found!");
160                         }
161                 }
162                 relationship.setValue("related-to", obj.getDbName());
163         }
164
165         @Override
166         public void processContainer(Introspector obj, EdgeType type, MultivaluedMap<String, String> uriKeys,
167                         boolean isFinalContainer) throws AAIException {
168         }
169 }