[UI] Support data registration
[validation.git] / ui / src / main / webapp / app / BluvalUI / RegisterLayer / RegisterLayerController.js
1 /*
2  * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 var app = angular.module('RegisterLayer');
18 app
19         .controller(
20                 'RegisterLayerController',
21                 function($scope, restAPISvc) {
22
23                     initialize();
24
25                     function initialize() {
26                         $scope.definedLayer = '';
27                     }
28
29                     $scope.register = function() {
30                         if (!$scope.definedLayer) {
31                             confirm("You must specify the blueprint layer");
32                             return;
33                         }
34                         var blueprintLayer = {
35                             "layer" : $scope.definedLayer
36                         };
37                         restAPISvc
38                                 .postRestAPI(
39                                         "/api/v1/layer/",
40                                         blueprintLayer,
41                                         function(data) {
42                                             if (data) {
43                                                 var confirmText = "The blueprint layer has been registered successfully. Blueprint layer id:"
44                                                         + data.blueprintLayerId;
45                                                 confirm(confirmText);
46                                             } else {
47                                                 confirm("Error when registering the blueprint layer");
48                                             }
49                                             initialize();
50                                         });
51                     }
52                 });