mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged BRANCHES/DEV/V4.1-BUG-FIX to HEAD:
41591: MT: ALF-12732 - fix move between two sites (via Share -> ScriptSiteService) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@41595 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -60,6 +60,7 @@
|
|||||||
<value>removeMembership</value>
|
<value>removeMembership</value>
|
||||||
<value>createContainer</value>
|
<value>createContainer</value>
|
||||||
<value>setMembership</value>
|
<value>setMembership</value>
|
||||||
|
<value>cleanSitePermissions</value>
|
||||||
</list>
|
</list>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
@@ -179,5 +180,6 @@
|
|||||||
<property name="publicServiceAccessService" ref="PublicServiceAccessService"/>
|
<property name="publicServiceAccessService" ref="PublicServiceAccessService"/>
|
||||||
<property name="aclDAO" ref="aclDAO"/>
|
<property name="aclDAO" ref="aclDAO"/>
|
||||||
<property name="nodeDAO" ref="nodeDAO"/>
|
<property name="nodeDAO" ref="nodeDAO"/>
|
||||||
|
<property name="tenantService" ref="tenantService"/>
|
||||||
</bean>
|
</bean>
|
||||||
</beans>
|
</beans>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2005-2011 Alfresco Software Limited.
|
* Copyright (C) 2005-2012 Alfresco Software Limited.
|
||||||
*
|
*
|
||||||
* This file is part of Alfresco
|
* This file is part of Alfresco
|
||||||
*
|
*
|
||||||
@@ -27,6 +27,7 @@ import org.alfresco.repo.domain.permissions.AclDAO;
|
|||||||
import org.alfresco.repo.security.permissions.ACLType;
|
import org.alfresco.repo.security.permissions.ACLType;
|
||||||
import org.alfresco.repo.security.permissions.AccessControlEntry;
|
import org.alfresco.repo.security.permissions.AccessControlEntry;
|
||||||
import org.alfresco.repo.security.permissions.AccessControlList;
|
import org.alfresco.repo.security.permissions.AccessControlList;
|
||||||
|
import org.alfresco.repo.tenant.TenantService;
|
||||||
import org.alfresco.service.cmr.repository.NodeRef;
|
import org.alfresco.service.cmr.repository.NodeRef;
|
||||||
import org.alfresco.service.cmr.repository.NodeService;
|
import org.alfresco.service.cmr.repository.NodeService;
|
||||||
import org.alfresco.service.cmr.security.AccessStatus;
|
import org.alfresco.service.cmr.security.AccessStatus;
|
||||||
@@ -51,6 +52,7 @@ public class SitesPermissionCleaner
|
|||||||
|
|
||||||
private AclDAO aclDAO;
|
private AclDAO aclDAO;
|
||||||
private NodeDAO nodeDAO;
|
private NodeDAO nodeDAO;
|
||||||
|
private TenantService tenantService;
|
||||||
|
|
||||||
public void setNodeService(NodeService nodeService)
|
public void setNodeService(NodeService nodeService)
|
||||||
{
|
{
|
||||||
@@ -82,6 +84,12 @@ public class SitesPermissionCleaner
|
|||||||
this.nodeDAO = nodeDAO;
|
this.nodeDAO = nodeDAO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setTenantService(TenantService tenantService)
|
||||||
|
{
|
||||||
|
this.tenantService = tenantService;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public void cleanSitePermissions(final NodeRef targetNode, SiteInfo containingSite)
|
public void cleanSitePermissions(final NodeRef targetNode, SiteInfo containingSite)
|
||||||
{
|
{
|
||||||
if (nodeService.exists(targetNode))
|
if (nodeService.exists(targetNode))
|
||||||
@@ -96,8 +104,8 @@ public class SitesPermissionCleaner
|
|||||||
if (containingSite != null)
|
if (containingSite != null)
|
||||||
{
|
{
|
||||||
// For performance reasons we navigate down the containment hierarchy using the DAOs
|
// For performance reasons we navigate down the containment hierarchy using the DAOs
|
||||||
// rather than the NodeService.
|
// rather than the NodeService. Note: direct use of NodeDAO requires tenantService (ALF-12732).
|
||||||
final Long targetNodeID = nodeDAO.getNodePair(targetNode).getFirst();
|
final Long targetNodeID = nodeDAO.getNodePair(tenantService.getName(targetNode)).getFirst();
|
||||||
final Long targetNodeAclID = nodeDAO.getNodeAclId(targetNodeID);
|
final Long targetNodeAclID = nodeDAO.getNodeAclId(targetNodeID);
|
||||||
Acl targetNodeAcl = aclDAO.getAcl(targetNodeAclID);
|
Acl targetNodeAcl = aclDAO.getAcl(targetNodeAclID);
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2005-2011 Alfresco Software Limited.
|
* Copyright (C) 2005-2012 Alfresco Software Limited.
|
||||||
*
|
*
|
||||||
* This file is part of Alfresco
|
* This file is part of Alfresco
|
||||||
*
|
*
|
||||||
@@ -67,6 +67,9 @@ import org.alfresco.service.cmr.security.OwnableService;
|
|||||||
import org.alfresco.service.cmr.security.PermissionService;
|
import org.alfresco.service.cmr.security.PermissionService;
|
||||||
import org.alfresco.service.cmr.security.PersonService;
|
import org.alfresco.service.cmr.security.PersonService;
|
||||||
import org.alfresco.service.cmr.security.PersonService.PersonInfo;
|
import org.alfresco.service.cmr.security.PersonService.PersonInfo;
|
||||||
|
import org.alfresco.service.cmr.site.SiteInfo;
|
||||||
|
import org.alfresco.service.cmr.site.SiteService;
|
||||||
|
import org.alfresco.service.cmr.site.SiteVisibility;
|
||||||
import org.alfresco.service.cmr.usage.UsageService;
|
import org.alfresco.service.cmr.usage.UsageService;
|
||||||
import org.alfresco.service.namespace.NamespaceService;
|
import org.alfresco.service.namespace.NamespaceService;
|
||||||
import org.alfresco.service.namespace.QName;
|
import org.alfresco.service.namespace.QName;
|
||||||
@@ -77,6 +80,10 @@ import org.apache.commons.logging.LogFactory;
|
|||||||
import org.springframework.context.ApplicationContext;
|
import org.springframework.context.ApplicationContext;
|
||||||
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author janv
|
||||||
|
* since 3.0
|
||||||
|
*/
|
||||||
public class MultiTDemoTest extends TestCase
|
public class MultiTDemoTest extends TestCase
|
||||||
{
|
{
|
||||||
private static Log logger = LogFactory.getLog(MultiTDemoTest.class);
|
private static Log logger = LogFactory.getLog(MultiTDemoTest.class);
|
||||||
@@ -88,6 +95,7 @@ public class MultiTDemoTest extends TestCase
|
|||||||
private NodeService nodeService;
|
private NodeService nodeService;
|
||||||
private MutableAuthenticationService authenticationService;
|
private MutableAuthenticationService authenticationService;
|
||||||
private PersonService personService;
|
private PersonService personService;
|
||||||
|
private SiteService siteService;
|
||||||
private SearchService searchService;
|
private SearchService searchService;
|
||||||
private ContentService contentService;
|
private ContentService contentService;
|
||||||
private PermissionService permissionService;
|
private PermissionService permissionService;
|
||||||
@@ -173,6 +181,7 @@ public class MultiTDemoTest extends TestCase
|
|||||||
transactionService = (TransactionService) ctx.getBean("TransactionService");
|
transactionService = (TransactionService) ctx.getBean("TransactionService");
|
||||||
fileFolderService = (FileFolderService) ctx.getBean("FileFolderService");
|
fileFolderService = (FileFolderService) ctx.getBean("FileFolderService");
|
||||||
repositoryHelper = (Repository) ctx.getBean("repositoryHelper");
|
repositoryHelper = (Repository) ctx.getBean("repositoryHelper");
|
||||||
|
siteService = (SiteService) ctx.getBean("SiteService");
|
||||||
|
|
||||||
createTenants();
|
createTenants();
|
||||||
}
|
}
|
||||||
@@ -1241,6 +1250,36 @@ public class MultiTDemoTest extends TestCase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void test_ALF_12732()
|
||||||
|
{
|
||||||
|
final String tenantDomain1 = TEST_RUN+".one.alf12732";
|
||||||
|
|
||||||
|
createTenant(tenantDomain1);
|
||||||
|
|
||||||
|
String tenantAdminName = tenantService.getDomainUser(AuthenticationUtil.getAdminUserName(), tenantDomain1);
|
||||||
|
AuthenticationUtil.runAs(new RunAsWork<Object>()
|
||||||
|
{
|
||||||
|
public Object doWork() throws Exception
|
||||||
|
{
|
||||||
|
createSite("site1");
|
||||||
|
|
||||||
|
NodeRef docLib1Ref = siteService.getContainer("site1", SiteService.DOCUMENT_LIBRARY);
|
||||||
|
NodeRef contentRef = addContent(docLib1Ref, "tqbfjotld.txt", "The quick brown fox jumps over the lazy dog", MimetypeMap.MIMETYPE_TEXT_PLAIN);
|
||||||
|
|
||||||
|
createSite("site2");
|
||||||
|
|
||||||
|
NodeRef docLib2Ref = siteService.getContainer("site2", SiteService.DOCUMENT_LIBRARY);
|
||||||
|
|
||||||
|
nodeService.moveNode(contentRef, docLib2Ref, ContentModel.ASSOC_CONTAINS, QName.createQName("tqbfjotld.txt"));
|
||||||
|
|
||||||
|
// for Share, called via "move-to.post.json.js" -> ScriptSiteService.cleanSitePermissions
|
||||||
|
siteService.cleanSitePermissions(contentRef, null);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}, tenantAdminName);
|
||||||
|
}
|
||||||
|
|
||||||
private void createGroup(String shortName, String parentShortName)
|
private void createGroup(String shortName, String parentShortName)
|
||||||
{
|
{
|
||||||
// create new Group using authority Service
|
// create new Group using authority Service
|
||||||
@@ -1526,6 +1565,21 @@ public class MultiTDemoTest extends TestCase
|
|||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private SiteInfo createSite(String siteId)
|
||||||
|
{
|
||||||
|
SiteInfo siteInfo = siteService.createSite(null, siteId, "title - "+siteId, "description - "+siteId, SiteVisibility.PRIVATE);
|
||||||
|
|
||||||
|
// ensure that the Document Library folder is pre-created so that test code can start creating content straight away.
|
||||||
|
// At the time of writing V4.1 does not create this folder automatically, but Thor does.
|
||||||
|
NodeRef result = siteService.getContainer(siteId, SiteService.DOCUMENT_LIBRARY);
|
||||||
|
if (result == null)
|
||||||
|
{
|
||||||
|
result = siteService.createContainer(siteId, SiteService.DOCUMENT_LIBRARY, ContentModel.TYPE_FOLDER, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
return siteInfo;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
public static void main(String args[])
|
public static void main(String args[])
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user