2019-04-30 06:43:34 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-21 23:15:11 +08:00
|
|
|
class ZipExportsController < ApplicationController
|
2019-04-30 06:43:34 +08:00
|
|
|
before_action :load_var, only: %i(download download_export_all_zip)
|
2019-08-01 19:17:24 +08:00
|
|
|
# File download permissions are now managed by ActiveStorage controllers
|
2017-03-21 23:15:11 +08:00
|
|
|
|
|
|
|
def download
|
2019-07-05 22:56:05 +08:00
|
|
|
if !@zip_export.zip_file.attached?
|
|
|
|
render_404
|
2017-03-23 22:45:02 +08:00
|
|
|
else
|
2019-07-05 22:56:05 +08:00
|
|
|
redirect_to rails_blob_path(@zip_export.zip_file, disposition: 'attachment')
|
2017-03-23 22:45:02 +08:00
|
|
|
end
|
2017-03-21 23:15:11 +08:00
|
|
|
end
|
|
|
|
|
2018-09-17 02:28:26 +08:00
|
|
|
def download_export_all_zip
|
|
|
|
download
|
|
|
|
end
|
|
|
|
|
2017-03-29 15:32:23 +08:00
|
|
|
def file_expired; end
|
2017-03-27 16:38:28 +08:00
|
|
|
|
2017-03-21 23:15:11 +08:00
|
|
|
private
|
|
|
|
|
|
|
|
def load_var
|
2019-04-30 06:43:34 +08:00
|
|
|
@zip_export = current_user.zip_exports.find_by_id(params[:id])
|
2019-09-23 19:33:02 +08:00
|
|
|
redirect_to(file_expired_url, status: :moved_permanently) and return unless @zip_export&.zip_file&.attached?
|
2018-09-17 02:28:26 +08:00
|
|
|
end
|
2017-03-21 23:15:11 +08:00
|
|
|
end
|