faraday 0.15.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +350 -0
- data/LICENSE.md +1 -1
- data/README.md +18 -345
- data/Rakefile +7 -0
- data/examples/client_spec.rb +65 -0
- data/examples/client_test.rb +79 -0
- data/lib/faraday.rb +118 -190
- data/lib/faraday/adapter.rb +82 -22
- data/lib/faraday/adapter/em_http.rb +150 -104
- data/lib/faraday/adapter/em_http_ssl_patch.rb +24 -18
- data/lib/faraday/adapter/em_synchrony.rb +110 -63
- data/lib/faraday/adapter/em_synchrony/parallel_manager.rb +18 -15
- data/lib/faraday/adapter/excon.rb +98 -53
- data/lib/faraday/adapter/httpclient.rb +83 -59
- data/lib/faraday/adapter/net_http_persistent.rb +57 -29
- data/lib/faraday/adapter/patron.rb +80 -48
- 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_registry.rb +30 -0
- data/lib/faraday/autoload.rb +46 -36
- data/lib/faraday/connection.rb +312 -182
- data/lib/faraday/dependency_loader.rb +37 -0
- data/lib/faraday/encoders/flat_params_encoder.rb +105 -0
- data/lib/faraday/encoders/nested_params_encoder.rb +176 -0
- data/lib/faraday/error.rb +123 -37
- data/lib/faraday/file_part.rb +128 -0
- data/lib/faraday/logging/formatter.rb +105 -0
- data/lib/faraday/methods.rb +6 -0
- data/lib/faraday/middleware.rb +19 -25
- data/lib/faraday/middleware_registry.rb +129 -0
- data/lib/faraday/options.rb +39 -193
- 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/param_part.rb +53 -0
- data/lib/faraday/parameters.rb +4 -196
- data/lib/faraday/rack_builder.rb +77 -65
- data/lib/faraday/request.rb +94 -32
- 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 +86 -48
- data/lib/faraday/request/retry.rb +198 -170
- data/lib/faraday/request/token_authentication.rb +15 -10
- data/lib/faraday/request/url_encoded.rb +43 -23
- data/lib/faraday/response.rb +27 -23
- data/lib/faraday/response/logger.rb +22 -69
- data/lib/faraday/response/raise_error.rb +49 -14
- data/lib/faraday/utils.rb +38 -247
- data/lib/faraday/utils/headers.rb +139 -0
- data/lib/faraday/utils/params_hash.rb +61 -0
- data/lib/faraday/version.rb +5 -0
- 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/test_spec.rb +260 -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 +60 -0
- data/spec/faraday/middleware_spec.rb +52 -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 +42 -0
- data/spec/faraday/params_encoders/nested_spec.rb +142 -0
- data/spec/faraday/rack_builder_spec.rb +345 -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 +302 -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 +120 -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 +169 -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 +105 -0
- data/spec/support/shared_examples/params_encoder.rb +18 -0
- data/spec/support/shared_examples/request_method.rb +262 -0
- data/spec/support/streaming_response_checker.rb +35 -0
- data/spec/support/webmock_rack_app.rb +68 -0
- metadata +109 -10
- data/lib/faraday/adapter/net_http.rb +0 -137
- data/lib/faraday/upload_io.rb +0 -67
data/Rakefile
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Requires Ruby with rspec and faraday gems.
|
4
|
+
# rspec client_spec.rb
|
5
|
+
|
6
|
+
require 'faraday'
|
7
|
+
require 'json'
|
8
|
+
|
9
|
+
# Example API client
|
10
|
+
class Client
|
11
|
+
def initialize(conn)
|
12
|
+
@conn = conn
|
13
|
+
end
|
14
|
+
|
15
|
+
def sushi(jname)
|
16
|
+
res = @conn.get("/#{jname}")
|
17
|
+
data = JSON.parse(res.body)
|
18
|
+
data['name']
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
RSpec.describe Client do
|
23
|
+
let(:stubs) { Faraday::Adapter::Test::Stubs.new }
|
24
|
+
let(:conn) { Faraday.new { |b| b.adapter(:test, stubs) } }
|
25
|
+
let(:client) { Client.new(conn) }
|
26
|
+
|
27
|
+
it 'parses name' do
|
28
|
+
stubs.get('/ebi') do |env|
|
29
|
+
# optional: you can inspect the Faraday::Env
|
30
|
+
expect(env.url.path).to eq('/ebi')
|
31
|
+
[
|
32
|
+
200,
|
33
|
+
{ 'Content-Type': 'application/javascript' },
|
34
|
+
'{"name": "shrimp"}'
|
35
|
+
]
|
36
|
+
end
|
37
|
+
|
38
|
+
# uncomment to trigger stubs.verify_stubbed_calls failure
|
39
|
+
# stubs.get('/unused') { [404, {}, ''] }
|
40
|
+
|
41
|
+
expect(client.sushi('ebi')).to eq('shrimp')
|
42
|
+
stubs.verify_stubbed_calls
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'handles 404' do
|
46
|
+
stubs.get('/ebi') do
|
47
|
+
[
|
48
|
+
404,
|
49
|
+
{ 'Content-Type': 'application/javascript' },
|
50
|
+
'{}'
|
51
|
+
]
|
52
|
+
end
|
53
|
+
expect(client.sushi('ebi')).to be_nil
|
54
|
+
stubs.verify_stubbed_calls
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'handles exception' do
|
58
|
+
stubs.get('/ebi') do
|
59
|
+
raise Faraday::ConnectionFailed, nil
|
60
|
+
end
|
61
|
+
|
62
|
+
expect { client.sushi('ebi') }.to raise_error(Faraday::ConnectionFailed)
|
63
|
+
stubs.verify_stubbed_calls
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Requires Ruby with test-unit and faraday gems.
|
4
|
+
# ruby client_test.rb
|
5
|
+
|
6
|
+
require 'faraday'
|
7
|
+
require 'json'
|
8
|
+
require 'test/unit'
|
9
|
+
|
10
|
+
# Example API client
|
11
|
+
class Client
|
12
|
+
def initialize(conn)
|
13
|
+
@conn = conn
|
14
|
+
end
|
15
|
+
|
16
|
+
def sushi(jname)
|
17
|
+
res = @conn.get("/#{jname}")
|
18
|
+
data = JSON.parse(res.body)
|
19
|
+
data['name']
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
# Example API client test
|
24
|
+
class ClientTest < Test::Unit::TestCase
|
25
|
+
def test_sushi_name
|
26
|
+
stubs = Faraday::Adapter::Test::Stubs.new
|
27
|
+
stubs.get('/ebi') do |env|
|
28
|
+
# optional: you can inspect the Faraday::Env
|
29
|
+
assert_equal '/ebi', env.url.path
|
30
|
+
[
|
31
|
+
200,
|
32
|
+
{ 'Content-Type': 'application/javascript' },
|
33
|
+
'{"name": "shrimp"}'
|
34
|
+
]
|
35
|
+
end
|
36
|
+
|
37
|
+
# uncomment to trigger stubs.verify_stubbed_calls failure
|
38
|
+
# stubs.get('/unused') { [404, {}, ''] }
|
39
|
+
|
40
|
+
cli = client(stubs)
|
41
|
+
assert_equal 'shrimp', cli.sushi('ebi')
|
42
|
+
stubs.verify_stubbed_calls
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_sushi_404
|
46
|
+
stubs = Faraday::Adapter::Test::Stubs.new
|
47
|
+
stubs.get('/ebi') do
|
48
|
+
[
|
49
|
+
404,
|
50
|
+
{ 'Content-Type': 'application/javascript' },
|
51
|
+
'{}'
|
52
|
+
]
|
53
|
+
end
|
54
|
+
|
55
|
+
cli = client(stubs)
|
56
|
+
assert_nil cli.sushi('ebi')
|
57
|
+
stubs.verify_stubbed_calls
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_sushi_exception
|
61
|
+
stubs = Faraday::Adapter::Test::Stubs.new
|
62
|
+
stubs.get('/ebi') do
|
63
|
+
raise Faraday::ConnectionFailed, nil
|
64
|
+
end
|
65
|
+
|
66
|
+
cli = client(stubs)
|
67
|
+
assert_raise Faraday::ConnectionFailed do
|
68
|
+
cli.sushi('ebi')
|
69
|
+
end
|
70
|
+
stubs.verify_stubbed_calls
|
71
|
+
end
|
72
|
+
|
73
|
+
def client(stubs)
|
74
|
+
conn = Faraday.new do |builder|
|
75
|
+
builder.adapter :test, stubs
|
76
|
+
end
|
77
|
+
Client.new(conn)
|
78
|
+
end
|
79
|
+
end
|
data/lib/faraday.rb
CHANGED
@@ -1,248 +1,176 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
2
3
|
require 'cgi'
|
4
|
+
require 'date'
|
3
5
|
require 'set'
|
4
6
|
require 'forwardable'
|
7
|
+
require 'faraday/middleware_registry'
|
8
|
+
require 'faraday/dependency_loader'
|
9
|
+
|
10
|
+
unless defined?(::Faraday::Timer)
|
11
|
+
require 'timeout'
|
12
|
+
::Faraday::Timer = Timeout
|
13
|
+
end
|
5
14
|
|
6
|
-
|
7
|
-
|
15
|
+
require 'faraday/version'
|
16
|
+
require 'faraday/methods'
|
17
|
+
require 'faraday/utils'
|
18
|
+
require 'faraday/options'
|
19
|
+
require 'faraday/connection'
|
20
|
+
require 'faraday/rack_builder'
|
21
|
+
require 'faraday/parameters'
|
22
|
+
require 'faraday/middleware'
|
23
|
+
require 'faraday/adapter'
|
24
|
+
require 'faraday/request'
|
25
|
+
require 'faraday/response'
|
26
|
+
require 'faraday/error'
|
27
|
+
require 'faraday/file_part'
|
28
|
+
require 'faraday/param_part'
|
29
|
+
|
30
|
+
require 'faraday/net_http'
|
31
|
+
|
32
|
+
# This is the main namespace for Faraday.
|
8
33
|
#
|
9
|
-
#
|
34
|
+
# It provides methods to create {Connection} objects, and HTTP-related
|
35
|
+
# methods to use directly.
|
10
36
|
#
|
37
|
+
# @example Helpful class methods for easy usage
|
11
38
|
# Faraday.get "http://faraday.com"
|
12
39
|
#
|
40
|
+
# @example Helpful class method `.new` to create {Connection} objects.
|
13
41
|
# conn = Faraday.new "http://faraday.com"
|
14
42
|
# conn.get '/'
|
15
43
|
#
|
16
44
|
module Faraday
|
17
|
-
VERSION = "0.15.0"
|
18
|
-
|
19
45
|
class << self
|
20
|
-
#
|
21
|
-
#
|
46
|
+
# The root path that Faraday is being loaded from.
|
47
|
+
#
|
48
|
+
# This is the root from where the libraries are auto-loaded.
|
49
|
+
#
|
50
|
+
# @return [String]
|
22
51
|
attr_accessor :root_path
|
23
52
|
|
24
|
-
#
|
53
|
+
# Gets or sets the path that the Faraday libs are loaded from.
|
54
|
+
# @return [String]
|
25
55
|
attr_accessor :lib_path
|
26
56
|
|
27
|
-
#
|
28
|
-
#
|
57
|
+
# @overload default_adapter
|
58
|
+
# Gets the Symbol key identifying a default Adapter to use
|
59
|
+
# for the default {Faraday::Connection}. Defaults to `:net_http`.
|
60
|
+
# @return [Symbol] the default adapter
|
61
|
+
# @overload default_adapter=(adapter)
|
62
|
+
# Updates default adapter while resetting {.default_connection}.
|
63
|
+
# @return [Symbol] the new default_adapter.
|
29
64
|
attr_reader :default_adapter
|
30
65
|
|
31
|
-
#
|
32
|
-
# access the Faraday constant directly.
|
33
|
-
#
|
34
|
-
# Faraday.get "https://faraday.com"
|
66
|
+
# Documented below, see default_connection
|
35
67
|
attr_writer :default_connection
|
36
68
|
|
37
|
-
#
|
69
|
+
# Tells Faraday to ignore the environment proxy (http_proxy).
|
70
|
+
# Defaults to `false`.
|
71
|
+
# @return [Boolean]
|
38
72
|
attr_accessor :ignore_env_proxy
|
39
73
|
|
40
|
-
#
|
41
|
-
#
|
42
|
-
# url
|
43
|
-
# requests. Can also be the options Hash.
|
44
|
-
#
|
45
|
-
#
|
46
|
-
#
|
47
|
-
#
|
48
|
-
#
|
49
|
-
#
|
50
|
-
#
|
51
|
-
#
|
52
|
-
#
|
53
|
-
#
|
54
|
-
#
|
55
|
-
#
|
74
|
+
# Initializes a new {Connection}.
|
75
|
+
#
|
76
|
+
# @param url [String,Hash] The optional String base URL to use as a prefix
|
77
|
+
# for all requests. Can also be the options Hash. Any of these
|
78
|
+
# values will be set on every request made, unless overridden
|
79
|
+
# for a specific request.
|
80
|
+
# @param options [Hash]
|
81
|
+
# @option options [String] :url Base URL
|
82
|
+
# @option options [Hash] :params Hash of unencoded URI query params.
|
83
|
+
# @option options [Hash] :headers Hash of unencoded HTTP headers.
|
84
|
+
# @option options [Hash] :request Hash of request options.
|
85
|
+
# @option options [Hash] :ssl Hash of SSL options.
|
86
|
+
# @option options [Hash] :proxy Hash of Proxy options.
|
87
|
+
# @return [Faraday::Connection]
|
88
|
+
#
|
89
|
+
# @example With an URL argument
|
56
90
|
# Faraday.new 'http://faraday.com'
|
57
|
-
#
|
58
|
-
#
|
59
|
-
#
|
60
|
-
#
|
61
|
-
# #
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
65
|
-
#
|
66
|
-
#
|
67
|
-
def new(url = nil, options =
|
68
|
-
|
69
|
-
options = options ? default_connection_options.merge(options) : default_connection_options
|
91
|
+
# # => Faraday::Connection to http://faraday.com
|
92
|
+
#
|
93
|
+
# @example With an URL argument and an options hash
|
94
|
+
# Faraday.new 'http://faraday.com', params: { page: 1 }
|
95
|
+
# # => Faraday::Connection to http://faraday.com?page=1
|
96
|
+
#
|
97
|
+
# @example With everything in an options hash
|
98
|
+
# Faraday.new url: 'http://faraday.com',
|
99
|
+
# params: { page: 1 }
|
100
|
+
# # => Faraday::Connection to http://faraday.com?page=1
|
101
|
+
def new(url = nil, options = {}, &block)
|
102
|
+
options = default_connection_options.merge(options)
|
70
103
|
Faraday::Connection.new(url, options, &block)
|
71
104
|
end
|
72
105
|
|
106
|
+
# @private
|
73
107
|
# Internal: Requires internal Faraday libraries.
|
74
108
|
#
|
75
|
-
#
|
76
|
-
#
|
77
|
-
# Returns nothing.
|
109
|
+
# @param libs [Array] one or more relative String names to Faraday classes.
|
110
|
+
# @return [void]
|
78
111
|
def require_libs(*libs)
|
79
112
|
libs.each do |lib|
|
80
113
|
require "#{lib_path}/#{lib}"
|
81
114
|
end
|
82
115
|
end
|
83
116
|
|
84
|
-
|
85
|
-
|
86
|
-
#
|
87
|
-
# Returns the new default_adapter.
|
117
|
+
alias require_lib require_libs
|
118
|
+
|
119
|
+
# Documented elsewhere, see default_adapter reader
|
88
120
|
def default_adapter=(adapter)
|
89
121
|
@default_connection = nil
|
90
122
|
@default_adapter = adapter
|
91
123
|
end
|
92
124
|
|
93
|
-
|
94
|
-
|
95
|
-
def respond_to?(symbol, include_private = false)
|
125
|
+
def respond_to_missing?(symbol, include_private = false)
|
96
126
|
default_connection.respond_to?(symbol, include_private) || super
|
97
127
|
end
|
98
128
|
|
99
|
-
|
100
|
-
#
|
101
|
-
#
|
102
|
-
|
103
|
-
|
129
|
+
# @overload default_connection
|
130
|
+
# Gets the default connection used for simple scripts.
|
131
|
+
# @return [Faraday::Connection] a connection configured with
|
132
|
+
# the default_adapter.
|
133
|
+
# @overload default_connection=(connection)
|
134
|
+
# @param connection [Faraday::Connection]
|
135
|
+
# Sets the default {Faraday::Connection} for simple scripts that
|
136
|
+
# access the Faraday constant directly, such as
|
137
|
+
# <code>Faraday.get "https://faraday.com"</code>.
|
138
|
+
def default_connection
|
139
|
+
@default_connection ||= Connection.new(default_connection_options)
|
104
140
|
end
|
105
|
-
end
|
106
|
-
|
107
|
-
self.ignore_env_proxy = false
|
108
|
-
self.root_path = File.expand_path "..", __FILE__
|
109
|
-
self.lib_path = File.expand_path "../faraday", __FILE__
|
110
|
-
self.default_adapter = :net_http
|
111
|
-
|
112
|
-
# Gets the default connection used for simple scripts.
|
113
|
-
#
|
114
|
-
# Returns a Faraday::Connection, configured with the #default_adapter.
|
115
|
-
def self.default_connection
|
116
|
-
@default_connection ||= Connection.new(default_connection_options)
|
117
|
-
end
|
118
|
-
|
119
|
-
# Gets the default connection options used when calling Faraday#new.
|
120
|
-
#
|
121
|
-
# Returns a Faraday::ConnectionOptions.
|
122
|
-
def self.default_connection_options
|
123
|
-
@default_connection_options ||= ConnectionOptions.new
|
124
|
-
end
|
125
|
-
|
126
|
-
# Public: Sets the default options used when calling Faraday#new.
|
127
|
-
def self.default_connection_options=(options)
|
128
|
-
@default_connection = nil
|
129
|
-
@default_connection_options = ConnectionOptions.from(options)
|
130
|
-
end
|
131
|
-
|
132
|
-
unless const_defined? :Timer
|
133
|
-
require 'timeout'
|
134
|
-
Timer = Timeout
|
135
|
-
end
|
136
141
|
|
137
|
-
|
138
|
-
# middleware classes.
|
139
|
-
module MiddlewareRegistry
|
140
|
-
# Public: Register middleware class(es) on the current module.
|
141
|
-
#
|
142
|
-
# mapping - A Hash mapping Symbol keys to classes. Classes can be expressed
|
143
|
-
# as fully qualified constant, or a Proc that will be lazily
|
144
|
-
# called to return the former.
|
145
|
-
#
|
146
|
-
# Examples
|
147
|
-
#
|
148
|
-
# module Faraday
|
149
|
-
# class Whatever
|
150
|
-
# # Middleware looked up by :foo returns Faraday::Whatever::Foo.
|
151
|
-
# register_middleware :foo => Foo
|
142
|
+
# Gets the default connection options used when calling {Faraday#new}.
|
152
143
|
#
|
153
|
-
#
|
154
|
-
|
155
|
-
|
156
|
-
# # Middleware looked up by :baz requires 'baz' and returns Faraday::Whatever.const_get(:Baz)
|
157
|
-
# register_middleware :baz => [:Baz, 'baz']
|
158
|
-
# end
|
159
|
-
# end
|
160
|
-
#
|
161
|
-
# Returns nothing.
|
162
|
-
def register_middleware(autoload_path = nil, mapping = nil)
|
163
|
-
if mapping.nil?
|
164
|
-
mapping = autoload_path
|
165
|
-
autoload_path = nil
|
166
|
-
end
|
167
|
-
middleware_mutex do
|
168
|
-
@middleware_autoload_path = autoload_path if autoload_path
|
169
|
-
(@registered_middleware ||= {}).update(mapping)
|
170
|
-
end
|
144
|
+
# @return [Faraday::ConnectionOptions]
|
145
|
+
def default_connection_options
|
146
|
+
@default_connection_options ||= ConnectionOptions.new
|
171
147
|
end
|
172
148
|
|
173
|
-
#
|
174
|
-
#
|
175
|
-
# key - The Symbol key for the registered middleware.
|
176
|
-
#
|
177
|
-
# Examples
|
178
|
-
#
|
179
|
-
# module Faraday
|
180
|
-
# class Whatever
|
181
|
-
# register_middleware :foo => Foo
|
182
|
-
# end
|
183
|
-
# end
|
149
|
+
# Sets the default options used when calling {Faraday#new}.
|
184
150
|
#
|
185
|
-
#
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
def lookup_middleware(key)
|
190
|
-
load_middleware(key) ||
|
191
|
-
raise(Faraday::Error.new("#{key.inspect} is not registered on #{self}"))
|
192
|
-
end
|
193
|
-
|
194
|
-
def middleware_mutex(&block)
|
195
|
-
@middleware_mutex ||= begin
|
196
|
-
require 'monitor'
|
197
|
-
Monitor.new
|
198
|
-
end
|
199
|
-
@middleware_mutex.synchronize(&block)
|
151
|
+
# @param options [Hash, Faraday::ConnectionOptions]
|
152
|
+
def default_connection_options=(options)
|
153
|
+
@default_connection = nil
|
154
|
+
@default_connection_options = ConnectionOptions.from(options)
|
200
155
|
end
|
201
156
|
|
202
|
-
|
203
|
-
defined?(@registered_middleware) && @registered_middleware[key]
|
204
|
-
end
|
157
|
+
private
|
205
158
|
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
@registered_middleware[key] = const_get(value)
|
214
|
-
end
|
215
|
-
when Proc
|
216
|
-
middleware_mutex do
|
217
|
-
@registered_middleware[key] = value.call
|
218
|
-
end
|
219
|
-
when Array
|
220
|
-
middleware_mutex do
|
221
|
-
const, path = value
|
222
|
-
if root = @middleware_autoload_path
|
223
|
-
path = "#{root}/#{path}"
|
224
|
-
end
|
225
|
-
require(path)
|
226
|
-
@registered_middleware[key] = const
|
227
|
-
end
|
228
|
-
load_middleware(key)
|
159
|
+
# Internal: Proxies method calls on the Faraday constant to
|
160
|
+
# .default_connection.
|
161
|
+
def method_missing(name, *args, &block)
|
162
|
+
if default_connection.respond_to?(name)
|
163
|
+
default_connection.send(name, *args, &block)
|
164
|
+
else
|
165
|
+
super
|
229
166
|
end
|
230
167
|
end
|
231
168
|
end
|
232
169
|
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
else
|
238
|
-
super
|
239
|
-
end
|
240
|
-
end
|
241
|
-
|
242
|
-
require_libs "utils", "options", "connection", "rack_builder", "parameters",
|
243
|
-
"middleware", "adapter", "request", "response", "upload_io", "error"
|
170
|
+
self.ignore_env_proxy = false
|
171
|
+
self.root_path = File.expand_path __dir__
|
172
|
+
self.lib_path = File.expand_path 'faraday', __dir__
|
173
|
+
self.default_adapter = :net_http
|
244
174
|
|
245
|
-
|
246
|
-
require_lib 'autoload'
|
247
|
-
end
|
175
|
+
require_lib 'autoload' unless ENV['FARADAY_NO_AUTOLOAD']
|
248
176
|
end
|