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.
25 lines
788 B
25 lines
788 B
# frozen_string_literal: true
|
|
|
|
class SendWebhookRequestJob < ApplicationJob
|
|
USER_AGENT = 'DocuSeal.co Webhook'
|
|
|
|
def perform(submitter)
|
|
config = submitter.submission.account.encrypted_configs.find_by(key: EncryptedConfig::WEBHOOK_URL_KEY)
|
|
|
|
return if config.blank? || config.value.blank?
|
|
|
|
Submissions::EnsureResultGenerated.call(submitter)
|
|
|
|
ActiveStorage::Current.url_options = Docuseal.default_url_options
|
|
|
|
Faraday.post(config.value,
|
|
{
|
|
event_type: 'form.submitted',
|
|
timestamp: Time.current.iso8601,
|
|
data: Submitters::SerializeForWebhook.call(submitter)
|
|
}.to_json,
|
|
'Content-Type' => 'application/json',
|
|
'User-Agent' => USER_AGENT)
|
|
end
|
|
end
|