summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-02-10 11:15:34 +0100
committerJames Lopez <james@jameslopez.es>2016-02-10 11:15:34 +0100
commit0c25846d9c9a1efe78dfe229a91ed62459e2f9a5 (patch)
tree1aaa2337b8885104462102048f2cf17a84416132
parent79e05b2848fd3700e5cc89dfe2f4d16e4d74d5d8 (diff)
parent6a88498bf9175276aaf09976dfd19f312454fc05 (diff)
downloadgitlab-shell-0c25846d9c9a1efe78dfe229a91ed62459e2f9a5.tar.gz
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-shell into fix/ruby-2.2-webrick
-rw-r--r--config.yml.example5
-rw-r--r--lib/gitlab_net.rb26
-rw-r--r--spec/gitlab_net_spec.rb2
3 files changed, 24 insertions, 9 deletions
diff --git a/config.yml.example b/config.yml.example
index a7e8d8a..eff354d 100644
--- a/config.yml.example
+++ b/config.yml.example
@@ -6,8 +6,8 @@
# GitLab user. git by default
user: git
-# Url to gitlab instance. Used for api calls.
-# Default: http://localhost:8080
+# URL to GitLab instance, used for API calls. Default: http://localhost:8080.
+# For relative URL support read http://doc.gitlab.com/ce/install/relative_url.html
# You only have to change the default if you have configured Unicorn
# to listen on a custom port, or if you have configured Unicorn to
# only listen on a Unix domain socket. For Unix domain sockets use
@@ -17,6 +17,7 @@ gitlab_url: "http://localhost:8080"
# See installation.md#using-https for additional HTTPS configuration details.
http_settings:
+# read_timeout: 300
# user: someone
# password: somepass
# ca_file: /etc/ssl/cert.pem
diff --git a/lib/gitlab_net.rb b/lib/gitlab_net.rb
index 6f47938..71e113b 100644
--- a/lib/gitlab_net.rb
+++ b/lib/gitlab_net.rb
@@ -10,6 +10,9 @@ require_relative 'httpunix'
class GitlabNet
class ApiUnreachableError < StandardError; end
+ CHECK_TIMEOUT = 5
+ READ_TIMEOUT = 300
+
def check_access(cmd, repo, actor, changes)
project_name = repo.gsub("'", "")
project_name = project_name.gsub(/\.git\Z/, "")
@@ -50,7 +53,7 @@ class GitlabNet
end
def check
- get("#{host}/check")
+ get("#{host}/check", read_timeout: CHECK_TIMEOUT)
end
protected
@@ -63,13 +66,15 @@ class GitlabNet
"#{config.gitlab_url}/api/v3/internal"
end
- def http_client_for(uri)
+ def http_client_for(uri, options={})
if uri.is_a?(URI::HTTPUNIX)
http = Net::HTTPUNIX.new(uri.hostname)
else
http = Net::HTTP.new(uri.host, uri.port)
end
+ http.read_timeout = options[:read_timeout] || read_timeout
+
if uri.is_a?(URI::HTTPS)
http.use_ssl = true
http.cert_store = cert_store
@@ -92,19 +97,24 @@ class GitlabNet
request
end
- def request(method, url, params = {})
+ def request(method, url, params = {}, options={})
$logger.debug "Performing #{method.to_s.upcase} #{url}"
uri = URI.parse(url)
- http = http_client_for(uri)
+ http = http_client_for(uri, options)
request = http_request_for(method, uri, params)
begin
+ start_time = Time.new
response = http.start { http.request(request) }
rescue => e
$logger.warn "Failed to connect to internal API <#{method.to_s.upcase} #{url}>: #{e.inspect}"
raise ApiUnreachableError
+ ensure
+ $logger.info do
+ sprintf('%s %s %0.5f', method.to_s.upcase, url, Time.new - start_time)
+ end
end
if response.code == "200"
@@ -116,8 +126,8 @@ class GitlabNet
response
end
- def get(url)
- request(:get, url)
+ def get(url, options={})
+ request(:get, url, {}, options)
end
def post(url, params)
@@ -144,4 +154,8 @@ class GitlabNet
def secret_token
@secret_token ||= File.read config.secret_file
end
+
+ def read_timeout
+ config.http_settings['read_timeout'] || READ_TIMEOUT
+ end
end
diff --git a/spec/gitlab_net_spec.rb b/spec/gitlab_net_spec.rb
index 3c2cea2..2d9b544 100644
--- a/spec/gitlab_net_spec.rb
+++ b/spec/gitlab_net_spec.rb
@@ -143,7 +143,7 @@ describe GitlabNet, vcr: true do
subject { gitlab_net.send :http_client_for, URI('https://localhost/') }
before do
gitlab_net.stub! :cert_store
- gitlab_net.send(:config).http_settings.stub(:[]).with('self_signed_cert') { true }
+ gitlab_net.send(:config).stub(:http_settings) { {'self_signed_cert' => true} }
end
its(:verify_mode) { should eq(OpenSSL::SSL::VERIFY_NONE) }