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.
40 lines
1.1 KiB
40 lines
1.1 KiB
# frozen_string_literal: true
|
|
|
|
module Templates
|
|
module BuildAnnotations
|
|
module_function
|
|
|
|
def call(data)
|
|
pdf = PDF::Reader.new(StringIO.new(data))
|
|
|
|
pdf.pages.flat_map.with_index do |page, index|
|
|
annotations = page.objects.deref!(page.attributes[:Annots]) || []
|
|
annotations.filter_map do |annot|
|
|
next if annot[:A].blank? || annot[:A][:URI].blank?
|
|
next unless annot[:Subtype] == :Link
|
|
next if !annot[:A][:URI].starts_with?('https://') && !annot[:A][:URI].starts_with?('http://')
|
|
|
|
build_external_link_hash(page, annot).merge('page' => index)
|
|
end
|
|
end
|
|
rescue StandardError => e
|
|
Rollbar.error(e) if defined?(Rollbar)
|
|
|
|
[]
|
|
end
|
|
|
|
def build_external_link_hash(page, annot)
|
|
left, bottom, right, top = annot[:Rect]
|
|
|
|
{
|
|
'type' => 'external_link',
|
|
'value' => annot[:A][:URI],
|
|
'x' => left / page.width,
|
|
'y' => (page.height - top) / page.height,
|
|
'w' => (right - left) / page.width,
|
|
'h' => (top - bottom) / page.height
|
|
}
|
|
end
|
|
end
|
|
end
|