Rework deploy/undeploy UI
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / propertyController.js
1 /*-
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  * ===================================================================
21  * 
22  */
23
24 function updateMsProperties(type, newMsProperties) {
25     var newMsProperties = JSON.parse(JSON.stringify(cl_props["microServicePolicies"]));
26     for (p in newMsProperties) {
27         if (newMsProperties[p]["name"] == type) {
28                 cl_props["microServicePolicies"][p] = newMsProperties;
29         }
30     }
31 }
32
33 function updateGlobalProperties(newGlobalProperties) {
34     cl_props["globalPropertiesJson"] = newGlobalProperties;
35 }
36
37 function updateOpPolicyProperties(newOpProperties) {    
38    cl_props["operationalPolicies"] = newOpProperties;
39 }
40
41 function getLoopName() {
42     return cl_props["name"];
43 }
44
45 function getOperationalPolicyProperty() {
46     return JSON.parse(JSON.stringify(cl_props["operationalPolicies"]["0"]["configurationsJson"]));
47 }
48
49 function getOperationalPolicies() {
50     return JSON.parse(JSON.stringify(cl_props["operationalPolicies"]));
51 }
52
53 function getGlobalProperty() {
54     return JSON.parse(JSON.stringify(cl_props["globalPropertiesJson"]));
55 }
56
57 function getDeploymentProperties() {
58     return JSON.parse(JSON.stringify(cl_props["globalPropertiesJson"]["dcaeDeployParameters"]));
59 }
60
61 function getMsJson(type) {
62     var msProperties = cl_props["microServicePolicies"];
63     for (p in msProperties) {
64         if (msProperties[p]["name"] == type) {
65            return JSON.parse(JSON.stringify(msProperties[p]));
66         }
67     }
68     return null;
69 }
70
71 function getMsProperty(type) {
72     var msProperties = cl_props["microServicePolicies"];
73     for (p in msProperties) {
74         if (msProperties[p]["name"] == type) {
75            return JSON.parse(JSON.stringify(msProperties[p]["properties"]));
76         }
77     }
78     return null;
79 }
80
81 function getMsUI(type) {
82     var msProperties = cl_props["microServicePolicies"];
83     for (p in msProperties) {
84         if (msProperties[p]["name"] == type) {
85            return JSON.parse(JSON.stringify(msProperties[p]["jsonRepresentation"]));
86         }
87     }
88     return null;
89 }
90
91 function getLastUpdatedStatus() {
92     return cl_props["lastComputedState"];
93 }
94
95 function setLastUpdatedStatus(status) {
96     cl_props["lastComputedState"] =  status;
97 }
98
99 function getDeploymentID() {
100     return cl_props["dcaeDeploymentId"];
101 }
102
103 function setDeploymentID(deploymentId) {
104     cl_props["dcaeDeploymentId"] = deploymentId;
105 }
106
107 function getDeploymentStatusURL() {
108     return cl_props["dcaeDeploymentStatusUrl"];
109 }
110
111 function setDeploymentStatusURL(deploymentStatusURL) {
112     cl_props["dcaeDeploymentStatusUrl"] = deploymentStatusURL;
113 }
114 module.exports = { getOperationalPolicyProperty,getGlobalProperty,getMsProperty,getMsUI,getLastUpdatedStatus,getDeploymentID,getDeploymentStatusURL };