Module: Percy::Client::Connection
- Included in:
- Percy::Client
- Defined in:
- lib/percy/client/connection.rb
Defined Under Namespace
Classes: NiceErrorMiddleware
Instance Method Summary
collapse
Instance Method Details
#_api_version ⇒ Object
146
147
148
|
# File 'lib/percy/client/connection.rb', line 146
def _api_version
config.api_url.match(/\w+$/).to_s
end
|
117
118
119
120
121
122
|
# File 'lib/percy/client/connection.rb', line 117
def
{
'Content-Type' => 'application/vnd.api+json',
'User-Agent' => _user_agent,
}
end
|
#_reset_user_agent ⇒ Object
142
143
144
|
# File 'lib/percy/client/connection.rb', line 142
def _reset_user_agent
@_user_agent = nil
end
|
#_ruby_version ⇒ Object
150
151
152
|
# File 'lib/percy/client/connection.rb', line 150
def _ruby_version
"#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}"
end
|
#_user_agent ⇒ Object
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
# File 'lib/percy/client/connection.rb', line 124
def _user_agent
@_user_agent ||= begin
client = [
"Percy/#{_api_version}",
client_info,
"percy-client/#{VERSION}",
].compact.join(' ')
environment = [
environment_info,
"ruby/#{_ruby_version}",
Percy::Client::Environment.ci_info,
].compact.join('; ')
"#{client} (#{environment})"
end
end
|
#connection ⇒ Object
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# File 'lib/percy/client/connection.rb', line 50
def connection
return @connection if defined?(@connection)
parsed_uri = URI.parse(config.api_url)
base_url = "#{parsed_uri.scheme}://#{parsed_uri.host}:#{parsed_uri.port}"
@connection = Faraday.new(url: base_url) do |faraday|
faraday.request :token_auth, config.access_token if config.access_token
faraday.use Percy::Client::Connection::NiceErrorMiddleware
faraday.adapter :excon
end
@connection
end
|
#get(path, options = {}) ⇒ Object
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# File 'lib/percy/client/connection.rb', line 65
def get(path, options = {})
retries = options[:retries] || 3
begin
response = connection.get do |request|
request.url(path)
request..merge!
end
rescue Faraday::TimeoutError
raise Percy::Client::TimeoutError
rescue Faraday::ConnectionFailed
raise Percy::Client::ConnectionFailed
rescue Percy::Client::ServerError => e
if (retries -= 1) >= 0
sleep(rand(1..3))
retry
end
raise e
end
JSON.parse(response.body)
end
|
#post(path, data, options = {}) ⇒ Object
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# File 'lib/percy/client/connection.rb', line 88
def post(path, data, options = {})
retries = options[:retries] || 3
begin
response = connection.post do |request|
request.url(path)
request..merge!
request.body = data.to_json
end
rescue Faraday::TimeoutError
if (retries -= 1) >= 0
retry
end
raise Percy::Client::TimeoutError
rescue Faraday::ConnectionFailed
raise Percy::Client::ConnectionFailed
rescue Percy::Client::ServerError => e
if (retries -= 1) >= 0
sleep(rand(1..3))
retry
end
raise e
end
JSON.parse(response.body)
end
|