forked from excon/excon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcon.rb
234 lines (213 loc) · 7.86 KB
/
excon.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
$:.unshift(File.dirname(__FILE__)) unless
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
require 'cgi'
require 'forwardable'
require 'openssl'
require 'rbconfig'
require 'socket'
require 'timeout'
require 'uri'
require 'zlib'
require 'stringio'
require 'excon/extensions/uri'
require 'excon/middlewares/base'
require 'excon/middlewares/expects'
require 'excon/middlewares/idempotent'
require 'excon/middlewares/instrumentor'
require 'excon/middlewares/mock'
require 'excon/middlewares/response_parser'
require 'excon/constants'
require 'excon/utils'
require 'excon/connection'
require 'excon/errors'
require 'excon/headers'
require 'excon/response'
require 'excon/middlewares/decompress'
require 'excon/middlewares/escape_path'
require 'excon/middlewares/redirect_follower'
require 'excon/pretty_printer'
require 'excon/socket'
require 'excon/ssl_socket'
require 'excon/standard_instrumentor'
require 'excon/unix_socket'
# Define defaults first so they will be available to other files
module Excon
class << self
# @return [Hash] defaults for Excon connections
def defaults
@defaults ||= DEFAULTS
end
# Change defaults for Excon connections
# @return [Hash] defaults for Excon connections
def defaults=(new_defaults)
@defaults = new_defaults
end
def display_warning(warning)
# Show warning if $VERBOSE or ENV['EXCON_DEBUG'] is set
if $VERBOSE || ENV['EXCON_DEBUG']
$stderr.puts '[excon][WARNING] ' << warning << "\n#{ caller.join("\n") }"
end
end
# Status of mocking
def mock
display_warning('Excon#mock is deprecated, use Excon.defaults[:mock] instead.')
self.defaults[:mock]
end
# Change the status of mocking
# false is the default and works as expected
# true returns a value from stubs or raises
def mock=(new_mock)
display_warning('Excon#mock is deprecated, use Excon.defaults[:mock]= instead.')
self.defaults[:mock] = new_mock
end
# @return [String] The filesystem path to the SSL Certificate Authority
def ssl_ca_path
display_warning('Excon#ssl_ca_path is deprecated, use Excon.defaults[:ssl_ca_path] instead.')
self.defaults[:ssl_ca_path]
end
# Change path to the SSL Certificate Authority
# @return [String] The filesystem path to the SSL Certificate Authority
def ssl_ca_path=(new_ssl_ca_path)
display_warning('Excon#ssl_ca_path= is deprecated, use Excon.defaults[:ssl_ca_path]= instead.')
self.defaults[:ssl_ca_path] = new_ssl_ca_path
end
# @return [true, false] Whether or not to verify the peer's SSL certificate / chain
def ssl_verify_peer
display_warning('Excon#ssl_verify_peer is deprecated, use Excon.defaults[:ssl_verify_peer] instead.')
self.defaults[:ssl_verify_peer]
end
# Change the status of ssl peer verification
# @see Excon#ssl_verify_peer (attr_reader)
def ssl_verify_peer=(new_ssl_verify_peer)
display_warning('Excon#ssl_verify_peer= is deprecated, use Excon.defaults[:ssl_verify_peer]= instead.')
self.defaults[:ssl_verify_peer] = new_ssl_verify_peer
end
# @see Connection#initialize
# Initializes a new keep-alive session for a given remote host
# @param [String] url The destination URL
# @param [Hash<Symbol, >] params One or more option params to set on the Connection instance
# @return [Connection] A new Excon::Connection instance
def new(url, params = {})
uri_parser = params[:uri_parser] || defaults[:uri_parser]
uri = uri_parser.parse(url)
unless uri.scheme
raise ArgumentError.new("Invalid URI: #{uri}")
end
params = {
:host => uri.host,
:hostname => uri.hostname,
:path => uri.path,
:port => uri.port,
:query => uri.query,
:scheme => uri.scheme
}.merge(params)
if uri.password
params[:password] = Utils.unescape_uri(uri.password)
end
if uri.user
params[:user] = Utils.unescape_uri(uri.user)
end
Excon::Connection.new(params)
end
# push an additional stub onto the list to check for mock requests
# @param [Hash<Symbol, >] request params to match against, omitted params match all
# @param [Hash<Symbol, >] response params to return from matched request or block to call with params
def stub(request_params = {}, response_params = nil)
if method = request_params.delete(:method)
request_params[:method] = method.to_s.downcase.to_sym
end
if url = request_params.delete(:url)
uri = URI.parse(url)
request_params = {
:host => uri.host,
:path => uri.path,
:port => uri.port,
:query => uri.query,
:scheme => uri.scheme
}.merge!(request_params)
if uri.user || uri.password
request_params[:headers] ||= {}
user, pass = Utils.unescape_form(uri.user.to_s), Utils.unescape_form(uri.password.to_s)
request_params[:headers]['Authorization'] ||= 'Basic ' << ['' << user << ':' << pass].pack('m').delete(Excon::CR_NL)
end
end
if request_params.has_key?(:headers)
headers = Excon::Headers.new
request_params[:headers].each do |key, value|
headers[key] = value
end
request_params[:headers] = headers
end
if block_given?
if response_params
raise(ArgumentError.new("stub requires either response_params OR a block"))
else
stub = [request_params, Proc.new]
end
elsif response_params
stub = [request_params, response_params]
else
raise(ArgumentError.new("stub requires either response_params OR a block"))
end
stubs.unshift(stub)
stub
end
# get a stub matching params or nil
# @param [Hash<Symbol, >] request params to match against, omitted params match all
# @return [Hash<Symbol, >] response params to return from matched request or block to call with params
def stub_for(request_params={})
if method = request_params.delete(:method)
request_params[:method] = method.to_s.downcase.to_sym
end
Excon.stubs.each do |stub, response_params|
captures = { :headers => {} }
headers_match = !stub.has_key?(:headers) || stub[:headers].keys.all? do |key|
case value = stub[:headers][key]
when Regexp
if match = value.match(request_params[:headers][key])
captures[:headers][key] = match.captures
end
match
else
value == request_params[:headers][key]
end
end
non_headers_match = (stub.keys - [:headers]).all? do |key|
case value = stub[key]
when Regexp
if match = value.match(request_params[key])
captures[key] = match.captures
end
match
else
value == request_params[key]
end
end
if headers_match && non_headers_match
request_params[:captures] = captures
return [stub, response_params]
end
end
nil
end
# get a list of defined stubs
def stubs
@stubs ||= []
end
# remove first/oldest stub matching request_params
# @param [Hash<Symbol, >] request params to match against, omitted params match all
# @return [Hash<Symbol, >] response params from deleted stub
def unstub(request_params = {})
stub = stub_for(request_params)
Excon.stubs.delete_at(Excon.stubs.index(stub))
end
# Generic non-persistent HTTP methods
HTTP_VERBS.each do |method|
module_eval <<-DEF, __FILE__, __LINE__ + 1
def #{method}(url, params = {}, &block)
new(url, params).request(:method => :#{method}, &block)
end
DEF
end
end
end