Initial version of WCM permissions UI

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10697 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2008-09-03 15:05:42 +00:00
parent 81ff6bba16
commit 033a5f5602
18 changed files with 2454 additions and 23 deletions

View File

@@ -0,0 +1,115 @@
/*
* Copyright (C) 2005-2008 Alfresco Software Limited. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA. As a special exception to the terms and conditions of version 2.0 of the GPL, you may redistribute this Program in connection with Free/Libre and
* Open Source Software ("FLOSS") applications as described in Alfresco's FLOSS exception. You should have recieved a copy of the text describing the FLOSS exception, and it is
* also available here: http://www.alfresco.com/legal/licensing"
*/
package org.alfresco.web.bean.wcm;
import java.text.MessageFormat;
import java.util.Map;
import java.util.Set;
import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;
import org.alfresco.service.cmr.security.AccessPermission;
import org.alfresco.web.app.Application;
import org.alfresco.web.ui.common.component.UIActionLink;
/**
* Class for RemovePermissions dialog
*
* @author Sergei Gavrusev
*/
public class RemovePermissionsDialog extends UpdatePermissionsDialog
{
private static final long serialVersionUID = 7804466683515156182L;
private static final String MSG_YES = "yes";
private static final String MSG_NO = "no";
private static final String MSG_REMOVE_PERMS_FOR = "remove_permissions_title";
private String personAuthority = null;
@Override
public boolean getFinishButtonDisabled()
{
return false;
}
@Override
public String getFinishButtonLabel()
{
return Application.getMessage(FacesContext.getCurrentInstance(), MSG_YES);
}
@Override
public String getCancelButtonLabel()
{
return Application.getMessage(FacesContext.getCurrentInstance(), MSG_NO);
}
@Override
public String getContainerTitle()
{
FacesContext fc = FacesContext.getCurrentInstance();
String pattern = Application.getMessage(fc, MSG_REMOVE_PERMS_FOR);
return MessageFormat.format(pattern, personAuthority);
}
@Override
public void init(Map<String, String> parameters)
{
super.init(parameters);
setActiveNode(getAvmBrowseBean().getAvmActionNode());
}
@Override
protected String finishImpl(FacesContext context, String outcome) throws Exception
{
removePermissions(getActiveNode());
createLock(getActiveNode());
return outcome;
}
/**
* Remove permission from node
*
* @param node
*/
private void removePermissions(AVMNode node)
{
Set<String> permsForRemove = ManagePermissionsDialog.getPermissionsForType();
Set<AccessPermission> allSetPerms = getPermissionService().getAllSetPermissions(node.getNodeRef());
for (AccessPermission perm : allSetPerms)
{
if (perm.getAuthority().equals(personAuthority) && permsForRemove.contains(perm.getPermission()))
{
getPermissionService().deletePermission(node.getNodeRef(), personAuthority, perm.getPermission());
}
}
}
/**
* @param event
*/
public void setupAction(ActionEvent event)
{
UIActionLink link = (UIActionLink) event.getComponent();
Map<String, String> params = link.getParameterMap();
personAuthority = params.get("userName");
}
}