ProductFileManagerImpl.java

357 lines | 11.084 kB Blame History Raw Download
package com.salesmanager.core.modules.cms.product;

import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.net.FileNameMap;
import java.net.URLConnection;
import java.util.List;

import javax.imageio.ImageIO;

import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.salesmanager.core.business.catalog.product.model.Product;
import com.salesmanager.core.business.catalog.product.model.file.ProductImageSize;
import com.salesmanager.core.business.catalog.product.model.image.ProductImage;
import com.salesmanager.core.business.content.model.FileContentType;
import com.salesmanager.core.business.content.model.ImageContentFile;
import com.salesmanager.core.business.content.model.OutputContentFile;
import com.salesmanager.core.business.generic.exception.ServiceException;
import com.salesmanager.core.constants.Constants;
import com.salesmanager.core.utils.CoreConfiguration;
import com.salesmanager.core.utils.ProductImageCropUtils;
import com.salesmanager.core.utils.ProductImageSizeUtils;


public class ProductFileManagerImpl extends ProductFileManager {
	
	private static final Logger LOGGER = LoggerFactory.getLogger(ProductFileManagerImpl.class);
	

	private ProductImagePut uploadImage;
	private ProductImageGet getImage;
	private ProductImageRemove removeImage;
	
	private CoreConfiguration configuration;
	
	private final static String PRODUCT_IMAGE_HEIGHT_SIZE = "PRODUCT_IMAGE_HEIGHT_SIZE";
	private final static String PRODUCT_IMAGE_WIDTH_SIZE = "PRODUCT_IMAGE_WIDTH_SIZE";
	private final static String CROP_UPLOADED_IMAGES ="CROP_UPLOADED_IMAGES";


	public CoreConfiguration getConfiguration() {
		return configuration;
	}


	public void setConfiguration(CoreConfiguration configuration) {
		this.configuration = configuration;
	}


	public ProductImageRemove getRemoveImage() {
		return removeImage;
	}


	public void setRemoveImage(ProductImageRemove removeImage) {
		this.removeImage = removeImage;
	}


