2020-02-14 17:49:17 +00:00
|
|
|
class Webhooks::Trigger
|
|
|
|
def self.execute(url, payload)
|
2020-07-21 06:45:24 +00:00
|
|
|
RestClient.post(url, payload.to_json, { content_type: :json, accept: :json })
|
2020-10-11 14:52:21 +00:00
|
|
|
rescue *ExceptionList::REST_CLIENT_EXCEPTIONS, *ExceptionList::URI_EXCEPTIONS => e
|
2020-09-18 13:20:53 +00:00
|
|
|
Rails.logger.info "Exception: invalid webhook url #{url} : #{e.message}"
|
2020-02-14 17:49:17 +00:00
|
|
|
rescue StandardError => e
|
|
|
|
Raven.capture_exception(e)
|
|
|
|
end
|
|
|
|
end
|