04dfb034cc
- Upgrade Sentry Libraries - Enable provision for account and user info in error tracking - Add ChatwootExceptionTracker fixes: #4375
16 lines
633 B
Ruby
16 lines
633 B
Ruby
class Webhooks::Trigger
|
|
def self.execute(url, payload)
|
|
response = RestClient::Request.execute(
|
|
method: :post,
|
|
url: url, payload: payload.to_json,
|
|
headers: { content_type: :json, accept: :json },
|
|
timeout: 5
|
|
)
|
|
Rails.logger.info "Performed Request: Code - #{response.code}"
|
|
rescue *ExceptionList::REST_CLIENT_EXCEPTIONS, URI::InvalidURIError => e
|
|
Rails.logger.error "Exception: invalid webhook url #{url} : #{e.message}"
|
|
rescue StandardError => e
|
|
Rails.logger.error "Exception: invalid webhook url #{url} : #{e.message}"
|
|
ChatwootExceptionTracker.new(e).capture_exception
|
|
end
|
|
end
|