我想在压缩后从我的网站下载照片。我正在使用 rubyZip gem,但无法压缩远程文件。以下是方案:
我正在尝试从服务器压缩内容。内容是这样的
http://myApplication.s3.amazonaws.com/xxxxxxxx/image/image1.jpeg,
所以在"zipfile.add( attachment.document_file_name, attachment.document.url)"中,我分配了以下值:
document_file_name = 图像 1.jpeg/图像2.jpeg/图像 3.jpegdocument.url = http://myApplication.s3.amazonaws.com/xxxxxxxx/image
现在在这里我收到以下错误:
没有这样的文件或目录 - myApplication.s3.amazonaws.com/xxxxxxxx/image
如果我从本地文件系统(例如:/home/user/images)压缩文件,则此 gem 工作正常,但不适用于远程文件。
我做错了什么吗?有人可以帮助我吗? 或者任何其他宝石可以做到这一点?
谢谢-塔尼亚特
做的是先从 s3 读取它,将其直接写入存档文件(将存档文件放入您的临时目录),提供它然后删除临时存档文件。这里有一个小片段:
require 'zip/zip'
s3 = Aws::S3.new(S3_KEY, S3_SECRET)
bucket_gen = Aws::S3Generator::Bucket.create(s3, S3_BUCKET)
archive_file = "#{Rails.root}/tmp/archive.zip"
Zip::ZipOutputStream.open(archive_file) do |zos|
list_of_files_to_loop.each do |file|
filename = file.filename
url = "#{S3_PATH}/#{filename}"
signed_url = bucket_gen.get(URI.unescape(URI.parse(URI.escape(url)).path[1..-1]), 1.minute)
zos.put_next_entry(filename) # Give it next file a filename
zos.print(URI.parse(signed_url).read) # Add file to zip
end
end # Write zip file
# TODO: Serve file
# TODO: Delete archived file from tmp directory
参考:http://rubyzip.sourceforge.net/classes/Zip/ZipOutputStream.html