950e59ca103ad17e25c2662fdcbe5695431ecb66
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / DeploymentCtrl.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2018 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 app.controller('DeploymentCtrl',
25                ['$scope','$rootScope','$modalInstance','data','dialogs', 'cldsModelService',
26        function( $scope,  $rootScope,  $modalInstance,  data,  dialogs,   cldsModelService) {
27
28            function validate_and_set_deploy_parameters () {
29                    var parameters = $("#deployProperties").val();
30                try {
31                    parameters = JSON.parse(parameters);
32                    set_deploy_parameters(parameters);
33                } catch (e) {
34                    console.error("Couldn't parse deploy parameters json");
35                }
36            }
37
38            function set_deploy_parameters(parameters) {
39                if (!'global' in elementMap) {
40                    elementMap["global"] = [];
41                }
42
43                var index = elementMap["global"].findIndex(function (e) { return (typeof e == "object" && !(e instanceof Array)) && "deployParameters" == e["name"]; }); 
44                if (index == -1) { 
45                    elementMap["global"].push({"name": "deployParameters", "value": parameters}); 
46                } else { 
47                    elementMap["global"][index]["value"] =  parameters; 
48                }
49            }
50
51            $scope.load_deploy_parameters = function () {
52                    var index = elementMap["global"].findIndex(function (e) { return (typeof e == "object" && !(e instanceof Array)) && "deployParameters" == e["name"]; }); 
53                if (index != -1) { 
54                    $('#deployProperties').val(JSON.stringify(elementMap["global"][index]["value"]))
55                }
56            }
57
58            $scope.deploy = function() {
59                    validate_and_set_deploy_parameters ();
60                $modalInstance.close();
61            };
62
63            $scope.close = function() {
64                $modalInstance.dismiss();
65            };
66        }
67
68 ]);