251c60d55dc8e7d945fc91be26b8efb33803f508
[portal.git] / ecomp-portal-FE-common / client / app / services / portal-admins / portal-admins.service.js
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 'use strict';
39
40 (function () {
41     class PortalAdminsService {
42         constructor($q, $log, $http, conf, uuid, utilsService) {
43             this.$q = $q;
44             this.$log = $log;
45             this.$http = $http;
46             this.conf = conf;
47             this.uuid = uuid;
48             this.utilsService = utilsService;
49         }
50
51         getPortalAdmins() {
52             let deferred = this.$q.defer();
53             this.$log.info('PortalAdminsService::get all portal admins list');
54             this.$http({
55                     url: this.conf.api.portalAdmins,
56                     method: 'GET',
57                     cache: false,
58                     headers: {
59                         'X-ECOMP-RequestID':this.uuid.generate()
60                     }
61                 }).then(res => {
62                     // If response comes back as a redirected HTML page which IS NOT a success
63                 if (this.utilsService.isValidJSON(res)== false) {
64                         deferred.reject('PortalAdminsService::getPortalAdmins Failed');
65                     } else {
66                         deferred.resolve(res.data);
67                     }
68                 })
69                 .catch(status => {
70                     deferred.reject(status);
71                 });
72             return deferred.promise;
73         }
74
75         addPortalAdmin(userData) {
76             let deferred = this.$q.defer();
77             this.$log.info('PortalAdminsService::addPortalAdmin: ' + JSON.stringify(userData));
78             this.$http({
79                 url: this.conf.api.portalAdmin,
80                 method: 'POST',
81                 cache: false,
82                 headers: {
83                     'X-ECOMP-RequestID':this.uuid.generate()
84                 },
85                 data: userData
86             }).then(res => {
87                 // If response comes back as a redirected HTML page which IS NOT a success
88                 this.$log.debug('PortalAdminsService:: this.conf.api.portalAdmin: ' + JSON.stringify(res));
89                 if (this.utilsService.isValidJSON(res)== false) {
90                     deferred.reject('PortalAdminsService::addPortalAdmin Failed');
91                 } else {
92                     deferred.resolve(res.data);
93                 }
94             })
95                 .catch(errRes => {
96                     this.$log.debug('PortalAdminsService:: this.conf.api.portalAdmin: ' + JSON.stringify(errRes));
97                     deferred.reject(errRes);
98                 });
99             return deferred.promise;
100         }
101
102         removePortalAdmin(userId,orUserId) {
103             let deferred = this.$q.defer();
104             let userInfo = userId+"-"+orUserId;
105             let url = this.conf.api.portalAdmin + '/' + userInfo;
106             this.$log.info('PortalAdminsService:: remove Portal Admin');
107             this.$http({
108                 url: url,
109                 method: 'DELETE',
110                 cache: false,
111                 headers: {
112                     'X-ECOMP-RequestID':this.uuid.generate()
113                 }
114             }).then(res => {
115                 // If response comes back as a redirected HTML page which IS NOT a success
116                 if (this.utilsService.isValidJSON(res)== false) {
117                     deferred.reject('PortalAdminsService::removePortalAdmin Failed');
118                 } else {
119                     deferred.resolve(res.data);
120                 }
121             }).catch(errRes => {
122                 deferred.reject(errRes);
123             });
124
125             return deferred.promise;
126         }
127     }
128     PortalAdminsService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4', 'utilsService'];
129     angular.module('ecompApp').service('portalAdminsService', PortalAdminsService)
130 })();