Package org.dspace.sword

Source Code of org.dspace.sword.DSpaceSWORDServer

/* DSpaceSWORDServer.java
*
* Copyright (c) 2007, Aberystwyth University
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
*  - Redistributions of source code must retain the above
*    copyright notice, this list of conditions and the
*    following disclaimer.
*
*  - Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in
*    the documentation and/or other materials provided with the
*    distribution.
*
*  - Neither the name of the Centre for Advanced Software and
*    Intelligent Systems (CASIS) nor the names of its
*    contributors may be used to endorse or promote products derived
*    from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/

package org.dspace.sword;

import org.apache.log4j.Logger;

import org.dspace.core.Context;
import org.dspace.core.LogManager;

import org.purl.sword.server.SWORDServer;
import org.purl.sword.base.AtomDocumentRequest;
import org.purl.sword.base.AtomDocumentResponse;
import org.purl.sword.base.Deposit;
import org.purl.sword.base.DepositResponse;
import org.purl.sword.base.SWORDAuthenticationException;
import org.purl.sword.base.SWORDErrorException;
import org.purl.sword.base.SWORDException;
import org.purl.sword.base.ServiceDocument;
import org.purl.sword.base.ServiceDocumentRequest;

import java.sql.SQLException;

/**
* An implementation of the SWORDServer interface to allow SWORD deposit
* operations on DSpace.  See:
*
* http://www.ukoln.ac.uk/repositories/digirep/index/SWORD_APP_Profile_0.5
*
* @author Richard Jones
*/
public class DSpaceSWORDServer implements SWORDServer
{
  /** Log4j logger */
  public static Logger log = Logger.getLogger(DSpaceSWORDServer.class);

  // methods required by SWORDServer interface
  ////////////////////////////////////////////

  /* (non-Javadoc)
   * @see org.purl.sword.SWORDServer#doServiceDocument(org.purl.sword.base.ServiceDocumentRequest)
   */
  public ServiceDocument doServiceDocument(ServiceDocumentRequest request)
    throws SWORDAuthenticationException, SWORDException, SWORDErrorException
  {
    // gah.  bloody variable scoping.
    // set up a dummy sword context for the "finally" block
    SWORDContext sc = null;

    try
    {
      // first authenticate the request
      // note: this will build our various DSpace contexts for us
      SWORDAuthenticator auth = new SWORDAuthenticator();
      sc = auth.authenticate(request);
      Context context = sc.getContext();

      if (log.isDebugEnabled())
      {
        log.debug(LogManager.getHeader(context, "sword_do_service_document", ""));
      }

      // log the request
      log.info(LogManager.getHeader(context, "sword_service_document_request", "username=" + request.getUsername() + ",on_behalf_of=" + request.getOnBehalfOf()));
     
      // prep the service request, then get the service document out of it
      SWORDService service = new SWORDService(sc);
      ServiceDocumentManager manager = new ServiceDocumentManager(service);
      ServiceDocument doc = manager.getServiceDocument(request.getLocation());
     
      return doc;
    }
    catch (DSpaceSWORDException e)
    {
      log.error("caught exception: ", e);
      throw new SWORDException("The DSpace SWORD interface experienced an error", e);
    }
    finally
    {
      // this is a read operation only, so there's never any need to commit the context
            if (sc != null)
            {
                sc.abort();
            }
    }
  }
 
  /* (non-Javadoc)
   * @see org.purl.sword.SWORDServer#doSWORDDeposit(org.purl.sword.server.Deposit)
   */
  public DepositResponse doDeposit(Deposit deposit)
    throws SWORDAuthenticationException, SWORDException, SWORDErrorException
  {
    // gah.  bloody variable scoping.
    // set up a dummy sword context for the "finally" block
    SWORDContext sc = null;

    try
    {
      // first authenticate the request
      // note: this will build our various DSpace contexts for us
      SWORDAuthenticator auth = new SWORDAuthenticator();
      sc = auth.authenticate(deposit);
      Context context = sc.getContext();

            if (log.isDebugEnabled())
      {
        log.debug(LogManager.getHeader(context, "sword_do_deposit", ""));
      }
     
      // log the request
      log.info(LogManager.getHeader(context, "sword_deposit_request", "username=" + deposit.getUsername() + ",on_behalf_of=" + deposit.getOnBehalfOf()));
     
      // prep and execute the deposit
      SWORDService service = new SWORDService(sc);
      service.setVerbose(deposit.isVerbose());
      DepositManager dm = new DepositManager(service);
      DepositResponse response = dm.deposit(deposit);
     
      // if something hasn't killed it already (allowed), then complete the transaction
      sc.commit();
     
      return response;
    }
    catch (DSpaceSWORDException e)
    {
      log.error("caught exception:", e);
      throw new SWORDException("There was a problem depositing the item", e);
    }
    finally
    {
      // if, for some reason, we wind up here with a not null context
      // then abort it (the above should commit it if everything works fine)
        if (sc != null)
            {
                sc.abort();
            }
    }
  }

  /* (non-Javadoc)
   * @see org.purl.sword.SWORDServer#doSWORDDeposit(org.purl.sword.server.Deposit)
   */
  public AtomDocumentResponse doAtomDocument(AtomDocumentRequest adr)
    throws SWORDAuthenticationException, SWORDException, SWORDErrorException
  {
    // gah.  bloody variable scoping.
    // set up a dummy sword context for the "finally" block
    SWORDContext sc = null;

    try
    {
      // first authenticate the request
      // note: this will build our various DSpace contexts for us
      SWORDAuthenticator auth = new SWORDAuthenticator();
      sc = auth.authenticate(adr);
      Context context = sc.getContext();

      if (log.isDebugEnabled())
      {
        log.debug(LogManager.getHeader(context, "sword_do_atom_document", ""));
      }

      // log the request
      log.info(LogManager.getHeader(context, "sword_atom_document_request", "username=" + adr.getUsername()));

      // prep the service request, then get the service document out of it
      SWORDService service = new SWORDService(sc);
      MediaEntryManager manager = new MediaEntryManager(service);
      AtomDocumentResponse doc = manager.getMediaEntry(adr.getLocation());

      return doc;
    }
    catch (DSpaceSWORDException e)
    {
      log.error("caught exception: ", e);
      throw new SWORDException("The DSpace SWORD interface experienced an error", e);
    }
    finally
    {
      // this is a read operation only, so there's never any need to commit the context
        if (sc != null)
            {
                sc.abort();
            }
    }
  }
}
TOP

Related Classes of org.dspace.sword.DSpaceSWORDServer

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.