Class: Noticed::DeliveryMethods::Slack
Constant Summary
collapse
- DEFAULT_URL =
"https://slack.com/api/chat.postMessage"
Instance Attribute Summary
#config, #event, #notification
Instance Method Summary
collapse
#evaluate_option, #fetch_constant, #perform
Methods included from ApiClient
#post_request
Instance Method Details
#deliver ⇒ Object
8
9
10
11
12
13
14
15
16
17
18
|
# File 'lib/noticed/delivery_methods/slack.rb', line 8
def deliver
= evaluate_option(:headers)
json = evaluate_option(:json)
response = post_request url, headers: , json: json
if raise_if_not_ok?
raise ResponseUnsuccessful.new(response, url, {headers: , json: json}) unless JSON.parse(response.body)["ok"]
end
response
end
|
#raise_if_not_ok? ⇒ Boolean
24
25
26
27
|
# File 'lib/noticed/delivery_methods/slack.rb', line 24
def raise_if_not_ok?
value = evaluate_option(:raise_if_not_ok)
value.nil? ? true : value
end
|
#url ⇒ Object
20
21
22
|
# File 'lib/noticed/delivery_methods/slack.rb', line 20
def url
evaluate_option(:url) || DEFAULT_URL
end
|