mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.6 KiB
85 lines
2.6 KiB
# frozen_string_literal: true
|
|
|
|
class SubmissionsDownloadController < ApplicationController
|
|
skip_before_action :authenticate_user!
|
|
skip_authorization_check
|
|
|
|
TTL = 40.minutes
|
|
FILES_TTL = 5.minutes
|
|
|
|
def index
|
|
submitter = Submitter.find_signed(params[:sig], purpose: :download_completed) if params[:sig].present?
|
|
|
|
signature_valid =
|
|
if submitter&.slug == params[:submitter_slug]
|
|
true
|
|
else
|
|
submitter = nil
|
|
end
|
|
|
|
submitter ||= Submitter.find_by!(slug: params[:submitter_slug])
|
|
|
|
Submissions::EnsureResultGenerated.call(submitter)
|
|
|
|
last_submitter = submitter.submission.submitters.where.not(completed_at: nil).order(:completed_at).last
|
|
|
|
Submissions::EnsureResultGenerated.call(last_submitter)
|
|
|
|
return head :not_found unless last_submitter.completed_at?
|
|
|
|
if last_submitter.completed_at < TTL.ago && !signature_valid && !current_user_submitter?(last_submitter)
|
|
Rollbar.info("TTL: #{last_submitter.id}") if defined?(Rollbar)
|
|
|
|
return head :not_found
|
|
end
|
|
|
|
if params[:combined] == 'true'
|
|
url = build_combined_url(submitter)
|
|
|
|
if url
|
|
render json: [url]
|
|
else
|
|
head :not_found
|
|
end
|
|
else
|
|
render json: build_urls(last_submitter)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def current_user_submitter?(submitter)
|
|
current_user && current_user.account.submitters.exists?(id: submitter.id)
|
|
end
|
|
|
|
def build_urls(submitter)
|
|
filename_format = AccountConfig.find_or_initialize_by(account_id: submitter.account_id,
|
|
key: AccountConfig::DOCUMENT_FILENAME_FORMAT_KEY)&.value
|
|
|
|
Submitters.select_attachments_for_download(submitter).map do |attachment|
|
|
ActiveStorage::Blob.proxy_url(
|
|
attachment.blob,
|
|
expires_at: FILES_TTL.from_now.to_i,
|
|
filename: Submitters.build_document_filename(submitter, attachment.blob, filename_format)
|
|
)
|
|
end
|
|
end
|
|
|
|
def build_combined_url(submitter)
|
|
return if submitter.submission.submitters.exists?(completed_at: nil)
|
|
return if submitter.submission.submitters.order(:completed_at).last != submitter
|
|
|
|
attachment = submitter.submission.combined_document_attachment
|
|
attachment ||= Submissions::GenerateCombinedAttachment.call(submitter)
|
|
|
|
filename_format = AccountConfig.find_or_initialize_by(account_id: submitter.account_id,
|
|
key: AccountConfig::DOCUMENT_FILENAME_FORMAT_KEY)&.value
|
|
|
|
ActiveStorage::Blob.proxy_url(
|
|
attachment.blob,
|
|
expires_at: FILES_TTL.from_now.to_i,
|
|
filename: Submitters.build_document_filename(submitter, attachment.blob, filename_format)
|
|
)
|
|
end
|
|
end
|