Rails将多个pdf文件呈现给文件夹

时间:2016-01-27 17:53:45

标签: ruby-on-rails ruby-on-rails-4 pdf prawn

我有一个控制器动作,可以下载pdf。 我想将多个pdf渲染到tmp文件夹(然后将它们压缩下载)

我可以生成pdf并呈现给用户,但我无法弄清楚如何创建一个文件夹来存储它们。

我正在使用虾。它有render_file方法将其保存到文件系统但我不知道它是什么目录,或者其他用户是否可以将他们的pdf保存到同一个文件夹,所以我需要创建一个每个用户的uniques文件夹然后将pdf保存在那里。

我该怎么做?

我的控制器操作目前是

def showpdf
    respond_to do |format|
      format.html
      format.pdf do
        @items.each do |pdf|
          pdf = Prawn::Document.new(page_size:  "A4",margin: [0,0,0,0])

         # pdf creation stuff...

          # this was used previously to render one pdf to the browser
          # but I need to save multiple pdf's
          #send_data pdf.render, filename: 'report.pdf', type: 'application/pdf'
        end
      end
    end

1 个答案:

答案 0 :(得分:2)

您需要将所有文件存储到tmp / your-folder文件夹中,如下所示

require 'prawn'
@items.each do |item|
   pdf = Prawn::Document.new
   pdf.text("Lets Zip All.")
   pdf.render_file('tmp/your-folder/#{item.id}.pdf')
end

然后只需使用https://github.com/rubyzip/rubyzip压缩您的文件夹。

require 'zip'
folder = "tmp/your-folder/"
zipfile_name = "tmp/archive.zip"

input_filenames = Dir.entries("tmp/your-folder/").select {|f| !File.directory? f} 

Zip::File.open(zipfile_name, Zip::File::CREATE) do |zipfile|
  input_filenames.each do |filename|
  zipfile.add(filename, folder + '/' + filename)
end

zipfile.get_output_stream("myFile") { |os| os.write "myFile contains just this" }
end

只需将文件发送给用户即可。但如果PDF包含大量数据,则将其移至延迟作业。 希望这是有道理的,但如果不是,请点击回复。