blob: c8ecca2ffd4ef84e30f8a2c43fa908e43cc9044d [file] [log] [blame]
sebdetc8d61302019-07-04 15:50:34 +02001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2019 AT&T 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 * ===================================================================
xuegaof248df62019-07-15 15:16:18 +020021 *
sebdetc8d61302019-07-04 15:50:34 +020022 */
sebdete44fdb12019-07-12 12:25:56 +020023
sebdet493c3832019-07-15 17:26:18 +020024export default class LoopCache {
sebdete44fdb12019-07-12 12:25:56 +020025 loopJsonCache;
26
27 constructor(loopJson) {
28 this.loopJsonCache=loopJson;
sebdetc8d61302019-07-04 15:50:34 +020029 }
sebdet4946e5b2019-07-10 12:32:36 +020030
sebdetb65f1212019-08-23 07:49:25 -070031 updateMicroServiceProperties(name, newMsProperties) {
sebdet4946e5b2019-07-10 12:32:36 +020032 for (var policy in this.loopJsonCache["microServicePolicies"]) {
sebdetb65f1212019-08-23 07:49:25 -070033 if (this.loopJsonCache["microServicePolicies"][policy]["name"] === name) {
sebdet58135b82020-02-27 11:39:50 -080034 this.loopJsonCache["microServicePolicies"][policy]["configurationsJson"] = newMsProperties;
sebdet4946e5b2019-07-10 12:32:36 +020035 }
36 }
sebdetc8d61302019-07-04 15:50:34 +020037 }
sebdet4946e5b2019-07-10 12:32:36 +020038
xuegao635445a2020-03-02 11:37:20 +010039 updateMicroServicePdpGroup(name, pdpGroup, pdpSubgroup) {
40 for (var policy in this.loopJsonCache["microServicePolicies"]) {
41 if (this.loopJsonCache["microServicePolicies"][policy]["name"] === name) {
42 this.loopJsonCache["microServicePolicies"][policy]["pdpGroup"] = pdpGroup;
43 this.loopJsonCache["microServicePolicies"][policy]["pdpSubgroup"] = pdpSubgroup;
44 }
45 }
46 }
47
sebdet4946e5b2019-07-10 12:32:36 +020048 updateGlobalProperties(newGlobalProperties) {
49 this.loopJsonCache["globalPropertiesJson"] = newGlobalProperties;
sebdetc8d61302019-07-04 15:50:34 +020050 }
sebdet4946e5b2019-07-10 12:32:36 +020051
xuegao635445a2020-03-02 11:37:20 +010052 updateOperationalPolicyProperties(name, newOpProperties) {
53 for (var policy in this.loopJsonCache["operationalPolicies"]) {
54 if (this.loopJsonCache["operationalPolicies"][policy]["name"] === name) {
55 this.loopJsonCache["operationalPolicies"][policy]["configurationsJson"] = newOpProperties;
56 }
57 }
58 }
59
60 updateOperationalPolicyPdpGroup(name, pdpGroup, pdpSubgroup) {
61 for (var policy in this.loopJsonCache["operationalPolicies"]) {
62 if (this.loopJsonCache["operationalPolicies"][policy]["name"] === name) {
63 this.loopJsonCache["operationalPolicies"][policy]["pdpGroup"] = pdpGroup;
64 this.loopJsonCache["operationalPolicies"][policy]["pdpSubgroup"] = pdpSubgroup;
65 }
66 }
sebdetc8d61302019-07-04 15:50:34 +020067 }
sebdet4946e5b2019-07-10 12:32:36 +020068
69 getLoopName() {
70 return this.loopJsonCache["name"];
sebdetc8d61302019-07-04 15:50:34 +020071 }
sebdet4946e5b2019-07-10 12:32:36 +020072
sebdet493c3832019-07-15 17:26:18 +020073 getOperationalPolicyConfigurationJson() {
sebdet2df6c082019-07-18 15:29:45 +020074 return this.loopJsonCache["operationalPolicies"]["0"]["configurationsJson"];
sebdetc8d61302019-07-04 15:50:34 +020075 }
xuegao635445a2020-03-02 11:37:20 +010076
sebdetf9e2cee2019-08-09 18:36:09 +020077 getOperationalPolicyJsonSchema() {
xuegaoc488fed2019-12-19 11:58:45 +010078 return this.loopJsonCache["operationalPolicies"]["0"]["jsonRepresentation"];
sebdetf9e2cee2019-08-09 18:36:09 +020079 }
sebdet4946e5b2019-07-10 12:32:36 +020080
81 getOperationalPolicies() {
sebdet2df6c082019-07-18 15:29:45 +020082 return this.loopJsonCache["operationalPolicies"];
sebdetc8d61302019-07-04 15:50:34 +020083 }
sebdet4946e5b2019-07-10 12:32:36 +020084
xuegaoc488fed2019-12-19 11:58:45 +010085 getOperationalPoliciesNoJsonSchema() {
86 var operationalPolicies = JSON.parse(JSON.stringify(this.loopJsonCache["operationalPolicies"]));
87 delete operationalPolicies[0]["jsonRepresentation"];
88 return operationalPolicies;
89 }
90
sebdet493c3832019-07-15 17:26:18 +020091 getGlobalProperties() {
sebdet2df6c082019-07-18 15:29:45 +020092 return this.loopJsonCache["globalPropertiesJson"];
sebdetc8d61302019-07-04 15:50:34 +020093 }
sebdet4946e5b2019-07-10 12:32:36 +020094
sebdet493c3832019-07-15 17:26:18 +020095 getDcaeDeploymentProperties() {
sebdet2df6c082019-07-18 15:29:45 +020096 return this.loopJsonCache["globalPropertiesJson"]["dcaeDeployParameters"];
sebdetc8d61302019-07-04 15:50:34 +020097 }
sebdet4946e5b2019-07-10 12:32:36 +020098
sebdet2df6c082019-07-18 15:29:45 +020099 getMicroServicePolicies() {
100 return this.loopJsonCache["microServicePolicies"];
101 }
102
sebdetc11160e2020-02-25 15:13:31 -0800103 getOperationalPolicyForName(name) {
104 var opProperties=this.getOperationalPolicies();
105 for (var policy in opProperties) {
106 if (opProperties[policy]["name"] === name) {
107 return opProperties[policy];
108 }
109 }
110 return null;
111 }
112
113 getOperationalPolicyPropertiesForName(name) {
114 var opConfig = this.getOperationalPolicyForName(name);
115 if (opConfig !== null) {
sebdet58135b82020-02-27 11:39:50 -0800116 return opConfig["configurationsJson"];
sebdetc11160e2020-02-25 15:13:31 -0800117 }
118 return null;
119 }
120
121 getOperationalPolicyJsonRepresentationForName(name) {
xuegao635445a2020-03-02 11:37:20 +0100122 var opConfig = this.getOperationalPolicyForName(name);
123 if (opConfig !== null) {
124 return opConfig["jsonRepresentation"];
125 }
126 return null;
127 }
sebdetc11160e2020-02-25 15:13:31 -0800128
xuegao635445a2020-03-02 11:37:20 +0100129 getOperationalPolicySupportedPdpgroup(name) {
130 var opConfig=this.getOperationalPolicyForName(name);
131 if (opConfig !== null) {
132 return opConfig["policyModel"]["policyPdpGroup"]["supportedPdpGroups"];
133 }
134 return null;
135 }
136
137 getOperationalPolicyPdpGroup(name) {
138 var opConfig=this.getOperationalPolicyForName(name);
139 if (opConfig !== null) {
140 return opConfig["pdpGroup"];
141 }
142 return null;
143 }
144
145 getOperationalPolicyPdpSubgroup(name) {
146 var opConfig=this.getOperationalPolicyForName(name);
147 if (opConfig !== null) {
148 return opConfig["pdpSubgroup"];
149 }
150 return null;
151 }
152
153 getMicroServiceSupportedPdpgroup(name) {
154 var microService=this.getMicroServiceForName(name);
155 if (microService !== null) {
156 return microService["policyModel"]["policyPdpGroup"]["supportedPdpGroups"];
157 }
158 return null;
159 }
160
161 getMicroServicePdpGroup(name) {
162 var microService=this.getMicroServiceForName(name);
163 if (microService !== null) {
164 return microService["pdpGroup"];
165 }
166 return null;
167 }
168
169 getMicroServicePdpSubgroup(name) {
170 var microService=this.getMicroServiceForName(name);
171 if (microService !== null) {
172 return microService["pdpSubgroup"];
173 }
174 return null;
175 }
sebdetc11160e2020-02-25 15:13:31 -0800176
sebdet2df6c082019-07-18 15:29:45 +0200177 getMicroServiceForName(name) {
178 var msProperties=this.getMicroServicePolicies();
sebdet4946e5b2019-07-10 12:32:36 +0200179 for (var policy in msProperties) {
sebdet2df6c082019-07-18 15:29:45 +0200180 if (msProperties[policy]["name"] === name) {
181 return msProperties[policy];
sebdet4946e5b2019-07-10 12:32:36 +0200182 }
183 }
184 return null;
sebdetc8d61302019-07-04 15:50:34 +0200185 }
sebdet4946e5b2019-07-10 12:32:36 +0200186
sebdet2df6c082019-07-18 15:29:45 +0200187 getMicroServicePropertiesForName(name) {
188 var msConfig = this.getMicroServiceForName(name);
189 if (msConfig !== null) {
sebdet58135b82020-02-27 11:39:50 -0800190 return msConfig["configurationsJson"];
sebdet4946e5b2019-07-10 12:32:36 +0200191 }
192 return null;
sebdetc8d61302019-07-04 15:50:34 +0200193 }
sebdet4946e5b2019-07-10 12:32:36 +0200194
sebdet2df6c082019-07-18 15:29:45 +0200195 getMicroServiceJsonRepresentationForName(name) {
196 var msConfig = this.getMicroServiceForName(name);
197 if (msConfig !== null) {
198 return msConfig["jsonRepresentation"];
sebdet4946e5b2019-07-10 12:32:36 +0200199 }
200 return null;
sebdetc8d61302019-07-04 15:50:34 +0200201 }
sebdet4946e5b2019-07-10 12:32:36 +0200202
203 getResourceDetailsVfProperty() {
xuegao289e8e12019-11-08 13:10:36 +0100204 return this.loopJsonCache["modelService"]["resourceDetails"]["VF"];
sebdetc8d61302019-07-04 15:50:34 +0200205 }
sebdet4946e5b2019-07-10 12:32:36 +0200206
207 getResourceDetailsVfModuleProperty() {
xuegao289e8e12019-11-08 13:10:36 +0100208 return this.loopJsonCache["modelService"]["resourceDetails"]["VFModule"];
sebdetc8d61302019-07-04 15:50:34 +0200209 }
sebdet4946e5b2019-07-10 12:32:36 +0200210
211 getLoopLogsArray() {
sebdetc8d61302019-07-04 15:50:34 +0200212 return this.loopJsonCache.loopLogs;
213 }
sebdet4946e5b2019-07-10 12:32:36 +0200214
sebdet190227a2019-07-19 16:51:19 +0200215 getComputedState() {
216 return this.loopJsonCache.lastComputedState;
217 }
218
sebdet4946e5b2019-07-10 12:32:36 +0200219 getComponentStates() {
sebdetc8d61302019-07-04 15:50:34 +0200220 return this.loopJsonCache.components;
221 }
sebdetc8d61302019-07-04 15:50:34 +0200222}