summaryrefslogtreecommitdiff
path: root/lib/gitlab/danger/request_helper.rb
blob: ef51c3f2052fde056f1c8f1b7565a95310e53bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'net/http'
require 'json'

module Gitlab
  module Danger
    module RequestHelper
      HTTPError = Class.new(RuntimeError)

      # @param [String] url
      def self.http_get_json(url)
        rsp = Net::HTTP.get_response(URI.parse(url))

        unless rsp.is_a?(Net::HTTPOK)
          raise HTTPError, "Failed to read #{url}: #{rsp.code} #{rsp.message}"
        end

        Gitlab::Json.parse(rsp.body)
      end
    end
  end
end