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.
63 lines
2.4 KiB
63 lines
2.4 KiB
# frozen_string_literal: true
|
|
|
|
module Submitters
|
|
module SerializeForApi
|
|
SERIALIZE_PARAMS = {
|
|
only: %i[id slug uuid name email phone completed_at declined_at external_id
|
|
submission_id metadata opened_at sent_at created_at updated_at],
|
|
methods: %i[status application_key]
|
|
}.freeze
|
|
|
|
module_function
|
|
|
|
def call(submitter, with_template: false, with_events: false, with_documents: true, with_urls: false,
|
|
with_values: true, params: {}, expires_at: Accounts.link_expires_at(Account.new(id: submitter.account_id)))
|
|
ActiveRecord::Associations::Preloader.new(
|
|
records: [submitter],
|
|
associations: if with_documents
|
|
[documents_attachments: :blob, attachments_attachments: :blob]
|
|
elsif with_values
|
|
[attachments_attachments: :blob]
|
|
end
|
|
).call
|
|
|
|
additional_attrs = {}
|
|
|
|
if params[:include].to_s.include?('fields')
|
|
additional_attrs['fields'] = SerializeForWebhook.build_fields_array(submitter, expires_at:)
|
|
end
|
|
|
|
if with_template
|
|
additional_attrs['template'] = submitter.submission.template.as_json(only: %i[id name created_at updated_at])
|
|
end
|
|
|
|
additional_attrs['values'] = SerializeForWebhook.build_values_array(submitter, expires_at:) if with_values
|
|
|
|
if with_documents
|
|
additional_attrs['documents'] = SerializeForWebhook.build_documents_array(submitter, expires_at:)
|
|
end
|
|
|
|
additional_attrs['preferences'] = submitter.preferences.except('default_values')
|
|
additional_attrs['submission_events'] = serialize_events(submitter.submission_events) if with_events
|
|
|
|
additional_attrs['role'] =
|
|
(submitter.submission.template_submitters ||
|
|
submitter.submission.template.submitters).find { |e| e['uuid'] == submitter.uuid }['name']
|
|
|
|
if with_urls
|
|
additional_attrs['embed_src'] =
|
|
Rails.application.routes.url_helpers.submit_form_url(slug: submitter.slug, **Docuseal.default_url_options)
|
|
end
|
|
|
|
submitter.as_json(SERIALIZE_PARAMS).merge(additional_attrs)
|
|
end
|
|
|
|
def serialize_events(events)
|
|
events.map do |event|
|
|
event.as_json(only: %i[id submitter_id event_type event_timestamp])
|
|
.merge('data' => event.data.slice('reason', 'firstname', 'lastname', 'method', 'country'))
|
|
end
|
|
end
|
|
end
|
|
end
|