/* * AddBitstreamsAction.java * * Version: $Revision: 3984 $ * * Date: $Date: 2009-06-29 22:33:25 -0400 (Mon, 29 Jun 2009) $ * * Copyright (c) 2002-2009, The DSpace Foundation. 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 DSpace Foundation 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 * HOLDERS 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.app.itemupdate; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.sql.SQLException; import java.text.ParseException; import java.util.ArrayList; import java.util.List; import org.dspace.authorize.AuthorizeException; import org.dspace.authorize.AuthorizeManager; import org.dspace.authorize.ResourcePolicy; import org.dspace.content.Bitstream; import org.dspace.content.BitstreamFormat; import org.dspace.content.Bundle; import org.dspace.content.DCDate; import org.dspace.content.FormatIdentifier; import org.dspace.content.InstallItem; import org.dspace.content.Item; import org.dspace.core.Context; import org.dspace.eperson.Group; /** * Action to add bitstreams listed in item contents file to the item in DSpace * * */ public class AddBitstreamsAction extends UpdateBitstreamsAction { public AddBitstreamsAction() { //empty } /** * Adds bitstreams from the archive as listed in the contents file. * * @param context * @param ItemArchive * @param isTest * @param suppressUndo * @throws IllegalArgumentException * @throws ParseException * @throws IOException * @throws AuthorizeException * @throws SQLException */ public void execute(Context context, ItemArchive itarch, boolean isTest, boolean suppressUndo) throws IllegalArgumentException, ParseException, IOException, AuthorizeException, SQLException { Item item = itarch.getItem(); File dir = itarch.getDirectory(); List<ContentsEntry> contents = MetadataUtilities.readContentsFile(new File(dir, ItemUpdate.CONTENTS_FILE)); if (contents.isEmpty()) { ItemUpdate.pr("Contents is empty - no bitstreams to add"); return; } ItemUpdate.pr("Contents bitstream count: " + contents.size()); String[] files = dir.list(ItemUpdate.fileFilter); List<String> fileList = new ArrayList<String>(); for (String filename : files) { fileList.add(filename); ItemUpdate.pr("file: " + filename); } for (ContentsEntry ce : contents) { //validate match to existing file in archive if (!fileList.contains(ce.filename)) { throw new IllegalArgumentException("File listed in contents is missing: " + ce.filename); } } //now okay to add for (ContentsEntry ce : contents) { addBitstream(context, itarch, item, dir, ce, suppressUndo, isTest); } } private void addBitstream(Context context, ItemArchive itarch, Item item, File dir, ContentsEntry ce, boolean suppressUndo, boolean isTest) throws IOException, IllegalArgumentException, SQLException, AuthorizeException, ParseException { ItemUpdate.pr("contents entry for bitstream: " + ce.toString()); File f = new File(dir, ce.filename); // get an input stream BufferedInputStream bis = new BufferedInputStream(new FileInputStream(f)); Bitstream bs = null; String newBundleName = ce.bundlename; if (ce.bundlename == null) // should be required but default convention established { if (ce.filename.equals("license.txt")) { newBundleName = "LICENSE"; } else { newBundleName = "ORIGINAL"; } } ItemUpdate.pr(" Bitstream " + ce.filename + " to be added to bundle: " + newBundleName); if (!isTest) { // find the bundle Bundle[] bundles = item.getBundles(newBundleName); Bundle targetBundle = null; if (bundles.length < 1) { // not found, create a new one targetBundle = item.createBundle(newBundleName); } else { //verify bundle + name are not duplicates for (Bundle b : bundles) { Bitstream[] bitstreams = b.getBitstreams(); for (Bitstream bsm : bitstreams) { if (bsm.getName().equals(ce.filename)) { throw new IllegalArgumentException("Duplicate bundle + filename cannot be added: " + b.getName() + " + " + bsm.getName()); } } } // select first bundle targetBundle = bundles[0]; } bs = targetBundle.createBitstream(bis); bs.setName(ce.filename); // Identify the format // FIXME - guessing format guesses license.txt incorrectly as a text file format! BitstreamFormat fmt = FormatIdentifier.guessFormat(context, bs); bs.setFormat(fmt); if (ce.description != null) { bs.setDescription(ce.description); } if ((ce.permissionsActionId != -1) && (ce.permissionsGroupName != null)) { Group group = Group.findByName(context, ce.permissionsGroupName); if (group != null) { AuthorizeManager.removeAllPolicies(context, bs); // remove the default policy ResourcePolicy rp = ResourcePolicy.create(context); rp.setResource(bs); rp.setAction(ce.permissionsActionId); rp.setGroup(group); rp.update(); } } if (alterProvenance && !targetBundle.getName().equals("THUMBMNAIL") && !targetBundle.getName().equals("TEXT")) { DtoMetadata dtom = DtoMetadata.create("dc.description.provenance", "en", ""); String append = "Bitstream added on " + DCDate.getCurrent() + " : " + InstallItem.getBitstreamProvenanceMessage(item); MetadataUtilities.appendMetadata(item, dtom, false, append); } //update after all changes are applied, even metadata ones bs.update(); if (!suppressUndo) { itarch.addUndoDeleteContents(bs.getID()); } } } }