Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / app / views / portal-admin / new-portal-admin / new-portal-admin.controller.js
diff --git a/ecomp-portal-FE/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.js b/ecomp-portal-FE/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.js
new file mode 100644 (file)
index 0000000..b521610
--- /dev/null
@@ -0,0 +1,85 @@
+/*-
+ * ================================================================================
+ * 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 NewPortalAdminModalCtrl {
+        constructor($log, portalAdminsService, $scope, confirmBoxService) {
+
+            let init = () => {
+                this.isSaving = false;
+                if($scope.ngDialogData && $scope.ngDialogData.selectedUser && $scope.ngDialogData.dialogState){
+                    this.selectedUser = $scope.ngDialogData.selectedUser;
+                    this.dialogState = $scope.ngDialogData.dialogState;
+                }else{
+                    this.selectedUser = null;
+                    this.dialogState = 1;
+                }
+                $log.info('NewPortalAdminModalCtrl:: initiated');
+            };
+
+            this.addNewPortalAdmin = () => {
+                portalAdminsService.getPortalAdmins().then(result=> {
+                    var dupNameCheck = JSON.stringify(result).search(this.selectedUser.orgUserId);
+                    if (dupNameCheck != -1) {
+                        $log.error("NewPortalAdminModalCtrl::addNewPortalAdmin: userId already exists as a portal admin! dupNameCheck=",dupNameCheck);
+                        confirmBoxService.showInformation('This user already exists as a portal admin!').then(function (isConfirmed) {
+                            $scope.closeThisDialog(true);
+                        });
+                    } else {
+                        confirmBoxService.makeAdminChanges('Are you sure you want to add "' + this.selectedUser.firstName + ' ' + this.selectedUser.lastName + '" as a Portal Admin?')
+                            .then(isConfirmed => {
+                                if(isConfirmed) {
+                                    if (!this.selectedUser || !this.selectedUser.orgUserId) {
+                                        $log.error('NewPortalAdminModalCtrl::makeAdminChanges: No portal admin or ID... cannot add');
+                                        return;
+                                    }
+                                    portalAdminsService.addPortalAdmin(this.selectedUser.orgUserId)
+                                        .then(() => {
+                                            $log.debug("NewPortalAdminModalCtrl::addNewPortalAdmin: portal admin added successfully");
+                                            $scope.closeThisDialog(true);
+                                        }).catch(err => {
+                                        $log.error('NewPortalAdminModalCtrl::addNewPortalAdmin error status: ' + err.status);
+                                        confirmBoxService.showInformation('There was a unknown problem adding the portal admin. ' + 'Please try again later. Error Status: '+ err.status).then(function (isConfirmed) {});
+                                    });
+                                }
+                            }).catch(err => {
+                            $log.error('portalAdminsService.addPortalAdmin error status: '+ err.status);
+                        });
+                    }
+                }).catch(err=> {
+                    $log.error('NewPortalAdminModalCtrl::addNewPortalAdmin error getting portal admins list:',err);
+                });
+            };
+
+            this.setSelectedUser = (user) => {
+                $log.debug('NewPortalAdminModalCtrl::setSelectedUser: selected user: ', user);
+                this.selectedUser = user;
+            };
+
+            init();
+
+            $scope.$on('$stateChangeStart', e => {
+                e.preventDefault();
+            });
+        }
+    }
+    NewPortalAdminModalCtrl.$inject = ['$log', 'portalAdminsService', '$scope', 'confirmBoxService'];
+    angular.module('ecompApp').controller('NewPortalAdminModalCtrl', NewPortalAdminModalCtrl);
+})();