私はDjangoに少し慣れていないので、ご容赦ください。ここ
から zipstream を使用しており、すべて Amazon S3 でホストされているすべての添付ファイルの zip ファイルを返す Django ビューがあります。しかし、zip ファイルをダウンロードすると、すべてが破損していると表示されます。つまり、開くことができません。でファイルを検証しようとしましたが、エラーはあまり役に立ちません。unzip -t
file_paths = [fa.file.url for fa in file_attachments.all()]
zf = zipstream.ZipFile(mode='w', compression=zipstream.ZIP_DEFLATED)
zip_subdir = "Attachments-%s" % (request_id)
for file_path in file_paths:
file_dir, file_name = os.path.split(file_path)
zf.writestr(file_name, urllib.urlopen(file_path).read())
zip_filename = "%s.zip" % (zip_subdir)
response = StreamingHttpResponse(zf, mimetype='application/zip')
response['Content-Disposition'] = \
'attachment; filename={}'.format(zip_filename)
return response
何か案は?
解決しました。
s = StringIO.StringIO()
with zipstream.ZipFile(s, mode='w', compression=zipstream.ZIP_DEFLATED) as zf:
#could fail on url open.
for file_path in file_paths:
file_dir, file_name = os.path.split(file_path)
try:
file_contents = urllib.urlopen(file_path).read()
zf.writestr(file_name, file_contents)
except IOError: #connection cannot be made
logging.error()
response = StreamingHttpResponse(s.getvalue(), mimetype='application/octet-stream')
response['Content-Disposition'] = \
'attachment; filename={}'.format("%s" % (request_id))
return response