Merge "Rework UI"
[clamp.git] / src / main / java / org / onap / clamp / loop / LoopController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 Nokia Intellectual Property. All rights
6  *                             reserved.
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  *
22  */
23
24 package org.onap.clamp.loop;
25
26 import com.google.gson.JsonArray;
27 import com.google.gson.JsonElement;
28 import com.google.gson.JsonObject;
29 import com.google.gson.reflect.TypeToken;
30
31 import java.lang.reflect.Type;
32 import java.util.List;
33
34 import org.onap.clamp.clds.util.JsonUtils;
35 import org.onap.clamp.policy.microservice.MicroServicePolicy;
36 import org.onap.clamp.policy.operational.OperationalPolicy;
37 import org.springframework.beans.factory.annotation.Autowired;
38 import org.springframework.stereotype.Controller;
39
40 @Controller
41 public class LoopController {
42
43     private final LoopService loopService;
44     private static final Type OPERATIONAL_POLICY_TYPE = new TypeToken<List<OperationalPolicy>>() {
45     }.getType();
46     private static final Type MICROSERVICE_POLICY_TYPE = new TypeToken<List<MicroServicePolicy>>() {
47     }.getType();
48
49     @Autowired
50     public LoopController(LoopService loopService) {
51         this.loopService = loopService;
52     }
53
54     public List<String> getLoopNames() {
55         return loopService.getClosedLoopNames();
56     }
57
58     public Loop getLoop(String loopName) {
59         return loopService.getLoop(loopName);
60     }
61
62     public Loop updateOperationalPolicies(String loopName, JsonArray operationalPoliciesJson) {
63         List<OperationalPolicy> operationalPolicies = JsonUtils.GSON
64             .fromJson(operationalPoliciesJson, OPERATIONAL_POLICY_TYPE);
65         return loopService.updateAndSaveOperationalPolicies(loopName, operationalPolicies);
66     }
67
68     public Loop updateMicroservicePolicies(String loopName, JsonArray microServicePoliciesJson) {
69         List<MicroServicePolicy> microservicePolicies = JsonUtils.GSON
70             .fromJson(microServicePoliciesJson, MICROSERVICE_POLICY_TYPE);
71         return loopService.updateAndSaveMicroservicePolicies(loopName, microservicePolicies);
72     }
73
74     public Loop updateGlobalPropertiesJson(String loopName, JsonObject globalProperties){
75         return loopService.updateAndSaveGlobalPropertiesJson(loopName, globalProperties);
76     }
77
78     public MicroServicePolicy updateMicroservicePolicy(String loopName, MicroServicePolicy newMicroservicePolicy) {
79         return loopService.updateMicroservicePolicy(loopName, newMicroservicePolicy);
80     }
81
82     public String getSVGRepresentation(String loopName) {
83         return loopService.getClosedLoopModelSVG(loopName);
84
85     }
86 }