mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5186 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
264 lines
7.7 KiB
Java
264 lines
7.7 KiB
Java
/*
|
|
* Copyright (C) 2005-2007 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.repo.audit.model;
|
|
|
|
import org.alfresco.repo.audit.AuditMode;
|
|
import org.alfresco.repo.audit.AuditModel;
|
|
import org.alfresco.repo.audit.PublicServiceIdentifier;
|
|
import org.alfresco.service.namespace.NamespacePrefixResolver;
|
|
import org.apache.commons.logging.Log;
|
|
import org.apache.commons.logging.LogFactory;
|
|
import org.dom4j.Attribute;
|
|
import org.dom4j.Element;
|
|
|
|
public abstract class AbstractAuditEntry
|
|
{
|
|
private static Log s_logger = LogFactory.getLog(AbstractAuditEntry.class);
|
|
|
|
private RecordOptionsImpl recordOptions = null;
|
|
|
|
private AbstractFilter filter = null;
|
|
|
|
private AuditMode auditMode = AuditMode.UNSET;
|
|
|
|
private TrueFalseUnset enabled = TrueFalseUnset.UNSET;
|
|
|
|
private TrueFalseUnset auditInternal = TrueFalseUnset.UNSET;
|
|
|
|
private AbstractAuditEntry parent;
|
|
|
|
private PublicServiceIdentifier publicServiceIdentifier;
|
|
|
|
public AbstractAuditEntry()
|
|
{
|
|
super();
|
|
}
|
|
|
|
PublicServiceIdentifier getPublicServiceIdentifier()
|
|
{
|
|
return publicServiceIdentifier;
|
|
}
|
|
|
|
public void setPublicServiceIdentifier(PublicServiceIdentifier publicServiceIdentifier)
|
|
{
|
|
this.publicServiceIdentifier = publicServiceIdentifier;
|
|
}
|
|
|
|
void configure(AbstractAuditEntry parent, Element element, NamespacePrefixResolver namespacePrefixResolver)
|
|
{
|
|
this.parent = parent;
|
|
|
|
Attribute auditModeAttribute = element.attribute(AuditModel.AT_MODE);
|
|
if (auditModeAttribute != null)
|
|
{
|
|
auditMode = AuditMode.getAuditMode(auditModeAttribute.getValue());
|
|
}
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("Audit Mode = "+auditMode);
|
|
}
|
|
|
|
|
|
Attribute enabledAttribute = element.attribute(AuditModel.AT_ENABLED);
|
|
if (enabledAttribute != null)
|
|
{
|
|
enabled = TrueFalseUnset.getTrueFalseUnset(enabledAttribute.getValue());
|
|
}
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("Enabled = "+enabled);
|
|
}
|
|
|
|
Attribute auditInternalAttribute = element.attribute(AuditModel.AT_AUDIT_INTERNAL);
|
|
if (auditInternalAttribute != null)
|
|
{
|
|
auditInternal = TrueFalseUnset.getTrueFalseUnset(auditInternalAttribute.getValue());
|
|
}
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("Audit Internal = "+auditInternal);
|
|
}
|
|
|
|
// Make record options
|
|
Element recordOptionElement = element.element(AuditModel.EL_RECORD_OPTIONS);
|
|
if (recordOptionElement != null)
|
|
{
|
|
recordOptions = new RecordOptionsImpl();
|
|
recordOptions.configure(recordOptionElement, namespacePrefixResolver);
|
|
}
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("Record Options = "+recordOptions);
|
|
}
|
|
|
|
// Make filters
|
|
Element filterElement = element.element(AuditModel.EL_FILTER);
|
|
if (filterElement != null)
|
|
{
|
|
filter = AbstractFilter.createFilter(filterElement, namespacePrefixResolver);
|
|
}
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("Filter = "+filter);
|
|
}
|
|
|
|
}
|
|
|
|
/* package */TrueFalseUnset getAuditInternal()
|
|
{
|
|
return auditInternal;
|
|
}
|
|
|
|
/* package */AuditMode getAuditMode()
|
|
{
|
|
return auditMode;
|
|
}
|
|
|
|
public TrueFalseUnset getEnabled()
|
|
{
|
|
return enabled;
|
|
}
|
|
|
|
/* package */AbstractFilter getFilter()
|
|
{
|
|
return filter;
|
|
}
|
|
|
|
/* package */AbstractAuditEntry getParent()
|
|
{
|
|
return parent;
|
|
}
|
|
|
|
/* package */RecordOptionsImpl getRecordOptions()
|
|
{
|
|
return recordOptions;
|
|
}
|
|
|
|
|
|
protected TrueFalseUnset getEffectiveAuditInternal()
|
|
{
|
|
TrueFalseUnset auditInternal;
|
|
if (checkEnabled() == TrueFalseUnset.TRUE)
|
|
{
|
|
auditInternal = getAuditInternalOrParentAuditInternal();
|
|
}
|
|
else
|
|
{
|
|
auditInternal = TrueFalseUnset.FALSE;
|
|
}
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("... Effective audit internal is = "+auditInternal);
|
|
}
|
|
return auditInternal;
|
|
}
|
|
|
|
private TrueFalseUnset getAuditInternalOrParentAuditInternal()
|
|
{
|
|
TrueFalseUnset auditInternal = getAuditInternal();
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("... ... audit internal is = "+auditInternal);
|
|
}
|
|
if (auditInternal == TrueFalseUnset.UNSET)
|
|
{
|
|
if (getParent() == null)
|
|
{
|
|
return TrueFalseUnset.UNSET;
|
|
}
|
|
else
|
|
{
|
|
return getParent().getAuditInternalOrParentAuditInternal();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return auditInternal;
|
|
}
|
|
}
|
|
|
|
protected AuditMode getEffectiveAuditMode()
|
|
{
|
|
AuditMode auditMode;
|
|
if (checkEnabled() == TrueFalseUnset.TRUE)
|
|
{
|
|
auditMode = getAuditModeOrParentAuditMode();
|
|
}
|
|
else
|
|
{
|
|
auditMode = AuditMode.NONE;
|
|
}
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("... Effective audit mode is = "+auditMode);
|
|
}
|
|
return auditMode;
|
|
}
|
|
|
|
private AuditMode getAuditModeOrParentAuditMode()
|
|
{
|
|
AuditMode auditMode = getAuditMode();
|
|
if(s_logger.isDebugEnabled())
|
|
{
|
|
s_logger.debug("... ... audit mode is = "+auditMode);
|
|
}
|
|
if (auditMode == AuditMode.UNSET)
|
|
{
|
|
if (getParent() == null)
|
|
{
|
|
return AuditMode.UNSET;
|
|
}
|
|
else
|
|
{
|
|
return getParent().getAuditModeOrParentAuditMode();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return auditMode;
|
|
}
|
|
|
|
}
|
|
|
|
private TrueFalseUnset checkEnabled()
|
|
{
|
|
TrueFalseUnset effective = getEnabled();
|
|
if (getParent() != null)
|
|
{
|
|
if ((getParent().checkEnabled() == TrueFalseUnset.TRUE) && (effective != TrueFalseUnset.FALSE))
|
|
{
|
|
return TrueFalseUnset.TRUE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (effective == TrueFalseUnset.TRUE)
|
|
{
|
|
return TrueFalseUnset.TRUE;
|
|
}
|
|
}
|
|
return TrueFalseUnset.FALSE;
|
|
}
|
|
|
|
}
|