faraday 0.15.4 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +276 -0
- data/LICENSE.md +1 -1
- data/README.md +18 -344
- data/Rakefile +7 -0
- data/examples/client_spec.rb +65 -0
- data/examples/client_test.rb +79 -0
- data/lib/faraday/adapter/em_http.rb +144 -101
- data/lib/faraday/adapter/em_http_ssl_patch.rb +24 -18
- data/lib/faraday/adapter/em_synchrony/parallel_manager.rb +18 -15
- data/lib/faraday/adapter/em_synchrony.rb +104 -60
- data/lib/faraday/adapter/excon.rb +98 -56
- data/lib/faraday/adapter/httpclient.rb +83 -59
- data/lib/faraday/adapter/net_http.rb +130 -63
- data/lib/faraday/adapter/net_http_persistent.rb +51 -28
- data/lib/faraday/adapter/patron.rb +80 -43
- data/lib/faraday/adapter/rack.rb +30 -13
- data/lib/faraday/adapter/test.rb +86 -53
- data/lib/faraday/adapter/typhoeus.rb +4 -1
- data/lib/faraday/adapter.rb +82 -22
- data/lib/faraday/adapter_registry.rb +30 -0
- data/lib/faraday/autoload.rb +47 -36
- data/lib/faraday/connection.rb +312 -182
- data/lib/faraday/dependency_loader.rb +37 -0
- data/lib/faraday/encoders/flat_params_encoder.rb +98 -0
- data/lib/faraday/encoders/nested_params_encoder.rb +171 -0
- data/lib/faraday/error.rb +103 -37
- data/lib/faraday/file_part.rb +128 -0
- data/lib/faraday/logging/formatter.rb +105 -0
- data/lib/faraday/middleware.rb +12 -28
- data/lib/faraday/middleware_registry.rb +129 -0
- data/lib/faraday/options/connection_options.rb +22 -0
- data/lib/faraday/options/env.rb +181 -0
- data/lib/faraday/options/proxy_options.rb +28 -0
- data/lib/faraday/options/request_options.rb +22 -0
- data/lib/faraday/options/ssl_options.rb +59 -0
- data/lib/faraday/options.rb +35 -186
- data/lib/faraday/param_part.rb +53 -0
- data/lib/faraday/parameters.rb +4 -197
- data/lib/faraday/rack_builder.rb +67 -56
- data/lib/faraday/request/authorization.rb +44 -30
- data/lib/faraday/request/basic_authentication.rb +14 -7
- data/lib/faraday/request/instrumentation.rb +45 -27
- data/lib/faraday/request/multipart.rb +79 -48
- data/lib/faraday/request/retry.rb +198 -169
- data/lib/faraday/request/token_authentication.rb +15 -10
- data/lib/faraday/request/url_encoded.rb +43 -23
- data/lib/faraday/request.rb +68 -36
- data/lib/faraday/response/logger.rb +22 -69
- data/lib/faraday/response/raise_error.rb +38 -14
- data/lib/faraday/response.rb +27 -17
- data/lib/faraday/utils/headers.rb +139 -0
- data/lib/faraday/utils/params_hash.rb +61 -0
- data/lib/faraday/utils.rb +36 -245
- data/lib/faraday.rb +94 -176
- data/spec/external_adapters/faraday_specs_setup.rb +14 -0
- data/spec/faraday/adapter/em_http_spec.rb +47 -0
- data/spec/faraday/adapter/em_synchrony_spec.rb +16 -0
- data/spec/faraday/adapter/excon_spec.rb +49 -0
- data/spec/faraday/adapter/httpclient_spec.rb +73 -0
- data/spec/faraday/adapter/net_http_persistent_spec.rb +57 -0
- data/spec/faraday/adapter/net_http_spec.rb +64 -0
- data/spec/faraday/adapter/patron_spec.rb +18 -0
- data/spec/faraday/adapter/rack_spec.rb +8 -0
- data/spec/faraday/adapter/typhoeus_spec.rb +7 -0
- data/spec/faraday/adapter_registry_spec.rb +28 -0
- data/spec/faraday/adapter_spec.rb +55 -0
- data/spec/faraday/composite_read_io_spec.rb +80 -0
- data/spec/faraday/connection_spec.rb +691 -0
- data/spec/faraday/error_spec.rb +45 -0
- data/spec/faraday/middleware_spec.rb +26 -0
- data/spec/faraday/options/env_spec.rb +70 -0
- data/spec/faraday/options/options_spec.rb +297 -0
- data/spec/faraday/options/proxy_options_spec.rb +37 -0
- data/spec/faraday/options/request_options_spec.rb +19 -0
- data/spec/faraday/params_encoders/flat_spec.rb +34 -0
- data/spec/faraday/params_encoders/nested_spec.rb +134 -0
- data/spec/faraday/rack_builder_spec.rb +196 -0
- data/spec/faraday/request/authorization_spec.rb +88 -0
- data/spec/faraday/request/instrumentation_spec.rb +76 -0
- data/spec/faraday/request/multipart_spec.rb +274 -0
- data/spec/faraday/request/retry_spec.rb +242 -0
- data/spec/faraday/request/url_encoded_spec.rb +83 -0
- data/spec/faraday/request_spec.rb +109 -0
- data/spec/faraday/response/logger_spec.rb +220 -0
- data/spec/faraday/response/middleware_spec.rb +68 -0
- data/spec/faraday/response/raise_error_spec.rb +106 -0
- data/spec/faraday/response_spec.rb +75 -0
- data/spec/faraday/utils/headers_spec.rb +82 -0
- data/spec/faraday/utils_spec.rb +56 -0
- data/spec/faraday_spec.rb +37 -0
- data/spec/spec_helper.rb +132 -0
- data/spec/support/disabling_stub.rb +14 -0
- data/spec/support/fake_safe_buffer.rb +15 -0
- data/spec/support/helper_methods.rb +133 -0
- data/spec/support/shared_examples/adapter.rb +104 -0
- data/spec/support/shared_examples/params_encoder.rb +18 -0
- data/spec/support/shared_examples/request_method.rb +234 -0
- data/spec/support/streaming_response_checker.rb +35 -0
- data/spec/support/webmock_rack_app.rb +68 -0
- metadata +78 -9
- data/lib/faraday/upload_io.rb +0 -67
data/lib/faraday/adapter/test.rb
CHANGED
@@ -1,51 +1,56 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Faraday
|
2
4
|
class Adapter
|
3
|
-
#
|
4
|
-
#
|
5
|
+
# @example
|
5
6
|
# test = Faraday::Connection.new do
|
6
7
|
# use Faraday::Adapter::Test do |stub|
|
7
|
-
# #
|
8
|
+
# # Define matcher to match the request
|
8
9
|
# stub.get '/resource.json' do
|
9
10
|
# # return static content
|
10
11
|
# [200, {'Content-Type' => 'application/json'}, 'hi world']
|
11
12
|
# end
|
12
|
-
#
|
13
|
+
#
|
13
14
|
# # response with content generated based on request
|
14
15
|
# stub.get '/showget' do |env|
|
15
16
|
# [200, {'Content-Type' => 'text/plain'}, env[:method].to_s]
|
16
17
|
# end
|
17
|
-
#
|
18
|
-
# # regular expression can be used as matching filter
|
18
|
+
#
|
19
|
+
# # A regular expression can be used as matching filter
|
19
20
|
# stub.get /\A\/items\/(\d+)\z/ do |env, meta|
|
20
|
-
# # in case regular expression is used an instance of MatchData
|
21
|
-
#
|
21
|
+
# # in case regular expression is used, an instance of MatchData
|
22
|
+
# # can be received
|
23
|
+
# [200,
|
24
|
+
# {'Content-Type' => 'text/plain'},
|
25
|
+
# "showing item: #{meta[:match_data][1]}"
|
26
|
+
# ]
|
22
27
|
# end
|
23
28
|
# end
|
24
29
|
# end
|
25
|
-
#
|
30
|
+
#
|
26
31
|
# resp = test.get '/resource.json'
|
27
32
|
# resp.body # => 'hi world'
|
28
|
-
#
|
33
|
+
#
|
29
34
|
# resp = test.get '/showget'
|
30
35
|
# resp.body # => 'get'
|
31
|
-
#
|
36
|
+
#
|
32
37
|
# resp = test.get '/items/1'
|
33
38
|
# resp.body # => 'showing item: 1'
|
34
|
-
#
|
39
|
+
#
|
35
40
|
# resp = test.get '/items/2'
|
36
41
|
# resp.body # => 'showing item: 2'
|
37
|
-
#
|
38
|
-
|
39
42
|
class Test < Faraday::Adapter
|
40
43
|
attr_accessor :stubs
|
41
44
|
|
45
|
+
# A stack of Stubs
|
42
46
|
class Stubs
|
43
47
|
class NotFound < StandardError
|
44
48
|
end
|
45
49
|
|
46
50
|
def initialize
|
47
|
-
# {:
|
48
|
-
@stack
|
51
|
+
# { get: [Stub, Stub] }
|
52
|
+
@stack = {}
|
53
|
+
@consumed = {}
|
49
54
|
yield(self) if block_given?
|
50
55
|
end
|
51
56
|
|
@@ -54,7 +59,8 @@ module Faraday
|
|
54
59
|
end
|
55
60
|
|
56
61
|
def match(request_method, host, path, headers, body)
|
57
|
-
return false
|
62
|
+
return false unless @stack.key?(request_method)
|
63
|
+
|
58
64
|
stack = @stack[request_method]
|
59
65
|
consumed = (@consumed[request_method] ||= [])
|
60
66
|
|
@@ -74,15 +80,15 @@ module Faraday
|
|
74
80
|
new_stub(:head, path, headers, &block)
|
75
81
|
end
|
76
82
|
|
77
|
-
def post(path, body=nil, headers = {}, &block)
|
83
|
+
def post(path, body = nil, headers = {}, &block)
|
78
84
|
new_stub(:post, path, headers, body, &block)
|
79
85
|
end
|
80
86
|
|
81
|
-
def put(path, body=nil, headers = {}, &block)
|
87
|
+
def put(path, body = nil, headers = {}, &block)
|
82
88
|
new_stub(:put, path, headers, body, &block)
|
83
89
|
end
|
84
90
|
|
85
|
-
def patch(path, body=nil, headers = {}, &block)
|
91
|
+
def patch(path, body = nil, headers = {}, &block)
|
86
92
|
new_stub(:patch, path, headers, body, &block)
|
87
93
|
end
|
88
94
|
|
@@ -98,26 +104,32 @@ module Faraday
|
|
98
104
|
def verify_stubbed_calls
|
99
105
|
failed_stubs = []
|
100
106
|
@stack.each do |method, stubs|
|
101
|
-
|
102
|
-
|
107
|
+
next if stubs.empty?
|
108
|
+
|
109
|
+
failed_stubs.concat(
|
110
|
+
stubs.map do |stub|
|
103
111
|
"Expected #{method} #{stub}."
|
104
|
-
|
105
|
-
|
112
|
+
end
|
113
|
+
)
|
106
114
|
end
|
107
|
-
raise failed_stubs.join(
|
115
|
+
raise failed_stubs.join(' ') unless failed_stubs.empty?
|
108
116
|
end
|
109
117
|
|
110
118
|
protected
|
111
119
|
|
112
|
-
def new_stub(request_method, path, headers = {}, body=nil, &block)
|
120
|
+
def new_stub(request_method, path, headers = {}, body = nil, &block)
|
113
121
|
normalized_path, host =
|
114
122
|
if path.is_a?(Regexp)
|
115
123
|
path
|
116
124
|
else
|
117
|
-
[
|
125
|
+
[
|
126
|
+
Faraday::Utils.normalize_path(path),
|
127
|
+
Faraday::Utils.URI(path).host
|
128
|
+
]
|
118
129
|
end
|
119
130
|
|
120
|
-
|
131
|
+
stub = Stub.new(host, normalized_path, headers, body, block)
|
132
|
+
(@stack[request_method] ||= []) << stub
|
121
133
|
end
|
122
134
|
|
123
135
|
def matches?(stack, host, path, headers, body)
|
@@ -129,32 +141,42 @@ module Faraday
|
|
129
141
|
end
|
130
142
|
end
|
131
143
|
|
144
|
+
# Stub request
|
145
|
+
# rubocop:disable Style/StructInheritance
|
132
146
|
class Stub < Struct.new(:host, :path, :params, :headers, :body, :block)
|
147
|
+
# rubocop:enable Style/StructInheritance
|
133
148
|
def initialize(host, full, headers, body, block)
|
134
|
-
path, query = full.respond_to?(:split) ? full.split(
|
135
|
-
params =
|
136
|
-
|
137
|
-
|
149
|
+
path, query = full.respond_to?(:split) ? full.split('?') : full
|
150
|
+
params =
|
151
|
+
if query
|
152
|
+
Faraday::Utils.parse_nested_query(query)
|
153
|
+
else
|
154
|
+
{}
|
155
|
+
end
|
156
|
+
|
138
157
|
super(host, path, params, headers, body, block)
|
139
158
|
end
|
140
159
|
|
141
160
|
def matches?(request_host, request_uri, request_headers, request_body)
|
142
161
|
request_path, request_query = request_uri.split('?')
|
143
|
-
request_params =
|
144
|
-
|
145
|
-
|
146
|
-
|
162
|
+
request_params =
|
163
|
+
if request_query
|
164
|
+
Faraday::Utils.parse_nested_query(request_query)
|
165
|
+
else
|
166
|
+
{}
|
167
|
+
end
|
168
|
+
# meta is a hash used as carrier
|
147
169
|
# that will be yielded to consumer block
|
148
170
|
meta = {}
|
149
|
-
|
171
|
+
[(host.nil? || host == request_host) &&
|
150
172
|
path_match?(request_path, meta) &&
|
151
173
|
params_match?(request_params) &&
|
152
174
|
(body.to_s.size.zero? || request_body == body) &&
|
153
|
-
headers_match?(request_headers), meta
|
175
|
+
headers_match?(request_headers), meta]
|
154
176
|
end
|
155
177
|
|
156
178
|
def path_match?(request_path, meta)
|
157
|
-
if path.is_a?
|
179
|
+
if path.is_a?(Regexp)
|
158
180
|
!!(meta[:match_data] = path.match(request_path))
|
159
181
|
else
|
160
182
|
path == request_path
|
@@ -178,7 +200,7 @@ module Faraday
|
|
178
200
|
end
|
179
201
|
end
|
180
202
|
|
181
|
-
def initialize(app, stubs=nil, &block)
|
203
|
+
def initialize(app, stubs = nil, &block)
|
182
204
|
super(app)
|
183
205
|
@stubs = stubs || Stubs.new
|
184
206
|
configure(&block) if block
|
@@ -192,20 +214,31 @@ module Faraday
|
|
192
214
|
super
|
193
215
|
host = env[:url].host
|
194
216
|
normalized_path = Faraday::Utils.normalize_path(env[:url])
|
195
|
-
params_encoder = env.request.params_encoder ||
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
217
|
+
params_encoder = env.request.params_encoder ||
|
218
|
+
Faraday::Utils.default_params_encoder
|
219
|
+
|
220
|
+
stub, meta = stubs.match(env[:method], host, normalized_path,
|
221
|
+
env.request_headers, env[:body])
|
222
|
+
|
223
|
+
unless stub
|
224
|
+
raise Stubs::NotFound, "no stubbed request for #{env[:method]} "\
|
225
|
+
"#{normalized_path} #{env[:body]}"
|
226
|
+
end
|
227
|
+
|
228
|
+
env[:params] = if (query = env[:url].query)
|
229
|
+
params_encoder.decode(query)
|
230
|
+
else
|
231
|
+
{}
|
232
|
+
end
|
233
|
+
block_arity = stub.block.arity
|
234
|
+
status, headers, body =
|
235
|
+
if block_arity >= 0
|
236
|
+
stub.block.call(*[env, meta].take(block_arity))
|
237
|
+
else
|
204
238
|
stub.block.call(env, meta)
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
end
|
239
|
+
end
|
240
|
+
save_response(env, status, body, headers)
|
241
|
+
|
209
242
|
@app.call(env)
|
210
243
|
end
|
211
244
|
end
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Faraday
|
2
4
|
class Adapter
|
3
|
-
# This class is just a stub, the real adapter is in
|
5
|
+
# Typhoeus adapter. This class is just a stub, the real adapter is in
|
6
|
+
# https://github.com/typhoeus/typhoeus/blob/master/lib/typhoeus/adapters/faraday.rb
|
4
7
|
class Typhoeus < Faraday::Adapter
|
5
8
|
# Needs to define this method in order to support Typhoeus <= 1.3.0
|
6
9
|
def call; end
|
data/lib/faraday/adapter.rb
CHANGED
@@ -1,43 +1,75 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Faraday
|
2
|
-
#
|
4
|
+
# Base class for all Faraday adapters. Adapters are
|
3
5
|
# responsible for fulfilling a Faraday request.
|
4
|
-
class Adapter
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
6
|
+
class Adapter
|
7
|
+
extend MiddlewareRegistry
|
8
|
+
extend DependencyLoader
|
9
|
+
|
10
|
+
CONTENT_LENGTH = 'Content-Length'
|
11
|
+
|
12
|
+
register_middleware File.expand_path('adapter', __dir__),
|
13
|
+
test: [:Test, 'test'],
|
14
|
+
net_http: [:NetHttp, 'net_http'],
|
15
|
+
net_http_persistent: [
|
16
|
+
:NetHttpPersistent,
|
17
|
+
'net_http_persistent'
|
18
|
+
],
|
19
|
+
typhoeus: [:Typhoeus, 'typhoeus'],
|
20
|
+
patron: [:Patron, 'patron'],
|
21
|
+
em_synchrony: [:EMSynchrony, 'em_synchrony'],
|
22
|
+
em_http: [:EMHttp, 'em_http'],
|
23
|
+
excon: [:Excon, 'excon'],
|
24
|
+
rack: [:Rack, 'rack'],
|
25
|
+
httpclient: [:HTTPClient, 'httpclient']
|
26
|
+
|
27
|
+
# This module marks an Adapter as supporting parallel requests.
|
20
28
|
module Parallelism
|
21
29
|
attr_writer :supports_parallel
|
22
|
-
def supports_parallel?
|
30
|
+
def supports_parallel?
|
31
|
+
@supports_parallel
|
32
|
+
end
|
23
33
|
|
24
34
|
def inherited(subclass)
|
25
35
|
super
|
26
|
-
subclass.supports_parallel =
|
36
|
+
subclass.supports_parallel = supports_parallel?
|
27
37
|
end
|
28
38
|
end
|
29
39
|
|
30
40
|
extend Parallelism
|
31
41
|
self.supports_parallel = false
|
32
42
|
|
33
|
-
def initialize(
|
34
|
-
|
43
|
+
def initialize(_app = nil, opts = {}, &block)
|
44
|
+
@app = ->(env) { env.response }
|
35
45
|
@connection_options = opts
|
36
46
|
@config_block = block
|
37
47
|
end
|
38
48
|
|
49
|
+
# Yields or returns an adapter's configured connection. Depends on
|
50
|
+
# #build_connection being defined on this adapter.
|
51
|
+
#
|
52
|
+
# @param env [Faraday::Env, Hash] The env object for a faraday request.
|
53
|
+
#
|
54
|
+
# @return The return value of the given block, or the HTTP connection object
|
55
|
+
# if no block is given.
|
56
|
+
def connection(env)
|
57
|
+
conn = build_connection(env)
|
58
|
+
return conn unless block_given?
|
59
|
+
|
60
|
+
yield conn
|
61
|
+
end
|
62
|
+
|
63
|
+
# Close any persistent connections. The adapter should still be usable
|
64
|
+
# after calling close.
|
65
|
+
def close
|
66
|
+
# Possible implementation:
|
67
|
+
# @app.close if @app.respond_to?(:close)
|
68
|
+
end
|
69
|
+
|
39
70
|
def call(env)
|
40
71
|
env.clear_body if env.needs_body?
|
72
|
+
env.response = Response.new
|
41
73
|
end
|
42
74
|
|
43
75
|
private
|
@@ -45,11 +77,39 @@ module Faraday
|
|
45
77
|
def save_response(env, status, body, headers = nil, reason_phrase = nil)
|
46
78
|
env.status = status
|
47
79
|
env.body = body
|
48
|
-
env.reason_phrase = reason_phrase
|
80
|
+
env.reason_phrase = reason_phrase&.to_s&.strip
|
49
81
|
env.response_headers = Utils::Headers.new.tap do |response_headers|
|
50
82
|
response_headers.update headers unless headers.nil?
|
51
83
|
yield(response_headers) if block_given?
|
52
84
|
end
|
85
|
+
|
86
|
+
env.response.finish(env) unless env.parallel?
|
87
|
+
env.response
|
53
88
|
end
|
89
|
+
|
90
|
+
# Fetches either a read, write, or open timeout setting. Defaults to the
|
91
|
+
# :timeout value if a more specific one is not given.
|
92
|
+
#
|
93
|
+
# @param type [Symbol] Describes which timeout setting to get: :read,
|
94
|
+
# :write, or :open.
|
95
|
+
# @param options [Hash] Hash containing Symbol keys like :timeout,
|
96
|
+
# :read_timeout, :write_timeout, :open_timeout, or
|
97
|
+
# :timeout
|
98
|
+
#
|
99
|
+
# @return [Integer, nil] Timeout duration in seconds, or nil if no timeout
|
100
|
+
# has been set.
|
101
|
+
def request_timeout(type, options)
|
102
|
+
key = TIMEOUT_KEYS.fetch(type) do
|
103
|
+
msg = "Expected :read, :write, :open. Got #{type.inspect} :("
|
104
|
+
raise ArgumentError, msg
|
105
|
+
end
|
106
|
+
options[key] || options[:timeout]
|
107
|
+
end
|
108
|
+
|
109
|
+
TIMEOUT_KEYS = {
|
110
|
+
read: :read_timeout,
|
111
|
+
open: :open_timeout,
|
112
|
+
write: :write_timeout
|
113
|
+
}.freeze
|
54
114
|
end
|
55
115
|
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'monitor'
|
4
|
+
|
5
|
+
module Faraday
|
6
|
+
# AdapterRegistry registers adapter class names so they can be looked up by a
|
7
|
+
# String or Symbol name.
|
8
|
+
class AdapterRegistry
|
9
|
+
def initialize
|
10
|
+
@lock = Monitor.new
|
11
|
+
@constants = {}
|
12
|
+
end
|
13
|
+
|
14
|
+
def get(name)
|
15
|
+
klass = @lock.synchronize do
|
16
|
+
@constants[name]
|
17
|
+
end
|
18
|
+
return klass if klass
|
19
|
+
|
20
|
+
Object.const_get(name).tap { |c| set(c, name) }
|
21
|
+
end
|
22
|
+
|
23
|
+
def set(klass, name = nil)
|
24
|
+
name ||= klass.to_s
|
25
|
+
@lock.synchronize do
|
26
|
+
@constants[name] = klass
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
data/lib/faraday/autoload.rb
CHANGED
@@ -1,84 +1,95 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Faraday
|
2
|
-
#
|
4
|
+
# Adds the ability for other modules to manage autoloadable
|
3
5
|
# constants.
|
6
|
+
#
|
7
|
+
# @api private
|
4
8
|
module AutoloadHelper
|
5
|
-
#
|
9
|
+
# Registers the constants to be auto loaded.
|
6
10
|
#
|
7
|
-
# prefix
|
8
|
-
# it will be prefixed with the root path of this loaded
|
9
|
-
# version.
|
10
|
-
# options
|
11
|
+
# @param prefix [String] The require prefix. If the path is inside Faraday,
|
12
|
+
# then it will be prefixed with the root path of this loaded
|
13
|
+
# Faraday version.
|
14
|
+
# @param options [{ Symbol => String }] library names.
|
11
15
|
#
|
12
|
-
#
|
16
|
+
# @example
|
13
17
|
#
|
14
18
|
# Faraday.autoload_all 'faraday/foo',
|
15
|
-
# :
|
19
|
+
# Bar: 'bar'
|
16
20
|
#
|
17
21
|
# # requires faraday/foo/bar to load Faraday::Bar.
|
18
22
|
# Faraday::Bar
|
19
23
|
#
|
20
|
-
#
|
21
|
-
# Returns nothing.
|
24
|
+
# @return [void]
|
22
25
|
def autoload_all(prefix, options)
|
23
|
-
if prefix =~
|
26
|
+
if prefix =~ %r{^faraday(/|$)}i
|
24
27
|
prefix = File.join(Faraday.root_path, prefix)
|
25
28
|
end
|
29
|
+
|
26
30
|
options.each do |const_name, path|
|
27
31
|
autoload const_name, File.join(prefix, path)
|
28
32
|
end
|
29
33
|
end
|
30
34
|
|
31
|
-
#
|
35
|
+
# Loads each autoloaded constant. If thread safety is a concern,
|
32
36
|
# wrap this in a Mutex.
|
33
37
|
#
|
34
|
-
#
|
38
|
+
# @return [void]
|
35
39
|
def load_autoloaded_constants
|
36
40
|
constants.each do |const|
|
37
41
|
const_get(const) if autoload?(const)
|
38
42
|
end
|
39
43
|
end
|
40
44
|
|
41
|
-
#
|
45
|
+
# Filters the module's contents with those that have been already
|
42
46
|
# autoloaded.
|
43
47
|
#
|
44
|
-
#
|
48
|
+
# @return [Array<Class, Module>]
|
45
49
|
def all_loaded_constants
|
46
|
-
constants
|
47
|
-
|
50
|
+
constants
|
51
|
+
.map { |c| const_get(c) }
|
52
|
+
.select { |a| a.respond_to?(:loaded?) && a.loaded? }
|
48
53
|
end
|
49
54
|
end
|
50
55
|
|
56
|
+
# Adapter is the base class for all Faraday adapters.
|
57
|
+
# @see lib/faraday/adapter.rb Original class location
|
51
58
|
class Adapter
|
52
59
|
extend AutoloadHelper
|
53
60
|
autoload_all 'faraday/adapter',
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
61
|
+
NetHttp: 'net_http',
|
62
|
+
NetHttpPersistent: 'net_http_persistent',
|
63
|
+
EMSynchrony: 'em_synchrony',
|
64
|
+
EMHttp: 'em_http',
|
65
|
+
Typhoeus: 'typhoeus',
|
66
|
+
Patron: 'patron',
|
67
|
+
Excon: 'excon',
|
68
|
+
Test: 'test',
|
69
|
+
Rack: 'rack',
|
70
|
+
HTTPClient: 'httpclient'
|
64
71
|
end
|
65
72
|
|
73
|
+
# Request represents a single HTTP request for a Faraday adapter to make.
|
74
|
+
# @see lib/faraday/request.rb Original class location
|
66
75
|
class Request
|
67
76
|
extend AutoloadHelper
|
68
77
|
autoload_all 'faraday/request',
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
78
|
+
UrlEncoded: 'url_encoded',
|
79
|
+
Multipart: 'multipart',
|
80
|
+
Retry: 'retry',
|
81
|
+
Authorization: 'authorization',
|
82
|
+
BasicAuthentication: 'basic_authentication',
|
83
|
+
TokenAuthentication: 'token_authentication',
|
84
|
+
Instrumentation: 'instrumentation'
|
76
85
|
end
|
77
86
|
|
87
|
+
# Response represents the returned value of a sent Faraday request.
|
88
|
+
# @see lib/faraday/response.rb Original class location
|
78
89
|
class Response
|
79
90
|
extend AutoloadHelper
|
80
91
|
autoload_all 'faraday/response',
|
81
|
-
|
82
|
-
|
92
|
+
RaiseError: 'raise_error',
|
93
|
+
Logger: 'logger'
|
83
94
|
end
|
84
95
|
end
|