	public void addProductImage(ProductImage productImage, ImageContentFile contentImage)
	throws ServiceException {
	
	
	try {
		
		/** copy to input stream **/
	    ByteArrayOutputStream baos = new ByteArrayOutputStream();
	    // Fake code simulating the copy
	    // You can generally do better with nio if you need...
	    // And please, unlike me, do something about the Exceptions :D
	    byte[] buffer = new byte[1024];
	    int len;
	    while ((len = contentImage.getFile().read(buffer)) > -1 ) {
	        baos.write(buffer, 0, len);
	    }
	    baos.flush();

	    // Open new InputStreams using the recorded bytes
	    // Can be repeated as many times as you wish
	    InputStream is1 = new ByteArrayInputStream(baos.toByteArray()); 
	    InputStream is2 = new ByteArrayInputStream(baos.toByteArray()); 
	    
	    BufferedImage bufferedImage = ImageIO.read(is2);
	    //contentImage.setBufferedImage(bufferedImage);
	    contentImage.setFile(is1);


		//upload original -- L
	    contentImage.setFileContentType(FileContentType.PRODUCTLG);
		uploadImage.addProductImage(productImage, contentImage);

/*				//default large
		InputContentImage largeContentImage = new InputContentImage(ImageContentType.PRODUCT);
		largeContentImage.setFile(contentImage.getFile());
		largeContentImage.setDefaultImage(productImage.isDefaultImage());
		largeContentImage.setImageName(new StringBuilder().append("L-").append(productImage.getProductImage()).toString());

		
		uploadImage.uploadProductImage(configuration, productImage, largeContentImage);*/
		
/*				//default small
		InputContentImage smallContentImage = new InputContentImage(ImageContentType.PRODUCT);
		smallContentImage.setFile(contentImage.getFile());
		smallContentImage.setDefaultImage(productImage.isDefaultImage());
		smallContentImage.setImageName(new StringBuilder().append("S-").append(productImage.getProductImage()).toString());
		
		uploadImage.uploadProductImage(configuration, productImage, smallContentImage);*/
		
		
		//get template properties file
			
		String slargeImageHeight = configuration.getProperty(PRODUCT_IMAGE_HEIGHT_SIZE);
		String slargeImageWidth = configuration.getProperty(PRODUCT_IMAGE_WIDTH_SIZE);
		
		//String ssmallImageHeight = configuration.getProperty("SMALL_IMAGE_HEIGHT_SIZE");
		//String ssmallImageWidth = configuration.getProperty("SMALL_IMAGE_WIDTH_SIZE");

			
		if(!StringUtils.isBlank(slargeImageHeight) && !StringUtils.isBlank(slargeImageWidth)) { //&& !StringUtils.isBlank(ssmallImageHeight) && !StringUtils.isBlank(ssmallImageWidth)) {
			
			
			FileNameMap fileNameMap = URLConnection.getFileNameMap();
			
			String contentType = fileNameMap.getContentTypeFor(contentImage.getFileName());
			String extension = null;
			if(contentType!=null) {
				extension = contentType.substring(contentType.indexOf("/")+1,contentType.length());
			}

			if(extension==null){
				extension="jpeg";
			}
			
			
			int largeImageHeight = Integer.parseInt(slargeImageHeight);
			int largeImageWidth = Integer.parseInt(slargeImageWidth);
			
			if(largeImageHeight<=0 || largeImageWidth<=0) {
				String sizeMsg = "Image configuration set to an invalid value [PRODUCT_IMAGE_HEIGHT_SIZE] " + largeImageHeight + " , [PRODUCT_IMAGE_WIDTH_SIZE] " + largeImageWidth;
				LOGGER.error(sizeMsg);
				throw new ServiceException(sizeMsg);
			}

			if(!StringUtils.isBlank(configuration.getProperty(CROP_UPLOADED_IMAGES)) && configuration.getProperty(CROP_UPLOADED_IMAGES).equals(Constants.TRUE)) {
					//crop image
					ProductImageCropUtils utils = new ProductImageCropUtils(bufferedImage, largeImageWidth, largeImageHeight);
					if(utils.isCropeable()) {
						bufferedImage = utils.getCroppedImage();
					} 
			} 
				
				
			//TODO print cropped image
			
			
				//do not keep a large image for now, just take care of the regular image and a small image
				
				//resize large
				//ByteArrayOutputStream output = new ByteArrayOutputStream();
				BufferedImage largeResizedImage = ProductImageSizeUtils.resizeWithRatio(bufferedImage, largeImageWidth, largeImageHeight);
				
				
				File tempLarge = File.createTempFile(new StringBuilder().append(productImage.getProduct().getId()).append("tmpLarge").toString(), "." + extension );
				ImageIO.write(largeResizedImage, extension, tempLarge);

				FileInputStream isLarge = new FileInputStream(tempLarge);
				
				 
	            //IOUtils.copy(isLarge, output);
				

	            ImageContentFile largeContentImage = new ImageContentFile();
	            largeContentImage.setFileContentType(FileContentType.PRODUCT);
	            largeContentImage.setFileName(productImage.getProductImage());
	            largeContentImage.setFile(isLarge);
	            
	            
	            //largeContentImage.setBufferedImage(bufferedImage);
				
	            //largeContentImage.setFile(output);
				//largeContentImage.setDefaultImage(false);
				//largeContentImage.setImageName(new StringBuilder().append("L-").append(productImage.getProductImage()).toString());


				uploadImage.addProductImage(productImage, largeContentImage);
				
				//output.flush();
				//output.close();
				
				tempLarge.delete();
				
				//now upload original
				
				
				
/*						//resize small
				BufferedImage smallResizedImage = ProductImageSizeUtils.resize(cropped, smallImageWidth, smallImageHeight);
				File tempSmall = File.createTempFile(new StringBuilder().append(productImage.getProduct().getId()).append("tmpSmall").toString(), "." + extension );
				ImageIO.write(smallResizedImage, extension, tempSmall);
				
				//byte[] is = IOUtils.toByteArray(new FileInputStream(tempSmall));
				
				FileInputStream isSmall = new FileInputStream(tempSmall);
				
				output = new ByteArrayOutputStream(); 
	            IOUtils.copy(isSmall, output);
				

				smallContentImage = new InputContentImage(ImageContentType.PRODUCT);
				smallContentImage.setFile(output);
				smallContentImage.setDefaultImage(false);
				smallContentImage.setImageName(new StringBuilder().append("S-").append(productImage.getProductImage()).toString());
				
				uploadImage.uploadProductImage(configuration, productImage, smallContentImage);
				
				output.flush();
				output.close();
				
				tempSmall.delete();*/
			
			

		} else {
			//small will be the same as the original
			contentImage.setFileContentType(FileContentType.PRODUCT);
			uploadImage.addProductImage(productImage, contentImage);
		}
		
		


	
		
		
	} catch (Exception e) {
		throw new ServiceException(e);
	} finally {
		try {
			productImage.getImage().close();
		} catch(Exception ignore) {}
	}

}

	
	public OutputContentFile getProductImage(ProductImage productImage) throws ServiceException {
		//will return original
		return getImage.getProductImage(productImage);
	}

	
	@Override
	public List<OutputContentFile> getImages(final String merchantStoreCode, FileContentType imageContentType)
			throws ServiceException {
		//will return original
		return getImage.getImages(merchantStoreCode,FileContentType.PRODUCT);
	}
	
	@Override
	public List<OutputContentFile> getImages(Product product)
			throws ServiceException {
		return getImage.getImages(product);
	}






	@Override
	public void removeProductImage(ProductImage productImage)
			throws ServiceException {

		this.removeImage.removeProductImage(productImage);
		
/*		ProductImage large = new ProductImage();
		large.setProduct(productImage.getProduct());
		large.setProductImage("L" + productImage.getProductImage());
		
		this.removeImage.removeProductImage(large);
		
		ProductImage small = new ProductImage();
		small.setProduct(productImage.getProduct());
		small.setProductImage("S" + productImage.getProductImage());
		
		this.removeImage.removeProductImage(small);*/
		
	}


	@Override
	public void removeProductImages(Product product) throws ServiceException {

		this.removeImage.removeProductImages(product);
		
	}


	@Override
	public void removeImages(final String merchantStoreCode) throws ServiceException {
		
		this.removeImage.removeImages(merchantStoreCode);
		
	}


	public ProductImagePut getUploadImage() {
		return uploadImage;
	}


	public void setUploadImage(ProductImagePut uploadImage) {
		this.uploadImage = uploadImage;
	}


	

	public ProductImageGet getGetImage() {
		return getImage;
	}


	public void setGetImage(ProductImageGet getImage) {
		this.getImage = getImage;
	}


	@Override
	public OutputContentFile getProductImage(String merchantStoreCode,
			String productCode, String imageName) throws ServiceException {
		return getImage.getProductImage(merchantStoreCode, productCode, imageName);
	}



	@Override
	public OutputContentFile getProductImage(String merchantStoreCode,
			String productCode, String imageName, ProductImageSize size)
			throws ServiceException {
		return getImage.getProductImage(merchantStoreCode, productCode, imageName, size);
	}





}