Package org.exoplatform.services.jcr.ext.audit

Source Code of org.exoplatform.services.jcr.ext.audit.AuditAction

/*
* Copyright (C) 2003-2007 eXo Platform SAS.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; either version 3
* 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, see<http://www.gnu.org/licenses/>.
*/
package org.exoplatform.services.jcr.ext.audit;

import org.apache.commons.chain.Context;
import org.exoplatform.container.ExoContainer;
import org.exoplatform.services.command.action.Action;
import org.exoplatform.services.jcr.impl.core.ItemImpl;
import org.exoplatform.services.jcr.impl.core.NodeImpl;
import org.exoplatform.services.jcr.observation.ExtendedEventType;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;

/**
* @author <a href="mailto:Sergey.Kabashnyuk@gmail.com">Sergey Kabashnyuk</a>
* @version $Id: $
*/
public class AuditAction
   implements Action
{
   private static final Log LOG = ExoLogger.getLogger("exo-jcr-services.AuditAction");

   public boolean execute(Context ctx) throws Exception
   {

      ItemImpl currentItem = (ItemImpl) ctx.get("currentItem");
      ItemImpl previousItem = (ItemImpl) ctx.get("previousItem");
      int event = (Integer) ctx.get("event");

      NodeImpl node;
      if (currentItem.isNode())
         node = (NodeImpl) currentItem;
      else
         node = currentItem.getParent();

      if (node.isNodeType(AuditService.EXO_AUDITABLE))
      {
         AuditService auditService =
                  (AuditService) ((ExoContainer) ctx.get("exocontainer"))
                           .getComponentInstanceOfType(AuditService.class);

         if (!auditService.hasHistory(node))
            auditService.createHistory(node);

         auditService.addRecord(previousItem, currentItem, event);
         if (LOG.isDebugEnabled())
         {
            LOG.debug("Record '" + ExtendedEventType.nameFromValue(event) + "' added for " + currentItem.getPath());
         }
         return true;
      }
      return false;
   }

}
TOP

Related Classes of org.exoplatform.services.jcr.ext.audit.AuditAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.