b2c7fcc06201bfed73d2ce4de165c70fa7c1433a
[so.git] / common / src / main / java / org / onap / so / client / aai / AAIRestClientImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.client.aai;
22
23 import com.fasterxml.jackson.core.type.TypeReference;
24 import com.fasterxml.jackson.databind.ObjectMapper;
25 import java.io.IOException;
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.Map;
29 import java.util.Optional;
30 import javax.ws.rs.core.Response;
31 import org.onap.aai.domain.yang.GenericVnf;
32 import org.onap.aai.domain.yang.Pnf;
33 import org.onap.aai.domain.yang.Pserver;
34 import org.onap.so.client.aai.entities.CustomQuery;
35 import org.onap.so.client.aai.entities.Results;
36 import org.onap.so.client.aai.entities.uri.AAIResourceUri;
37 import org.onap.so.client.aai.entities.uri.AAIUriFactory;
38 import org.onap.so.client.graphinventory.Format;
39
40 public class AAIRestClientImpl implements AAIRestClientI {
41
42     private static final String PSERVER_VNF_QUERY = "pservers-fromVnf";
43
44     @Override
45     public List<Pserver> getPhysicalServerByVnfId(String vnfId) throws IOException {
46         List<AAIResourceUri> startNodes = new ArrayList<>();
47         startNodes.add(AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, vnfId));
48         String jsonInput = new AAIQueryClient()
49                 .query(Format.RESOURCE, new CustomQuery(startNodes, PSERVER_VNF_QUERY));
50
51         return this.getListOfPservers(jsonInput);
52
53     }
54
55     protected List<Pserver> getListOfPservers(String jsonInput) throws IOException {
56         ObjectMapper mapper = new AAICommonObjectMapperProvider().getMapper();
57         Results<Map<String, Pserver>> resultsFromJson = mapper.readValue(jsonInput,
58                 new TypeReference<Results<Map<String, Pserver>>>() {
59                 });
60         List<Pserver> results = new ArrayList<>();
61         for (Map<String, Pserver> m : resultsFromJson.getResult()) {
62             results.add(m.get("pserver"));
63         }
64         return results;
65     }
66
67     @Override
68     public void updateMaintenceFlagVnfId(String vnfId, boolean inMaint) {
69         GenericVnf genericVnf = new GenericVnf();
70         genericVnf.setInMaint(inMaint);
71         new AAIResourcesClient()
72                 .update(AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, vnfId), genericVnf);
73
74     }
75
76     @Override
77     public GenericVnf getVnfByName(String vnfId) {
78         return new AAIResourcesClient()
79                 .get(GenericVnf.class, AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, vnfId)).orElse(null);
80     }
81
82     @Override
83     public Optional<Pnf> getPnfByName(String pnfId) {
84         Response response = new AAIResourcesClient()
85                 .getFullResponse(AAIUriFactory.createResourceUri(AAIObjectType.PNF, pnfId));
86         if (response.getStatus() != 200) {
87             return Optional.empty();
88         } else {
89             return Optional.of(response.readEntity(Pnf.class));
90         }
91     }
92
93     @Override
94     public void createPnf(String pnfId, Pnf pnf) {
95         new AAIResourcesClient()
96                 .createIfNotExists(AAIUriFactory.createResourceUri(AAIObjectType.PNF, pnfId), Optional.of(pnf));
97     }
98 }