[UI] Handling users and passwords
[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                         $scope.roles = [ 'TSC', 'Lab Owner' ];
30                     }
31
32                     $scope.register = function() {
33                         if (!$scope.definedLoginId || !$scope.definedFirstName
34                                 || !$scope.definedLoginPwd
35                                 || !$scope.selectedRole) {
36                             confirm("You must specify all data fields");
37                             return;
38                         }
39                         var userInfo = {
40                             "loginId" : $scope.definedLoginId,
41                             "loginPwd" : $scope.definedLoginPwd,
42                             "firstName" : $scope.definedFirstName
43                         };
44                         var userData = {
45                             "user" : userInfo,
46                             "role" : $scope.selectedRole
47                         };
48                         restAPISvc
49                                 .postRestAPI(
50                                         "/api/v1/user/create",
51                                         userData,
52                                         function(data) {
53                                             if (data) {
54                                                 var confirmText = "The user has been registered successfully. User id:"
55                                                         + data.id;
56                                                 confirm(confirmText);
57                                             } else {
58                                                 confirm("Error when registering the user");
59                                             }
60                                             initialize();
61                                         });
62                     }
63                 });