mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
27 lines
697 B
Ruby
27 lines
697 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ZipExportsController < ApplicationController
|
|
before_action :load_var, only: %i(download download_export_all_zip)
|
|
# File download permissions are now managed by ActiveStorage controllers
|
|
|
|
def download
|
|
if !@zip_export.zip_file.attached?
|
|
render_404
|
|
else
|
|
redirect_to rails_blob_path(@zip_export.zip_file, disposition: 'attachment')
|
|
end
|
|
end
|
|
|
|
def download_export_all_zip
|
|
download
|
|
end
|
|
|
|
def file_expired; end
|
|
|
|
private
|
|
|
|
def load_var
|
|
@zip_export = current_user.zip_exports.find_by_id(params[:id])
|
|
redirect_to(file_expired_url, status: :moved_permanently) and return unless @zip_export&.zip_file&.attached?
|
|
end
|
|
end
|