[UI] Support user creation
[validation.git] / ui / src / main / webapp / app / BluvalUI / CreateUser / CreateUserController.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('CreateUser');
18 app
19         .controller(
20                 'CreateUserController',
21                 function($scope, restAPISvc) {
22
23                     initialize();
24
25                     function initialize() {
26                         $scope.definedLoginId = '';
27                         $scope.definedFirstName = '';
28                         $scope.definedLoginPwd = '';
29                     }
30
31                     $scope.register = function() {
32                         if (!$scope.definedLoginId || !$scope.definedFirstName
33                                 || !$scope.definedLoginPwd) {
34                             confirm("You must specify all data fields");
35                             return;
36                         }
37                         var userInfo = {
38                             "loginId" : $scope.definedLoginId,
39                             "loginPwd" : $scope.definedLoginPwd,
40                             "firstName" : $scope.definedFirstName
41                         };
42                         restAPISvc
43                                 .postRestAPI(
44                                         "/api/v1/user/",
45                                         userInfo,
46                                         function(data) {
47                                             if (data) {
48                                                 var confirmText = "The user has been registered successfully. User id:"
49                                                         + data.id;
50                                                 confirm(confirmText);
51                                             } else {
52                                                 confirm("Error when registering the user");
53                                             }
54                                             initialize();
55                                         });
56                     }
57                 });