7d41e489aa7cfff4d8619741aa63f31daa8a7704
[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.JsonObject;
28 import com.google.gson.reflect.TypeToken;
29
30 import java.lang.reflect.Type;
31 import java.util.List;
32
33 import org.onap.clamp.clds.util.JsonUtils;
34 import org.onap.clamp.policy.microservice.MicroServicePolicy;
35 import org.onap.clamp.policy.operational.OperationalPolicy;
36 import org.springframework.beans.factory.annotation.Autowired;
37 import org.springframework.stereotype.Controller;
38
39 @Controller
40 public class LoopController {
41
42     private final LoopService loopService;
43     private static final Type OPERATIONAL_POLICY_TYPE = new TypeToken<List<OperationalPolicy>>() {
44     }.getType();
45     private static final Type MICROSERVICE_POLICY_TYPE = new TypeToken<List<MicroServicePolicy>>() {
46     }.getType();
47
48     @Autowired
49     public LoopController(LoopService loopService) {
50         this.loopService = loopService;
51     }
52
53     public List<String> getLoopNames() {
54         return loopService.getClosedLoopNames();
55     }
56
57     public Loop getLoop(String loopName) {
58         return loopService.getLoop(loopName);
59     }
60
61     /**
62      * Update the Operational Policy properties.
63      *
64      * @param loopName
65      *        The loop name
66      * @param operationalPoliciesJson
67      *        The new Operational Policy properties
68      * @return The updated loop
69      */
70     public Loop updateOperationalPolicies(String loopName, JsonArray operationalPoliciesJson) {
71         List<OperationalPolicy> operationalPolicies = JsonUtils.GSON.fromJson(operationalPoliciesJson,
72             OPERATIONAL_POLICY_TYPE);
73         return loopService.updateAndSaveOperationalPolicies(loopName, operationalPolicies);
74     }
75
76     /**
77      * Update the whole array of MicroService policies properties
78      *
79      * @param loopName
80      *        The loop name
81      * @param microServicePoliciesJson
82      *        The array of all MicroService policies properties
83      * @return The updated loop
84      */
85     public Loop updateMicroservicePolicies(String loopName, JsonArray microServicePoliciesJson) {
86         List<MicroServicePolicy> microservicePolicies = JsonUtils.GSON.fromJson(microServicePoliciesJson,
87             MICROSERVICE_POLICY_TYPE);
88         return loopService.updateAndSaveMicroservicePolicies(loopName, microservicePolicies);
89     }
90
91     /**
92      * Update the global properties
93      *
94      * @param loopName
95      *        The loop name
96      * @param globalProperties
97      *        The updated global properties
98      * @return The updated loop
99      */
100     public Loop updateGlobalPropertiesJson(String loopName, JsonObject globalProperties) {
101         return loopService.updateAndSaveGlobalPropertiesJson(loopName, globalProperties);
102     }
103
104     /**
105      * Update one MicroService policy properties
106      *
107      * @param loopName
108      *        The loop name
109      * @param newMicroservicePolicy
110      *        The new MicroService policy properties
111      * @return The updated MicroService policy
112      */
113     public MicroServicePolicy updateMicroservicePolicy(String loopName, MicroServicePolicy newMicroservicePolicy) {
114         return loopService.updateMicroservicePolicy(loopName, newMicroservicePolicy);
115     }
116
117     /**
118      * Get the SVG representation of the loop
119      *
120      * @param loopName
121      *        The loop name
122      * @return The SVG representation
123      */
124     public String getSVGRepresentation(String loopName) {
125         Loop loop = loopService.getLoop(loopName);
126         return loop != null ? loop.getSvgRepresentation() : null;
127     }
128 }