Remove code smells in PolicyController
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / controllers / PolicyController.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.controllers;
22
23 import com.google.gson.Gson;
24 import com.google.gson.GsonBuilder;
25
26 import io.swagger.annotations.Api;
27 import io.swagger.annotations.ApiOperation;
28 import io.swagger.annotations.ApiResponse;
29 import io.swagger.annotations.ApiResponses;
30 import java.util.ArrayList;
31 import java.util.Collection;
32 import java.util.List;
33 import java.util.Vector;
34
35 import org.oransc.policyagent.clients.A1ClientFactory;
36 import org.oransc.policyagent.configuration.ApplicationConfig;
37 import org.oransc.policyagent.exceptions.ServiceException;
38 import org.oransc.policyagent.repository.ImmutablePolicy;
39 import org.oransc.policyagent.repository.Policies;
40 import org.oransc.policyagent.repository.Policy;
41 import org.oransc.policyagent.repository.PolicyType;
42 import org.oransc.policyagent.repository.PolicyTypes;
43 import org.oransc.policyagent.repository.Ric;
44 import org.oransc.policyagent.repository.Rics;
45 import org.springframework.beans.factory.annotation.Autowired;
46 import org.springframework.http.HttpStatus;
47 import org.springframework.http.ResponseEntity;
48 import org.springframework.web.bind.annotation.DeleteMapping;
49 import org.springframework.web.bind.annotation.GetMapping;
50 import org.springframework.web.bind.annotation.PutMapping;
51 import org.springframework.web.bind.annotation.RequestBody;
52 import org.springframework.web.bind.annotation.RequestParam;
53 import org.springframework.web.bind.annotation.RestController;
54 import reactor.core.publisher.Mono;
55
56 @RestController
57 @Api(value = "Policy Management API")
58 public class PolicyController {
59
60     private final Rics rics;
61     private final PolicyTypes policyTypes;
62     private final Policies policies;
63     private final A1ClientFactory a1ClientFactory;
64
65     private static Gson gson = new GsonBuilder() //
66         .serializeNulls() //
67         .create(); //
68
69     @Autowired
70     PolicyController(ApplicationConfig config, PolicyTypes types, Policies policies, Rics rics,
71         A1ClientFactory a1ClientFactory) {
72         this.policyTypes = types;
73         this.policies = policies;
74         this.rics = rics;
75         this.a1ClientFactory = a1ClientFactory;
76     }
77
78     @GetMapping("/policy_schemas")
79     @ApiOperation(value = "Returns policy type schema definitions")
80     @ApiResponses(
81         value = {
82             @ApiResponse(code = 200, message = "Policy schemas", response = String.class, responseContainer = "List")})
83     public ResponseEntity<String> getPolicySchemas(@RequestParam(name = "ric", required = false) String ricName) {
84         synchronized (this.policyTypes) {
85             if (ricName == null) {
86                 Collection<PolicyType> types = this.policyTypes.getAll();
87                 return new ResponseEntity<>(toPolicyTypeSchemasJson(types), HttpStatus.OK);
88             } else {
89                 try {
90                     Collection<PolicyType> types = rics.getRic(ricName).getSupportedPolicyTypes();
91                     return new ResponseEntity<>(toPolicyTypeSchemasJson(types), HttpStatus.OK);
92                 } catch (ServiceException e) {
93                     return new ResponseEntity<>(e.toString(), HttpStatus.NOT_FOUND);
94                 }
95             }
96         }
97     }
98
99     @GetMapping("/policy_schema")
100     @ApiOperation(value = "Returns one policy type schema definition")
101     @ApiResponses(value = {@ApiResponse(code = 200, message = "Policy schema", response = Object.class)})
102     public ResponseEntity<String> getPolicySchema(@RequestParam(name = "id", required = true) String id) {
103         try {
104             PolicyType type = policyTypes.getType(id);
105             return new ResponseEntity<>(type.schema(), HttpStatus.OK);
106         } catch (ServiceException e) {
107             return new ResponseEntity<>(e.toString(), HttpStatus.NOT_FOUND);
108         }
109     }
110
111     @GetMapping("/policy_types")
112     @ApiOperation(value = "Query policy type names")
113     @ApiResponses(
114         value = {@ApiResponse(
115             code = 200,
116             message = "Policy type names",
117             response = String.class,
118             responseContainer = "List")})
119     public ResponseEntity<String> getPolicyTypes(@RequestParam(name = "ric", required = false) String ricName) {
120         synchronized (this.policyTypes) {
121             if (ricName == null) {
122                 Collection<PolicyType> types = this.policyTypes.getAll();
123                 return new ResponseEntity<>(toPolicyTypeIdsJson(types), HttpStatus.OK);
124             } else {
125                 try {
126                     Collection<PolicyType> types = rics.getRic(ricName).getSupportedPolicyTypes();
127                     return new ResponseEntity<>(toPolicyTypeIdsJson(types), HttpStatus.OK);
128                 } catch (ServiceException e) {
129                     return new ResponseEntity<>(e.toString(), HttpStatus.NOT_FOUND);
130                 }
131             }
132         }
133     }
134
135     @GetMapping("/policy")
136     @ApiOperation(value = "Returns a policy configuration") //
137     @ApiResponses(
138         value = { //
139             @ApiResponse(code = 200, message = "Policy found", response = Object.class), //
140             @ApiResponse(code = 204, message = "Policy is not found")} //
141     )
142     public ResponseEntity<String> getPolicy( //
143         @RequestParam(name = "instance", required = true) String instance) {
144         try {
145             Policy p = policies.getPolicy(instance);
146             return new ResponseEntity<>(p.json(), HttpStatus.OK);
147         } catch (ServiceException e) {
148             return new ResponseEntity<>(e.getMessage(), HttpStatus.NO_CONTENT);
149         }
150     }
151
152     @DeleteMapping("/policy")
153     @ApiOperation(value = "Delete a policy", response = Object.class)
154     @ApiResponses(value = {@ApiResponse(code = 204, message = "Policy deleted", response = Object.class)})
155     public Mono<ResponseEntity<Void>> deletePolicy( //
156         @RequestParam(name = "instance", required = true) String id) {
157         Policy policy = policies.get(id);
158         if (policy != null && policy.ric().getState() == Ric.RicState.IDLE) {
159             policies.remove(policy);
160             return a1ClientFactory.createA1Client(policy.ric()) //
161                 .flatMap(client -> client.deletePolicy(policy)) //
162                 .flatMap(notUsed -> Mono.just(new ResponseEntity<>(HttpStatus.NO_CONTENT)));
163         } else {
164             return Mono.just(new ResponseEntity<>(HttpStatus.NOT_FOUND));
165         }
166     }
167
168     @PutMapping(path = "/policy")
169     @ApiOperation(value = "Put a policy", response = String.class)
170     @ApiResponses(value = {@ApiResponse(code = 200, message = "Policy created or updated")})
171     public Mono<ResponseEntity<String>> putPolicy( //
172         @RequestParam(name = "type", required = true) String typeName, //
173         @RequestParam(name = "instance", required = true) String instanceId, //
174         @RequestParam(name = "ric", required = true) String ricName, //
175         @RequestParam(name = "service", required = true) String service, //
176         @RequestBody Object jsonBody) {
177
178         String jsonString = gson.toJson(jsonBody);
179
180         Ric ric = rics.get(ricName);
181         PolicyType type = policyTypes.get(typeName);
182         if (ric != null && type != null && ric.getState() == Ric.RicState.IDLE) {
183             Policy policy = ImmutablePolicy.builder() //
184                 .id(instanceId) //
185                 .json(jsonString) //
186                 .type(type) //
187                 .ric(ric) //
188                 .ownerServiceName(service) //
189                 .lastModified(getTimeStampUtc()) //
190                 .build();
191             return a1ClientFactory.createA1Client(ric) //
192                 .flatMap(client -> client.putPolicy(policy)) //
193                 .doOnNext(notUsed -> policies.put(policy)) //
194                 .flatMap(notUsed -> Mono.just(new ResponseEntity<>(HttpStatus.OK)));
195         }
196         return Mono.just(new ResponseEntity<>(HttpStatus.NOT_FOUND));
197     }
198
199     @GetMapping("/policies")
200     @ApiOperation(value = "Query policies")
201     @ApiResponses(
202         value = {
203             @ApiResponse(code = 200, message = "Policies", response = PolicyInfo.class, responseContainer = "List")})
204     public ResponseEntity<String> getPolicies( //
205         @RequestParam(name = "type", required = false) String type, //
206         @RequestParam(name = "ric", required = false) String ric, //
207         @RequestParam(name = "service", required = false) String service) //
208     {
209         synchronized (policies) {
210             Collection<Policy> result = null;
211
212             if (type != null) {
213                 result = policies.getForType(type);
214                 result = filter(result, null, ric, service);
215             } else if (service != null) {
216                 result = policies.getForService(service);
217                 result = filter(result, type, ric, null);
218             } else if (ric != null) {
219                 result = filter(policies.getForRic(ric), type, null, service);
220             } else {
221                 result = policies.getAll();
222             }
223
224             String policiesJson;
225             try {
226                 policiesJson = policiesToJson(result);
227             } catch (ServiceException e) {
228                 return new ResponseEntity<>(e.getMessage(), HttpStatus.NO_CONTENT);
229             }
230             return new ResponseEntity<>(policiesJson, HttpStatus.OK);
231         }
232     }
233
234     @GetMapping("/policy_status")
235     @ApiOperation(value = "Returns a policy status") //
236     @ApiResponses(
237         value = { //
238             @ApiResponse(code = 200, message = "Policy status", response = Object.class), //
239             @ApiResponse(code = 204, message = "Policy is not found", response = String.class)} //
240     )
241     public Mono<ResponseEntity<String>> getPolicyStatus( //
242         @RequestParam(name = "instance", required = true) String instance) {
243         try {
244             Policy policy = policies.getPolicy(instance);
245
246             return a1ClientFactory.createA1Client(policy.ric()) //
247                 .flatMap(client -> client.getPolicyStatus(policy)) //
248                 .flatMap(status -> Mono.just(new ResponseEntity<>(status, HttpStatus.OK)));
249         } catch (ServiceException e) {
250             return Mono.just(new ResponseEntity<>(e.getMessage(), HttpStatus.NO_CONTENT));
251         }
252     }
253
254     private boolean include(String filter, String value) {
255         return filter == null || value.equals(filter);
256     }
257
258     private Collection<Policy> filter(Collection<Policy> collection, String type, String ric, String service) {
259         if (type == null && ric == null && service == null) {
260             return collection;
261         }
262         List<Policy> filtered = new ArrayList<>();
263         for (Policy p : collection) {
264             if (include(type, p.type().name()) && include(ric, p.ric().name())
265                 && include(service, p.ownerServiceName())) {
266                 filtered.add(p);
267             }
268         }
269         return filtered;
270     }
271
272     private String policiesToJson(Collection<Policy> policies) throws ServiceException {
273         List<PolicyInfo> v = new ArrayList<>(policies.size());
274         for (Policy p : policies) {
275             PolicyInfo policyInfo = new PolicyInfo();
276             policyInfo.id = p.id();
277             policyInfo.json = p.json();
278             policyInfo.ric = p.ric().name();
279             policyInfo.type = p.type().name();
280             policyInfo.service = p.ownerServiceName();
281             policyInfo.lastModified = p.lastModified();
282             if (!policyInfo.validate()) {
283                 throw new ServiceException("BUG, all fields must be set");
284             }
285             v.add(policyInfo);
286         }
287         return gson.toJson(v);
288     }
289
290     private String toPolicyTypeSchemasJson(Collection<PolicyType> types) {
291         StringBuilder result = new StringBuilder();
292         result.append("[");
293         boolean first = true;
294         for (PolicyType t : types) {
295             if (!first) {
296                 result.append(",");
297             }
298             first = false;
299             result.append(t.schema());
300         }
301         result.append("]");
302         return result.toString();
303     }
304
305     private String toPolicyTypeIdsJson(Collection<PolicyType> types) {
306         List<String> v = new ArrayList<>(types.size());
307         for (PolicyType t : types) {
308             v.add(t.name());
309         }
310         return gson.toJson(v);
311     }
312
313     private String getTimeStampUtc() {
314         return java.time.Instant.now().toString();
315     }
316
317 }