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.
65 lines
1.9 KiB
65 lines
1.9 KiB
# frozen_string_literal: true
|
|
|
|
module Templates
|
|
module CreateAttachments
|
|
PDF_CONTENT_TYPE = 'application/pdf'
|
|
ANNOTATIONS_SIZE_LIMIT = 6.megabytes
|
|
InvalidFileType = Class.new(StandardError)
|
|
PdfEncrypted = Class.new(StandardError)
|
|
|
|
module_function
|
|
|
|
def call(template, params)
|
|
Array.wrap(params[:files].presence || params[:file]).map do |file|
|
|
if file.content_type.exclude?('image') && file.content_type != PDF_CONTENT_TYPE
|
|
next handle_file_types(template, file, params)
|
|
end
|
|
|
|
handle_pdf_or_image(template, file, file.read, params)
|
|
end
|
|
end
|
|
|
|
def handle_pdf_or_image(template, file, document_data = nil, params = {})
|
|
document_data ||= file.read
|
|
|
|
if file.content_type == PDF_CONTENT_TYPE
|
|
document_data = maybe_decrypt_pdf_or_raise(document_data, params)
|
|
|
|
annotations =
|
|
document_data.size < ANNOTATIONS_SIZE_LIMIT ? Templates::BuildAnnotations.call(document_data) : []
|
|
end
|
|
|
|
sha256 = Base64.urlsafe_encode64(Digest::SHA256.digest(document_data))
|
|
|
|
blob = ActiveStorage::Blob.create_and_upload!(
|
|
io: StringIO.new(document_data),
|
|
filename: file.original_filename,
|
|
metadata: {
|
|
identified: file.content_type == PDF_CONTENT_TYPE,
|
|
analyzed: file.content_type == PDF_CONTENT_TYPE,
|
|
pdf: { annotations: }.compact_blank, sha256:
|
|
}.compact_blank,
|
|
content_type: file.content_type
|
|
)
|
|
|
|
document = template.documents.create!(blob:)
|
|
|
|
Templates::ProcessDocument.call(document, document_data)
|
|
end
|
|
|
|
def maybe_decrypt_pdf_or_raise(data, params)
|
|
if data.size < ANNOTATIONS_SIZE_LIMIT && PdfUtils.encrypted?(data)
|
|
PdfUtils.decrypt(data, params[:password])
|
|
else
|
|
data
|
|
end
|
|
rescue HexaPDF::EncryptionError
|
|
raise PdfEncrypted
|
|
end
|
|
|
|
def handle_file_types(_template, file, _params)
|
|
raise InvalidFileType, file.content_type
|
|
end
|
|
end
|
|
end
|