Package org.primefaces.component.filedownload

Source Code of org.primefaces.component.filedownload.FileDownloadActionListener

/*
* Copyright 2009-2011 Prime Technology.
*
* 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.
*/
package org.primefaces.component.filedownload;

import java.io.IOException;

import javax.el.ELContext;
import javax.el.ValueExpression;
import javax.faces.component.StateHolder;
import javax.faces.context.FacesContext;
import javax.faces.event.AbortProcessingException;
import javax.faces.event.ActionEvent;
import javax.faces.event.ActionListener;
import javax.servlet.http.HttpServletResponse;

import org.primefaces.model.StreamedContent;

public class FileDownloadActionListener implements ActionListener, StateHolder {

  private ValueExpression value;
 
  private ValueExpression contentDisposition;
 
  public FileDownloadActionListener() {}
 
  public FileDownloadActionListener(ValueExpression value, ValueExpression contentDisposition) {
    this.value = value;
    this.contentDisposition = contentDisposition;
  }

  public void processAction(ActionEvent actionEvent) throws AbortProcessingException {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ELContext elContext = facesContext.getELContext();
    HttpServletResponse response = (HttpServletResponse) facesContext.getExternalContext().getResponse();
 
    String contentDispositionValue = contentDisposition != null ? (String) contentDisposition.getValue(elContext) : "attachment"
    StreamedContent content = (StreamedContent) value.getValue(elContext);
   
    try {
      response.setContentType(content.getContentType());
      response.setHeader("Content-Disposition", contentDispositionValue + ";filename=\"" + content.getName() + "\"");
     
      byte[] buffer = new byte[2048];
 
      int length;
      while ((length = (content.getStream().read(buffer))) >= 0) {
        response.getOutputStream().write(buffer, 0, length);
      }
     
      response.setStatus(200);
     
      content.getStream().close();
      response.getOutputStream().flush();
      facesContext.responseComplete();
    }catch (IOException e) {
      e.printStackTrace();
    }
  }

  public boolean isTransient() {
    return false;
  }

  public void restoreState(FacesContext facesContext, Object state) {
    Object values[] = (Object[]) state;

    value = (ValueExpression) values[0];
    contentDisposition = (ValueExpression) values[1];
  }

  public Object saveState(FacesContext facesContext) {
    Object values[] = new Object[2];

    values[0] = value;
    values[1] = contentDisposition;
   
    return ((Object[]) values);
  }

  public void setTransient(boolean value) {
   
  }
}
TOP

Related Classes of org.primefaces.component.filedownload.FileDownloadActionListener

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.