/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.module.cam.batch.service.impl; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.Date; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import org.kuali.kfs.module.cam.batch.AssetBarcodeInventoryInputFileType; import org.kuali.kfs.module.cam.batch.service.AssetBarcodeInventoryInputFileService; import org.kuali.kfs.module.cam.document.web.struts.AssetBarCodeInventoryInputFileForm; import org.kuali.kfs.sys.KFSConstants; import org.kuali.kfs.sys.batch.service.impl.BatchInputFileSetServiceImpl; import org.kuali.kfs.sys.context.SpringContext; import org.kuali.kfs.sys.exception.FileStorageException; import org.kuali.rice.core.api.datetime.DateTimeService; import org.kuali.rice.kim.api.identity.Person; import org.kuali.rice.krad.exception.AuthorizationException; import org.kuali.rice.krad.exception.ValidationException; public class AssetBarcodeInventoryInputFileServiceImpl extends BatchInputFileSetServiceImpl implements AssetBarcodeInventoryInputFileService { private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(AssetBarcodeInventoryInputFileServiceImpl.class); public Map<String, String> save(Person user, AssetBarcodeInventoryInputFileType inputType, String fileUserIdentifier, Map<String, InputStream> typeToStreamMap, AssetBarCodeInventoryInputFileForm form) throws AuthorizationException, FileStorageException { //add a step to check for file directory - add the AssetBarcodeInventoryInputFile to check for file location List<String> directoryPathList = new ArrayList<String>(super.getRequiredDirectoryNames()); //fileType was not supposed to be used in the getDirectoryPath directoryPathList.add(inputType.getDirectoryPath(AssetBarcodeInventoryInputFileType.class.getSimpleName())); prepareDirectories(directoryPathList); Date creationDate = SpringContext.getBean(DateTimeService.class).getCurrentDate(); Map<String, File> typeToTempFiles = copyStreamsToTemporaryDirectory(user, inputType, fileUserIdentifier, typeToStreamMap, creationDate); // null the map, because it's full of exhausted input streams that are useless typeToStreamMap = null; if (!inputType.validate(typeToTempFiles)) { deleteTempFiles(typeToTempFiles); LOG.error("Upload file validation failed for user " + user.getName() + " identifier " + fileUserIdentifier); throw new ValidationException("File validation failed"); } byte[] buf = new byte[1024]; Map<String, String> typeToFileNames = new LinkedHashMap<String, String>(); Map<String, File> typeToFiles = new LinkedHashMap<String, File>(); try { for (String fileType : inputType.getFileTypes()) { File tempFile = typeToTempFiles.get(fileType); String saveFileName = inputType.getDirectoryPath(fileType) + File.separator + tempFile.getName(); try { InputStream fileContents = new FileInputStream(tempFile); File fileToSave = new File(saveFileName); copyInputStreamToFile(fileContents, fileToSave, buf); fileContents.close(); typeToFileNames.put(fileType, saveFileName); typeToFiles.put(fileType, fileToSave); } catch (IOException e) { LOG.error("unable to save contents to file " + saveFileName, e); throw new RuntimeException("errors encountered while writing file " + saveFileName, e); } } } finally { deleteTempFiles(typeToTempFiles); } String doneFileName = inputType.getDoneFileDirectoryPath() + File.separator + inputType.getDoneFileName(user, fileUserIdentifier, creationDate); File doneFile = new File(doneFileName); try { doneFile.createNewFile(); typeToFiles.put(KFSConstants.DONE_FILE_TYPE, doneFile); } catch (IOException e) { LOG.error("unable to create done file", e); throw new RuntimeException("unable to create done file", e); } inputType.process(typeToFiles,form); return typeToFileNames; } }