mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-02 17:35:18 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
143 lines
5.1 KiB
Java
143 lines
5.1 KiB
Java
/*
|
|
* Copyright (C) 2005 Alfresco, Inc.
|
|
*
|
|
* Licensed under the Mozilla Public License version 1.1
|
|
* with a permitted attribution clause. You may obtain a
|
|
* copy of the License at
|
|
*
|
|
* http://www.alfresco.org/legal/license.txt
|
|
*
|
|
* 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.
|
|
*/
|
|
package org.alfresco.repo.node.integrity;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
import org.alfresco.service.cmr.dictionary.AspectDefinition;
|
|
import org.alfresco.service.cmr.dictionary.DictionaryService;
|
|
import org.alfresco.service.cmr.dictionary.PropertyDefinition;
|
|
import org.alfresco.service.cmr.dictionary.TypeDefinition;
|
|
import org.alfresco.service.cmr.repository.InvalidNodeRefException;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.cmr.repository.NodeService;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.apache.commons.logging.Log;
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
/**
|
|
* Event raised to check nodes
|
|
*
|
|
* @author Derek Hulley
|
|
*/
|
|
public class PropertiesIntegrityEvent extends AbstractIntegrityEvent
|
|
{
|
|
private static Log logger = LogFactory.getLog(PropertiesIntegrityEvent.class);
|
|
|
|
protected PropertiesIntegrityEvent(
|
|
NodeService nodeService,
|
|
DictionaryService dictionaryService,
|
|
NodeRef nodeRef)
|
|
{
|
|
super(nodeService, dictionaryService, nodeRef, null, null);
|
|
}
|
|
|
|
public void checkIntegrity(List<IntegrityRecord> eventResults)
|
|
{
|
|
try
|
|
{
|
|
checkAllProperties(getNodeRef(), eventResults);
|
|
}
|
|
catch (InvalidNodeRefException e)
|
|
{
|
|
// node has gone
|
|
if (logger.isDebugEnabled())
|
|
{
|
|
logger.debug("Event ignored - node gone: " + this);
|
|
}
|
|
eventResults.clear();
|
|
return;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks the properties for the type and aspects of the given node.
|
|
*
|
|
* @param nodeRef
|
|
* @param eventResults
|
|
*/
|
|
private void checkAllProperties(NodeRef nodeRef, List<IntegrityRecord> eventResults)
|
|
{
|
|
// get all properties for the node
|
|
Map<QName, Serializable> nodeProperties = nodeService.getProperties(nodeRef);
|
|
|
|
// get the node type
|
|
QName nodeTypeQName = nodeService.getType(nodeRef);
|
|
// get property definitions for the node type
|
|
TypeDefinition typeDef = dictionaryService.getType(nodeTypeQName);
|
|
Collection<PropertyDefinition> propertyDefs = typeDef.getProperties().values();
|
|
// check them
|
|
checkAllProperties(nodeRef, nodeTypeQName, propertyDefs, nodeProperties, eventResults);
|
|
|
|
// get the node aspects
|
|
Set<QName> aspectTypeQNames = nodeService.getAspects(nodeRef);
|
|
for (QName aspectTypeQName : aspectTypeQNames)
|
|
{
|
|
// get property definitions for the aspect
|
|
AspectDefinition aspectDef = dictionaryService.getAspect(aspectTypeQName);
|
|
propertyDefs = aspectDef.getProperties().values();
|
|
// check them
|
|
checkAllProperties(nodeRef, aspectTypeQName, propertyDefs, nodeProperties, eventResults);
|
|
}
|
|
// done
|
|
}
|
|
|
|
/**
|
|
* Checks the specific map of properties against the required property definitions
|
|
*
|
|
* @param nodeRef the node to which this applies
|
|
* @param typeQName the qualified name of the aspect or type to which the properties belong
|
|
* @param propertyDefs the definitions to check against - may be null or empty
|
|
* @param nodeProperties the properties to check
|
|
*/
|
|
private void checkAllProperties(
|
|
NodeRef nodeRef,
|
|
QName typeQName,
|
|
Collection<PropertyDefinition> propertyDefs,
|
|
Map<QName, Serializable> nodeProperties,
|
|
Collection<IntegrityRecord> eventResults)
|
|
{
|
|
// check for null or empty definitions
|
|
if (propertyDefs == null || propertyDefs.isEmpty())
|
|
{
|
|
return;
|
|
}
|
|
for (PropertyDefinition propertyDef : propertyDefs)
|
|
{
|
|
QName propertyQName = propertyDef.getName();
|
|
Serializable propertyValue = nodeProperties.get(propertyQName);
|
|
// check that mandatory properties are set
|
|
if (propertyDef.isMandatory() && !nodeProperties.containsKey(propertyQName))
|
|
{
|
|
IntegrityRecord result = new IntegrityRecord(
|
|
"Mandatory property not set: \n" +
|
|
" Node: " + nodeRef + "\n" +
|
|
" Type: " + typeQName + "\n" +
|
|
" Property: " + propertyQName);
|
|
eventResults.add(result);
|
|
// next one
|
|
continue;
|
|
}
|
|
// TODO: Incorporate value constraint checks - JIRA AR166
|
|
}
|
|
}
|
|
}
|