Password impl, various enhancements
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.ria / src / argeo-ria-lib / security / class / org / argeo / security / ria / UsersApplet.js
index 9438113ffe9df51dc29ea7e184eb2d931777b658..7f0c55335b3f3e54284daea95310122342621458 100644 (file)
@@ -38,28 +38,62 @@ qx.Class.define("org.argeo.security.ria.UsersApplet",
                                callback        : function(e){
                                        // Call service to delete
                                        var classObj = org.argeo.security.ria.UserEditorApplet;
-                                       var iView = org.argeo.ria.components.ViewsManager.getInstance().initIViewClass(classObj, "editor");
+                                       var initData = {USER:null,ROLES_LIST:this.getRolesList()};
+                                       var iView = org.argeo.ria.components.ViewsManager.getInstance().initIViewClass(classObj, "editor", initData);
                                        iView.load();
+                                       iView.addListener("savedUser", function(e){
+                                               this.refreshUserEntry(e.getData());
+                                       }, this);                                       
                                },
                                command         : null
                        },      
                        "delete_user" : {
                                label           : "Delete User", 
                                icon            : "org.argeo.security.ria/list-remove.png",
-                               shortcut        : "Control+s",
+                               shortcut        : "Control+d",
                                enabled         : true,
                                menu            : "Users",
                                toolbar         : null,
                                callback        : function(e){
                                        // Call service to delete
-                                       var crtUsers = this.getViewSelection().getNodes();
-                                       for(var i=0;i<crtUsers.length;i++){
-                                               alert("Delete " + crtUsers[i]);
+                                       var username = this.getViewSelection().getNodes()[0];                                   
+                                       var deleteService = org.argeo.security.ria.SecurityAPI.getDeleteUserService(username);
+                                       deleteService.addListener("completed", function(response){
+                                               if(response.getContent().status && response.getContent().status == "OK"){
+                                                       this.loadUsersList();
+                                               }
+                                       }, this);
+                                       // Check if tab is opened before closing!
+                                       var editorTabPane = org.argeo.ria.components.ViewsManager.getInstance().getViewPaneById("editor");
+                                       var iApplet = editorTabPane.contentExists(username);
+                                       var modal = new org.argeo.ria.components.Modal("Delete");
+                                       if(iApplet){
+                                               if(iApplet.getModified()){
+                                                       modal.addConfirm("There are unsaved changes, are you sure you want to delete this user?");
+                                                       modal.addListener("ok", function(e){
+                                                               editorTabPane.closeCurrent();
+                                                               deleteService.send();
+                                                       }, this);
+                                                       modal.attachAndShow();
+                                               }else{
+                                                       modal.addConfirm("Are you sure you want to delete user " + username + "?");
+                                                       modal.addListener("ok", function(e){
+                                                               editorTabPane.closeCurrent();
+                                                               deleteService.send();
+                                                       }, this);
+                                                       modal.attachAndShow();
+                                               }
+                                       }else{
+                                               modal.addConfirm("Are you sure you want to delete user " + username + "?");
+                                               modal.addListener("ok", function(e){
+                                                       deleteService.send();
+                                               }, this);
+                                               modal.attachAndShow();
                                        }
                                },
                                selectionChange : function(viewName, data){
                                        if(viewName != "users") return;
-                                       this.setEnabled(!(data == null || !data.length));                                       
+                                       this.setEnabled(!(data == null || !data.length || data.length>1));                                      
                                },
                                command         : null
                        },                      
@@ -72,11 +106,14 @@ qx.Class.define("org.argeo.security.ria.UsersApplet",
                                toolbar         : null,
                                callback        : function(e){
                                        // Call service to delete
-                                       var crtUser = this.getViewSelection().getNodes()[0];
-                                       var userObject = this.getUsersList()[crtUser];
+                                       var crtUser = this.getViewSelection().getNodes()[0];                                    
                                        var classObj = org.argeo.security.ria.UserEditorApplet;
-                                       var iView = org.argeo.ria.components.ViewsManager.getInstance().initIViewClass(classObj, "editor", crtUser);
-                                       iView.load(userObject);                                 
+                                       var initData = {USER:crtUser,ROLES_LIST:this.getRolesList()};
+                                       var iView = org.argeo.ria.components.ViewsManager.getInstance().initIViewClass(classObj, "editor", initData);
+                                       iView.load(crtUser);
+                                       iView.addListener("savedUser", function(e){
+                                               this.refreshUserEntry(e.getData());
+                                       }, this);
                                },
                                selectionChange : function(viewName, data){
                                        if(viewName != "users") return;
@@ -98,8 +135,12 @@ qx.Class.define("org.argeo.security.ria.UsersApplet",
        },
        usersList : {
                check : "Map",
+               apply : "_applyUsersList",
                event : "changeUsersList"
        },
+       rolesList : {
+               check : "Array"
+       },
        instanceId : {init:""},
        instanceLabel : {init:""}
   },
@@ -114,7 +155,6 @@ qx.Class.define("org.argeo.security.ria.UsersApplet",
                this.setView(viewPane);
                this.setViewSelection(new org.argeo.ria.components.ViewSelection(viewPane.getViewId()));
                
-               this.setUsersList({});
                this.toolBar = new qx.ui.toolbar.ToolBar();
                this.toolBarPart = new qx.ui.toolbar.Part();
                this.toolBar.add(this.toolBarPart);             
@@ -138,9 +178,9 @@ qx.Class.define("org.argeo.security.ria.UsersApplet",
                this.table.addListener("cellDblclick", function(cellEvent){
                        this.getCommands()["edit_user"].command.execute();
                }, this);
-               this.addListener("changeUsersList", function(){
-                       this._updateTableModel();               
-               }, this);
+               
+               this.setRolesList([]);
+               this.setUsersList({});          
                this.setGuiMode("clear");
        },
        
@@ -188,7 +228,19 @@ qx.Class.define("org.argeo.security.ria.UsersApplet",
                this.toolBarPart.add(commands["delete_user"].command.getToolbarButton());
                this.toolBarPart.add(commands["edit_user"].command.getToolbarButton());                 
                this.toolBar.setShow("icon");
-
+               this.loadUsersList();
+               
+               var rolesApplet = org.argeo.ria.components.ViewsManager.getInstance().getViewPaneById("roles").getContent();
+               rolesApplet.addListener("changeRolesList", function(e){
+                       this.setRolesList(e.getData());
+                       this.loadUsersList();
+               }, this);
+               
+       },
+       
+       loadUsersList : function(){
+               var selectionModel = this.table.getSelectionModel();            
+               selectionModel.clearSelection();                
                var request = org.argeo.security.ria.SecurityAPI.getListUsersService();
                request.addListener("completed", function(response){
                        var jSon = response.getContent();
@@ -200,29 +252,52 @@ qx.Class.define("org.argeo.security.ria.UsersApplet",
                        }
                        this.setUsersList(usMap);                       
                }, this);
-               request.send();
+               request.send();                 
        },
        
-       _updateTableModel : function(){
-               var usList = this.getUsersList();
+       /**
+        * 
+        * @param {org.argeo.security.ria.model.User} userObject
+        */
+       refreshUserEntry : function(userObject){
+               var userName = userObject.getName();
+               var data = this.tableModel.getDataAsMapArray();
+               var index = 0;
+               var found = false;
+               for(index=0;index<data.length;index++){
+                       if(data[index].username == userName){
+                               found =true;
+                               break;
+                       }
+               }
+               var newRows = [{username:userName,roles:userObject.getRoles().join(",")}];
+               if(found){
+                       this.tableModel.setRowsAsMapArray(newRows, index);
+               }else{
+                       this.tableModel.setRowsAsMapArray(newRows, index);
+               }
+       },
+       
+       _applyUsersList : function(usList){
                var data = [];
                qx.lang.Object.getValues(usList).forEach(function(usObject){
                        data.push([usObject.getName(), usObject.getRoles().join(",")]);
                });
                this.tableModel.setData(data);                                  
        },
-       
-       applySelection : function(selectionValues, target){
+               
+       applySelection : function(selectionValue, target, ignoreCase){
                var selectionModel = this.table.getSelectionModel();            
                selectionModel.clearSelection();
-               if(!selectionValues){
+               if(!selectionValue){
                        return;
                }
                selectionModel.setBatchMode(true);
                var data = this.tableModel.getData();
                for(var i=0;i<this.tableModel.getRowCount();i++){
                        var value = this.tableModel.getRowDataAsMap(i)[target];
-                       if(qx.lang.Array.contains(selectionValues, value)){
+                       var pattern = new RegExp(selectionValue, "g"+(ignoreCase?"i":""));
+                       if(pattern.test(value)){
                                selectionModel.addSelectionInterval(i, i);
                        }
                }