Module: Webhooks::Outgoing::DeliveryAttemptSupport
- Extended by:
- ActiveSupport::Concern
- Includes:
- UriFiltering
- Included in:
- DeliveryAttempt
- Defined in:
- app/models/concerns/webhooks/outgoing/delivery_attempt_support.rb
Constant Summary
collapse
- SUCCESS_RESPONSE_CODES =
[200, 201, 202, 203, 204, 205, 206, 207, 226].freeze
Instance Method Summary
collapse
#_allowed_uri?, #allowed_uri?, #resolve_ip_from_authoritative
Instance Method Details
#attempt ⇒ Object
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# File 'app/models/concerns/webhooks/outgoing/delivery_attempt_support.rb', line 31
def attempt
uri = URI.parse(delivery.endpoint_url)
if BulletTrain::OutgoingWebhooks.advanced_hostname_security
unless allowed_uri?(uri)
self.response_code = 0
self.error_message = "URI is not allowed: " + uri
save
return false
end
end
hostname = if BulletTrain::OutgoingWebhooks.advanced_hostname_security
resolve_ip_from_authoritative(uri.hostname.downcase)
else
uri.hostname.downcase
end
if uri.path == ""
uri.path = "/"
end
http = Net::HTTP.new(hostname, uri.port)
if uri.scheme == "https"
http.use_ssl = true
if BulletTrain::OutgoingWebhooks.http_verify_mode
http.verify_mode = BulletTrain::OutgoingWebhooks.http_verify_mode
end
end
request = Net::HTTP::Post.new(uri.request_uri)
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
|
#failed? ⇒ Boolean
27
28
29
|
# File 'app/models/concerns/webhooks/outgoing/delivery_attempt_support.rb', line 27
def failed?
!(successful? || still_attempting?)
end
|
#label_string ⇒ Object
81
82
83
|
# File 'app/models/concerns/webhooks/outgoing/delivery_attempt_support.rb', line 81
def label_string
"#{attempt_number.ordinalize} Attempt"
end
|
#still_attempting? ⇒ Boolean
19
20
21
|
# File 'app/models/concerns/webhooks/outgoing/delivery_attempt_support.rb', line 19
def still_attempting?
error_message.nil? && response_code.nil?
end
|
#successful? ⇒ Boolean
23
24
25
|
# File 'app/models/concerns/webhooks/outgoing/delivery_attempt_support.rb', line 23
def successful?
SUCCESS_RESPONSE_CODES.include?(response_code)
end
|