class Slack::Notifier::Util::HTTPClient

Attributes

http_options[R]
params[R]
uri[R]

Public Class Methods

new(uri, params) click to toggle source
# File lib/slack-notifier/util/http_client.rb, line 19
def initialize uri, params
  @uri          = uri
  @http_options = params.delete(:http_options) || {}
  @params       = params
end
post(uri, params) click to toggle source
# File lib/slack-notifier/util/http_client.rb, line 12
def post uri, params
  HTTPClient.new(uri, params).call
end

Public Instance Methods

call() click to toggle source

rubocop:disable Layout/IndentHeredoc

# File lib/slack-notifier/util/http_client.rb, line 26
        def call
          http_obj.request(request_obj).tap do |response|
            unless response.is_a?(Net::HTTPSuccess)
              raise Slack::Notifier::APIError, <<-MSG
The slack API returned an error: #{response.body} (HTTP Code #{response.code})
Check the "Handling Errors" section on https://api.slack.com/incoming-webhooks for more information
MSG
            end
          end
        end

Private Instance Methods

http_obj() click to toggle source
# File lib/slack-notifier/util/http_client.rb, line 47
def http_obj
  http = Net::HTTP.new uri.host, uri.port
  http.use_ssl = (uri.scheme == "https")

  http_options.each do |opt, val|
    if http.respond_to? "#{opt}="
      http.send "#{opt}=", val
    else
      warn "Net::HTTP doesn't respond to `#{opt}=`, ignoring that option"
    end
  end

  http
end
request_obj() click to toggle source

rubocop:enable Layout/IndentHeredoc

# File lib/slack-notifier/util/http_client.rb, line 40
def request_obj
  req = Net::HTTP::Post.new uri.request_uri
  req.set_form_data params

  req
end