Adapt A1 controller to latest A1 spec
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / clients / StdA1Client.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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.oransc.policyagent.clients;
22
23 import java.lang.invoke.MethodHandles;
24 import java.util.ArrayList;
25 import java.util.List;
26
27 import org.json.JSONArray;
28 import org.json.JSONException;
29 import org.json.JSONObject;
30 import org.oransc.policyagent.configuration.RicConfig;
31 import org.oransc.policyagent.repository.Policy;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34
35 import reactor.core.publisher.Flux;
36 import reactor.core.publisher.Mono;
37
38 public class StdA1Client implements A1Client {
39     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
40
41     private final AsyncRestClient restClient;
42
43     public StdA1Client(RicConfig ricConfig) {
44         String baseUrl = ricConfig.baseUrl() + "/A1-P/v1";
45         this.restClient = new AsyncRestClient(baseUrl);
46     }
47
48     public StdA1Client(RicConfig ricConfig, AsyncRestClient restClient) {
49         this.restClient = restClient;
50     }
51
52     @Override
53     public Mono<List<String>> getPolicyTypeIdentities() {
54         return restClient.get("/policytypes/identities") //
55             .flatMap(this::parseJsonArrayOfString);
56     }
57
58     @Override
59     public Mono<List<String>> getPolicyIdentities() {
60         return restClient.get("/policies/identities") //
61             .flatMap(this::parseJsonArrayOfString);
62     }
63
64     @Override
65     public Mono<String> getPolicyTypeSchema(String policyTypeId) {
66         Mono<String> response = restClient.get("/policytypes/" + policyTypeId);
67         return response.flatMap(this::createMono);
68     }
69
70     @Override
71     public Mono<String> putPolicy(Policy policy) {
72         // TODO update when simulator is updated to include policy type
73         // Mono<String> response = client.put("/policies/" + policy.id() + "?policyTypeId=" + policy.type().name(),
74         // policy.json());
75         Mono<String> response = restClient.put("/policies/" + policy.id(), policy.json());
76
77         return response.flatMap(this::createMono);
78     }
79
80     @Override
81     public Mono<String> deletePolicy(Policy policy) {
82         return deletePolicy(policy.id());
83     }
84
85     @Override
86     public Flux<String> deleteAllPolicies() {
87         return getPolicyIdentities() //
88             .flatMapMany(policyIds -> Flux.fromIterable(policyIds)) // )
89             .flatMap(policyId -> deletePolicy(policyId)); //
90     }
91
92     @Override
93     public Mono<A1ProtocolType> getProtocolVersion() {
94         return getPolicyTypeIdentities() //
95             .flatMap(x -> Mono.just(A1ProtocolType.STD_V1));
96     }
97
98     private Mono<String> deletePolicy(String policyId) {
99         return restClient.delete("/policies/" + policyId);
100     }
101
102     private Mono<List<String>> parseJsonArrayOfString(String inputString) {
103         try {
104             List<String> arrayList = new ArrayList<>();
105             JSONArray jsonArray = new JSONArray(inputString);
106             for (int i = 0; i < jsonArray.length(); i++) {
107                 arrayList.add(jsonArray.getString(i));
108             }
109             logger.debug("A1 client: received list = {}", arrayList);
110             return Mono.just(arrayList);
111         } catch (JSONException ex) { // invalid json
112             return Mono.error(ex);
113         }
114     }
115
116     private Mono<String> createMono(String inputString) {
117         try {
118             JSONObject jsonObject = new JSONObject(inputString);
119             String jsonString = jsonObject.toString();
120             logger.debug("A1 client: received string = {}", jsonString);
121             return Mono.just(jsonString);
122         } catch (JSONException ex) { // invalid json
123             return Mono.error(ex);
124         }
125     }
126
127 }