mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
      125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125788 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
		
	
		
			
				
	
	
		
			118 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * #%L
 | |
|  * Alfresco Repository
 | |
|  * %%
 | |
|  * Copyright (C) 2005 - 2016 Alfresco Software Limited
 | |
|  * %%
 | |
|  * This file is part of the Alfresco software. 
 | |
|  * If the software was purchased under a paid Alfresco license, the terms of 
 | |
|  * the paid license agreement will prevail.  Otherwise, the software is 
 | |
|  * provided under the following open source license terms:
 | |
|  * 
 | |
|  * Alfresco is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Lesser General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  * 
 | |
|  * Alfresco 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 Lesser General Public License for more details.
 | |
|  * 
 | |
|  * You should have received a copy of the GNU Lesser General Public License
 | |
|  * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
 | |
|  * #L%
 | |
|  */
 | |
| package org.alfresco.repo.node;
 | |
| 
 | |
| import java.io.Serializable;
 | |
| import java.util.HashMap;
 | |
| import java.util.Map;
 | |
| 
 | |
| import org.alfresco.repo.audit.AuditComponent;
 | |
| import org.alfresco.repo.audit.AuditMethodInterceptor;
 | |
| import org.alfresco.repo.node.NodeServicePolicies.BeforeDeleteNodePolicy;
 | |
| import org.alfresco.repo.policy.JavaBehaviour;
 | |
| import org.alfresco.repo.policy.PolicyComponent;
 | |
| import org.alfresco.service.cmr.repository.NodeRef;
 | |
| import org.apache.commons.logging.Log;
 | |
| import org.apache.commons.logging.LogFactory;
 | |
| import org.springframework.beans.factory.InitializingBean;
 | |
| import org.alfresco.util.PropertyCheck;
 | |
| 
 | |
| /**
 | |
|  * A listener that ensures that an event is audited for every deleted node in a tree of nodes, not just the top one
 | |
|  * captured by {@link AuditMethodInterceptor}!
 | |
|  * 
 | |
|  * The values passed to the audit component are:
 | |
|  * <pre>
 | |
|  * /alfresco-node
 | |
|  *    /beforeDeleteNode
 | |
|  *       /node=<nodeRef>
 | |
|  * 
 | |
|  * </pre>
 | |
|  * 
 | |
|  * @author dward
 | |
|  */
 | |
| public class NodeAuditor implements InitializingBean, NodeServicePolicies.BeforeDeleteNodePolicy
 | |
| {
 | |
|     /** Logger */
 | |
|     private static Log logger = LogFactory.getLog(NodeAuditor.class);
 | |
| 
 | |
|     private static final String ROOT_PATH = "/alfresco-node";
 | |
|     private static final String BEFORE_DELETE_NODE_PATH = ROOT_PATH + "/beforeDeleteNode";
 | |
|     private static final String NODE_PATH_COMPONENT = "node";
 | |
| 
 | |
|     private PolicyComponent policyComponent;
 | |
|     private AuditComponent auditComponent;
 | |
| 
 | |
|     public NodeAuditor()
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Set the component used to bind to behaviour callbacks
 | |
|      */
 | |
|     public void setPolicyComponent(PolicyComponent policyComponent)
 | |
|     {
 | |
|         this.policyComponent = policyComponent;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * The component to create audit events
 | |
|      */
 | |
|     public void setAuditComponent(AuditComponent auditComponent)
 | |
|     {
 | |
|         this.auditComponent = auditComponent;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Checks that all necessary properties have been set and binds with the policy component.
 | |
|      */
 | |
|     public void afterPropertiesSet()
 | |
|     {
 | |
|         PropertyCheck.mandatory(this, "policyComponent", policyComponent);
 | |
|         PropertyCheck.mandatory(this, "auditComponent", auditComponent);
 | |
|         policyComponent.bindClassBehaviour(BeforeDeleteNodePolicy.QNAME, this, new JavaBehaviour(this,
 | |
|                 "beforeDeleteNode"));
 | |
|     }
 | |
| 
 | |
|     public void beforeDeleteNode(NodeRef nodeRef)
 | |
|     {
 | |
|         // Only continue if there is something listening for our events (note this may change depending on audit
 | |
|         // subsystem configuration)
 | |
|         if (!auditComponent.areAuditValuesRequired())
 | |
|         {
 | |
|             return;
 | |
|         }
 | |
|         // Deleted nodes will not be available at the end of the transaction. The data needs to
 | |
|         // be extracted now and the audit entry needs to be created now.
 | |
|         Map<String, Serializable> auditMap = new HashMap<String, Serializable>(13);
 | |
|         auditMap.put(NODE_PATH_COMPONENT, nodeRef);
 | |
|         auditMap = auditComponent.recordAuditValues(BEFORE_DELETE_NODE_PATH, auditMap);
 | |
|         if (logger.isDebugEnabled())
 | |
|         {
 | |
|             logger.debug("NodeAuditor: Audited node deletion: \n" + auditMap);
 | |
|         }
 | |
|     }
 | |
| } |