summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/app/services/admins/admins.service.js
blob: ee742af871ce6ffc650b5464179e3e3ecc9b48e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*-
 * ================================================================================
 * eCOMP Portal
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ================================================================================
 */
'use strict';

(function () {
    class AdminsService {
        constructor($q, $log, $http, conf,uuid) {
            this.$q = $q;
            this.$log = $log;
            this.$http = $http;
            this.conf = conf;
            this.uuid = uuid;
        }

        getAccountAdmins() {
            let deferred = this.$q.defer();
            this.$log.info('AdminsService::get all applications admins list');
            this.$http({
                    method: "GET",
                    cache: false,
                    url: this.conf.api.accountAdmins,
                    headers: {
                        'X-ECOMP-RequestID':this.uuid.generate()
                    }
                })
                .then( res => {
                    if (Object.keys(res.data).length == 0) {
                        deferred.reject("AdminsService::getAccountAdmins Failed");
                    } else {
                        this.$log.info('AdminsService::getAccountAdmins Succeeded');
                        deferred.resolve(res.data);
                    }
                })
                .catch( status => {
                    deferred.reject(status);
                });
           
            return deferred.promise;
        }

        getAdminAppsRoles(orgUserId) {
            let deferred = this.$q.defer();
            this.$log.info('AdminsService::getAdminAppsRoles.adminAppsRoles');

            this.$http({
                method: "GET",
                url: this.conf.api.adminAppsRoles,
                params: {orgUserId: orgUserId},
                cache: false,
                headers: {
                    'X-ECOMP-RequestID':this.uuid.generate()
                }
            }).then( res => {
                    if (Object.keys(res.data).length == 0) {
                        deferred.reject("AdminsService::getAdminAppsRoles.adminAppsRoles Failed");
                    } else {
                        this.$log.info('AdminsService::getAdminAppsRoles.adminAppsRoles Succeeded');
                        deferred.resolve(res.data);
                    }
                })
                .catch( status => {
                    deferred.reject(status);
                });

            return deferred.promise;
        }

        updateAdminAppsRoles(newAdminAppRoles) {
            let deferred = this.$q.defer();
            this.$log.info('AdminsService::updateAdminAppsRoles');
            this.$http({
                method: "PUT",
                url: this.conf.api.adminAppsRoles,
                data: newAdminAppRoles,
                headers: {
                    'X-ECOMP-RequestID':this.uuid.generate()
                }
            }).then( res => {
                    deferred.resolve(res.data);
                })
                .catch( status => {
                    deferred.reject(status);
                });

            return deferred.promise;
        }
        
        addNewUser(newUser,checkDuplicate) {
        	// this.$log.info(newContactUs)
        	let deferred = this.$q.defer();
            // this.$log.info('ContactUsService:: add Contact Us' + JSON.stringify(newContactUs));
            
            var newUserObj={
            		firstName:newUser.firstName,
            		middleInitial:newUser.middleName,
            		lastName:newUser.lastName,
            		email:newUser.emailAddress,
            		loginId:newUser.loginId,
            		loginPwd:newUser.loginPwd,            		
            };
            this.$http({
                url: this.conf.api.saveNewUser + "?isCheck=" + checkDuplicate,
                method: 'POST',
                cache: false,
                headers: {
                    'X-ECOMP-RequestID':this.uuid.generate()
                },
                data: newUserObj
            }).then(res => {
                // this.$log.info('ContactUsService:: add Contact Us res' ,res);
                // If response comes back as a redirected HTML page which IS NOT a success
                if (res==null || Object.keys(res.data).length == 0 || res.data.message == 'failure') {
                    deferred.reject("Add new User failed");
                    this.$log.error('adminService:: add New User failed');
                } else {
                    deferred.resolve(res.data);
                }
            }).catch(errRes => {
                   deferred.reject(errRes);
             });
            return deferred.promise;
        }
                
        /**
         * Tests the specified password against complexity requirements.
         * Returns an explanation message if the test fails; null if it passes.
         */
        isComplexPassword(str) {
        	let minLength = 8;
        	let message = 'Password is too simple.  Minimum length is '+ minLength + ', '
        				  + 'and it must use letters, digits and special characters.';
        	if (str == null)
        		return message;

        	let hasLetter = false;
        	let hasDigit = false;
        	let hasSpecial = false;
        	var code, i, len;
        	for (i = 0, len = str.length; i < len; i++) {
        		code = str.charCodeAt(i);
        		if (code > 47 && code < 58) // numeric (0-9)
        			hasDigit = true;
        		else if ((code > 64 && code < 91) || (code > 96 && code < 123)) // A-Z, a-z
        			hasLetter = true;
        		else
        			hasSpecial = true;
        	} // for

        	if (str.length < minLength || !hasLetter || !hasDigit || !hasSpecial)
        		return message;
        	
        	// All is well.
        	return null;
        }

    }
    AdminsService.$inject = ['$q', '$log', '$http', 'conf','uuid4'];
    angular.module('ecompApp').service('adminsService', AdminsService)
})();