2019-04-30 00:43:34 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-21 16:15:11 +01:00
|
|
|
class ZipExportsController < ApplicationController
|
2019-04-30 00:43:34 +02:00
|
|
|
before_action :load_var, only: %i(download download_export_all_zip)
|
|
|
|
before_action :check_download_permissions, except: :file_expired
|
2017-03-21 16:15:11 +01:00
|
|
|
|
|
|
|
def download
|
2017-03-23 15:45:02 +01:00
|
|
|
if @zip_export.stored_on_s3?
|
|
|
|
redirect_to @zip_export.presigned_url(download: true), status: 307
|
|
|
|
else
|
|
|
|
send_file @zip_export.zip_file.path,
|
|
|
|
filename: URI.unescape(@zip_export.zip_file_file_name),
|
2017-04-26 13:23:30 +02:00
|
|
|
type: 'application/zip'
|
2017-03-23 15:45:02 +01:00
|
|
|
end
|
2017-03-21 16:15:11 +01:00
|
|
|
end
|
|
|
|
|
2018-09-16 20:28:26 +02:00
|
|
|
def download_export_all_zip
|
|
|
|
download
|
|
|
|
end
|
|
|
|
|
2017-03-29 09:32:23 +02:00
|
|
|
def file_expired; end
|
2017-03-27 10:38:28 +02:00
|
|
|
|
2017-03-21 16:15:11 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def load_var
|
2019-04-30 00:43:34 +02:00
|
|
|
@zip_export = current_user.zip_exports.find_by_id(params[:id])
|
|
|
|
redirect_to(file_expired_url, status: 301) and return unless @zip_export&.zip_file&.exists?
|
2018-09-16 20:28:26 +02:00
|
|
|
end
|
|
|
|
|
2019-04-30 00:43:34 +02:00
|
|
|
def check_download_permissions
|
2017-03-21 16:15:11 +01:00
|
|
|
render_403 unless @zip_export.user == current_user
|
|
|
|
end
|
|
|
|
end
|