2021-04-17 20:07:23 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
module Integrations
|
|
|
|
module SlackMattermostNotifier
|
2021-04-17 20:07:23 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def notify(message, opts)
|
|
|
|
# See https://gitlab.com/gitlab-org/slack-notifier/#custom-http-client
|
2021-09-04 01:27:46 +05:30
|
|
|
notifier = ::Slack::Messenger.new(webhook, opts.merge(http_client: HTTPClient))
|
2021-04-17 20:07:23 +05:30
|
|
|
notifier.ping(
|
|
|
|
message.pretext,
|
|
|
|
attachments: message.attachments,
|
|
|
|
fallback: message.fallback
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
class HTTPClient
|
|
|
|
def self.post(uri, params = {})
|
|
|
|
params.delete(:http_options) # these are internal to the client and we do not want them
|
2021-07-02 01:05:55 +05:30
|
|
|
Gitlab::HTTP.post(uri, body: params, use_read_total_timeout: true)
|
2021-04-17 20:07:23 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|