debian-mirror-gitlab/lib/gitlab/http.rb

75 lines
2.5 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-26 14:24:53 +05:30
# This class is used as a proxy for all outbounding http connection
# coming from callbacks, services and hooks. The direct use of the HTTParty
# is discouraged because it can lead to several security problems, like SSRF
# calling internal IP or services.
module Gitlab
class HTTP
2018-05-09 12:01:36 +05:30
BlockedUrlError = Class.new(StandardError)
2018-12-13 13:39:08 +05:30
RedirectionTooDeep = Class.new(StandardError)
2021-07-02 01:05:55 +05:30
ReadTotalTimeout = Class.new(Net::ReadTimeout)
2018-05-09 12:01:36 +05:30
2020-10-24 23:57:45 +05:30
HTTP_TIMEOUT_ERRORS = [
2021-07-02 01:05:55 +05:30
Net::OpenTimeout, Net::ReadTimeout, Net::WriteTimeout, Gitlab::HTTP::ReadTotalTimeout
2020-10-24 23:57:45 +05:30
].freeze
HTTP_ERRORS = HTTP_TIMEOUT_ERRORS + [
2019-09-30 21:07:59 +05:30
SocketError, OpenSSL::SSL::SSLError, OpenSSL::OpenSSLError,
Errno::ECONNRESET, Errno::ECONNREFUSED, Errno::EHOSTUNREACH,
2020-10-24 23:57:45 +05:30
Gitlab::HTTP::BlockedUrlError, Gitlab::HTTP::RedirectionTooDeep
2019-09-04 21:01:54 +05:30
].freeze
2020-10-24 23:57:45 +05:30
DEFAULT_TIMEOUT_OPTIONS = {
open_timeout: 10,
read_timeout: 20,
write_timeout: 30
}.freeze
2021-07-02 01:05:55 +05:30
DEFAULT_READ_TOTAL_TIMEOUT = 20.seconds
2020-10-24 23:57:45 +05:30
2018-03-26 14:24:53 +05:30
include HTTParty # rubocop:disable Gitlab/HTTParty
2020-10-24 23:57:45 +05:30
class << self
alias_method :httparty_perform_request, :perform_request
end
2019-06-05 12:25:43 +05:30
connection_adapter HTTPConnectionAdapter
2018-12-13 13:39:08 +05:30
def self.perform_request(http_method, path, options, &block)
2020-10-24 23:57:45 +05:30
log_info = options.delete(:extra_log_info)
options_with_timeouts =
2020-11-24 15:15:51 +05:30
if !options.has_key?(:timeout)
2020-10-24 23:57:45 +05:30
options.with_defaults(DEFAULT_TIMEOUT_OPTIONS)
else
options
end
2021-07-02 01:05:55 +05:30
unless options.has_key?(:use_read_total_timeout)
return httparty_perform_request(http_method, path, options_with_timeouts, &block)
end
start_time = Gitlab::Metrics::System.monotonic_time
read_total_timeout = options.fetch(:timeout, DEFAULT_READ_TOTAL_TIMEOUT)
httparty_perform_request(http_method, path, options_with_timeouts) do |fragment|
elapsed = Gitlab::Metrics::System.monotonic_time - start_time
raise ReadTotalTimeout, "Request timed out after #{elapsed} seconds" if elapsed > read_total_timeout
block.call fragment if block
end
2018-12-13 13:39:08 +05:30
rescue HTTParty::RedirectionTooDeep
raise RedirectionTooDeep
2020-04-22 19:07:51 +05:30
rescue *HTTP_ERRORS => e
extra_info = log_info || {}
extra_info = log_info.call(e, path, options) if log_info.respond_to?(:call)
Gitlab::ErrorTracking.log_exception(e, extra_info)
2020-10-24 23:57:45 +05:30
raise e
end
def self.try_get(path, options = {}, &block)
self.get(path, options, &block)
rescue *HTTP_ERRORS
2020-04-22 19:07:51 +05:30
nil
end
2018-03-26 14:24:53 +05:30
end
end