All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.efaps.db.Checkout Maven / Gradle / Ivy

Go to download

eFaps is a framework used to map objects with or without attached files to a relational database and optional file systems (only for attaches files). Configurable access control can be provided down to object and attribute level depending on implementation and use case. Depending on requirements, events (like triggers) allow to implement business logic and to separate business logic from user interface. The framework includes integrations (e.g. webdav, full text search) and a web application as 'simple' configurable user interface. Some best practises, example web application modules (e.g. team work module) support administrators and implementers using this framework.

There is a newer version: 3.2.0
Show newest version
/*
 * Copyright 2003 - 2012 The eFaps Team
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * 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.
 *
 * Revision:        $Rev: 7483 $
 * Last Changed:    $Date: 2012-05-11 11:57:38 -0500 (Fri, 11 May 2012) $
 * Last Changed By: $Author: [email protected] $
 */

package org.efaps.db;
import java.io.InputStream;
import java.io.OutputStream;

import org.efaps.admin.access.AccessTypeEnums;
import org.efaps.admin.event.EventType;
import org.efaps.db.store.Resource;
import org.efaps.util.EFapsException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * The class is used to checkout a file from a given attribute of an object.
 *
 * @author The eFaps Team
 * @version $Id: Checkout.java 7483 2012-05-11 16:57:38Z [email protected] $
 */
public class Checkout
    extends AbstractAction
{
    /**
     * Logging instance used in this class.
     */
    private static final Logger LOG = LoggerFactory.getLogger(Checkout.class);

    /**
     * Stores the file name after pre processing.
     *
     * @see #preprocess
     * @see #getFileName()
     */
    private String fileName = null;

    /**
     * Length of the file in bytes.
     */
    private long fileLength;

    /**
     * Constructor with object id as string.
     *
     * @param _oid        oid of object on which the checkout is made
     */
    public Checkout(final String _oid)
    {
        this(Instance.get(_oid));
    }

    /**
     * Constructor with instance object.
     *
     * @param _instance  instance on which the checkout is made
     */
    public Checkout(final Instance _instance)
    {
        super.setInstance(_instance);
    }

    /**
     * The method is only a dummy method and closes the checkout action. The
     * method should be called, if in the future the checkout class needs a
     * call to this method.
     */
    public void close()
    {
    }

    /**
     * Executes the checkout with an output stream.
     *
     * @param _out      output stream where to write the file
     * @throws EFapsException   if the current context user has now access to
     *                          checkout the file out of the eFaps object
     */
    public void execute(final OutputStream _out)
        throws EFapsException
    {
        final boolean hasAccess = super.getInstance().getType().hasAccess(super.getInstance(),
                                                                          AccessTypeEnums.CHECKOUT.getAccessType());
        if (!hasAccess) {
            throw new EFapsException(this.getClass(), "execute.NoAccess");
        }
        this.executeWithoutAccessCheck(_out);
    }

    /**
     * Executes the checkout for output streams without checking the access
     * rights (but with triggers).
     * 
    *
  1. executes the pre checkout trigger (if exists)
  2. *
  3. executes the checkout trigger (if exists)
  4. *
  5. executes if no checkout trigger exists or the checkout trigger is * not executed the update ({@see #executeWithoutTrigger})
  6. *
  7. executes the post checkout trigger (if exists)
  8. *
* * @param _out output stream where to write the file * @throws EFapsException if checkout action fails */ public void executeWithoutAccessCheck(final OutputStream _out) throws EFapsException { executeEvents(EventType.CHECKOUT_PRE); if (!executeEvents(EventType.CHECKOUT_OVERRIDE)) { this.executeWithoutTrigger(_out); } executeEvents(EventType.CHECKOUT_POST); } /** * Executes the checkout for output streams without checking the access * rights and without triggers. * * @param _out output stream where to write the file * @throws EFapsException if checkout action fails */ public void executeWithoutTrigger(final OutputStream _out) throws EFapsException { Resource storeRsrc = null; try { storeRsrc = Context.getThreadContext().getStoreResource(getInstance(), Resource.StoreEvent.READ); storeRsrc.read(_out); this.fileLength = storeRsrc.getFileLength(); this.fileName = storeRsrc.getFileName(); storeRsrc.commit(); } catch (final EFapsException e) { Checkout.LOG.error("could not checkout " + super.getInstance(), e); throw e; } finally { if ((storeRsrc != null) && storeRsrc.isOpened()) { storeRsrc.abort(); } } } /** * Executes the checkout and returns an input stream by calling method * {@link #executeWithoutAccessCheck()}. * * @return input stream of the checked in file * @throws EFapsException if the current context user has now access to * checkout the file out of the eFaps object * @see #executeWithoutAccessCheck() */ public InputStream execute() throws EFapsException { final boolean hasAccess = super.getInstance().getType().hasAccess(super.getInstance(), AccessTypeEnums.CHECKOUT.getAccessType()); if (!hasAccess) { throw new EFapsException(this.getClass(), "execute.NoAccess"); } return this.executeWithoutAccessCheck(); } /** * Executes the checkout without an access check (but with triggers) and * returns an input streams of the checked in file. The returned input * stream must be closed, because the returned inputs stream also commit * the store resource. Otherwise the transaction is rolled back! *
    *
  1. executes the pre checkout trigger (if exists)
  2. *
  3. executes the checkout trigger (if exists)
  4. *
  5. executes if no checkout trigger exists or the checkout trigger is * not executed the update ({@see #executeWithoutTrigger})
  6. *
  7. executes the post checkout trigger (if exists)
  8. *
* * @throws EFapsException if checkout action fails * @return input stream containing the file */ public InputStream executeWithoutAccessCheck() throws EFapsException { InputStream ret = null; executeEvents(EventType.CHECKOUT_PRE); if (!executeEvents(EventType.CHECKOUT_OVERRIDE)) { ret = this.executeWithoutTrigger(); } executeEvents(EventType.CHECKOUT_POST); return ret; } /** * Executes the checkout without an access check and without triggers and * returns an input streams of the checked in file. The returned input * stream must be closed, because the returned inputs stream also commit * the store resource. Otherwise the transaction is rolled back! * * @throws EFapsException if checkout action fails * @return input stream containing the file */ public InputStream executeWithoutTrigger() throws EFapsException { Resource storeRsrc = null; InputStream in = null; try { storeRsrc = Context.getThreadContext().getStoreResource(getInstance(), Resource.StoreEvent.READ); in = storeRsrc.read(); this.fileLength = storeRsrc.getFileLength(); this.fileName = storeRsrc.getFileName(); storeRsrc.commit(); } catch (final EFapsException e) { Checkout.LOG.error("could not checkout " + super.getInstance(), e); throw e; } finally { if ((in == null) && (storeRsrc != null) && storeRsrc.isOpened()) { storeRsrc.abort(); } } return in; } /** * This is the getter method for instance variable {@link #fileName}. * * @return the fileName of the instance variable {@link #fileName}. * @see #fileName */ public String getFileName() { return this.fileName; } /** * This is the getter method for instance variable {@link #fileLength}. * * @return the fileName of the instance variable {@link #fileLength}. * @see #fileLength */ public long getFileLength() { return this.fileLength; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy