Sha256: 81742e713afea1560ce747b5555363f0f0ca8b155205deafccdcea11be008595
Contents?: true
Size: 1.65 KB
Versions: 7
Compression:
Stored size: 1.65 KB
Contents
module Webhooks::Outgoing::DeliveryAttemptSupport extend ActiveSupport::Concern include Webhooks::Outgoing::UriFiltering SUCCESS_RESPONSE_CODES = [200, 201, 202, 203, 204, 205, 206, 207, 226].freeze included do belongs_to :delivery has_one :team, through: :delivery unless BulletTrain::OutgoingWebhooks.parent_class_specified? scope :successful, -> { where(response_code: SUCCESS_RESPONSE_CODES) } before_create do self.attempt_number = delivery.attempt_count + 1 end validates :response_code, presence: true end def still_attempting? error_message.nil? && response_code.nil? end def successful? SUCCESS_RESPONSE_CODES.include?(response_code) end def failed? !(successful? || still_attempting?) end def attempt uri = URI.parse(delivery.endpoint_url) unless allowed_uri?(uri) self.response_code = 0 self.error_message = "URI is not allowed: " + uri return false end http = Net::HTTP.new(resolve_ip_from_authoritative(uri.hostname.downcase), uri.port) http.use_ssl = true if uri.scheme == "https" request = Net::HTTP::Post.new(uri.path) request.add_field("Host", uri.host) request.add_field("Content-Type", "application/json") request.body = delivery.event.payload.to_json begin response = http.request(request) self.response_message = response.message self.response_code = response.code self.response_body = response.body rescue => exception self.response_code = 0 self.error_message = exception.message end save successful? end def label_string "#{attempt_number.ordinalize} Attempt" end end
Version data entries
7 entries across 7 versions & 1 rubygems