faraday 0.9.1 → 0.17.3
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 +5 -5
- data/CHANGELOG.md +212 -0
- data/LICENSE.md +1 -1
- data/README.md +203 -28
- data/Rakefile +6 -64
- data/lib/faraday/adapter/em_http.rb +17 -11
- data/lib/faraday/adapter/em_http_ssl_patch.rb +1 -1
- data/lib/faraday/adapter/em_synchrony.rb +19 -5
- data/lib/faraday/adapter/excon.rb +13 -11
- data/lib/faraday/adapter/httpclient.rb +31 -9
- data/lib/faraday/adapter/net_http.rb +36 -14
- data/lib/faraday/adapter/net_http_persistent.rb +37 -17
- data/lib/faraday/adapter/patron.rb +44 -21
- data/lib/faraday/adapter/rack.rb +1 -1
- data/lib/faraday/adapter/test.rb +79 -28
- data/lib/faraday/adapter/typhoeus.rb +4 -115
- data/lib/faraday/adapter.rb +10 -1
- data/lib/faraday/autoload.rb +1 -1
- data/lib/faraday/connection.rb +72 -20
- data/lib/faraday/deprecate.rb +107 -0
- data/lib/faraday/error.rb +132 -27
- data/lib/faraday/options.rb +45 -22
- data/lib/faraday/parameters.rb +56 -39
- data/lib/faraday/rack_builder.rb +29 -4
- data/lib/faraday/request/authorization.rb +1 -2
- data/lib/faraday/request/multipart.rb +7 -2
- data/lib/faraday/request/retry.rb +84 -19
- data/lib/faraday/request.rb +22 -0
- data/lib/faraday/response/logger.rb +29 -8
- data/lib/faraday/response/raise_error.rb +7 -3
- data/lib/faraday/response.rb +9 -5
- data/lib/faraday/utils.rb +32 -3
- data/lib/faraday.rb +15 -36
- data/spec/faraday/deprecate_spec.rb +69 -0
- data/spec/faraday/error_spec.rb +102 -0
- data/spec/faraday/response/raise_error_spec.rb +106 -0
- data/spec/spec_helper.rb +105 -0
- data/test/adapters/em_http_test.rb +10 -0
- data/test/adapters/em_synchrony_test.rb +22 -10
- data/test/adapters/excon_test.rb +10 -0
- data/test/adapters/httpclient_test.rb +14 -1
- data/test/adapters/integration.rb +17 -8
- data/test/adapters/logger_test.rb +65 -11
- data/test/adapters/net_http_persistent_test.rb +96 -2
- data/test/adapters/net_http_test.rb +67 -2
- data/test/adapters/patron_test.rb +28 -8
- data/test/adapters/rack_test.rb +8 -1
- data/test/adapters/test_middleware_test.rb +46 -3
- data/test/adapters/typhoeus_test.rb +19 -9
- data/test/composite_read_io_test.rb +16 -18
- data/test/connection_test.rb +294 -78
- data/test/env_test.rb +55 -5
- data/test/helper.rb +11 -17
- data/test/middleware/retry_test.rb +115 -10
- data/test/middleware_stack_test.rb +97 -10
- data/test/options_test.rb +97 -16
- data/test/parameters_test.rb +94 -1
- data/test/request_middleware_test.rb +24 -40
- data/test/response_middleware_test.rb +4 -4
- data/test/utils_test.rb +40 -0
- metadata +21 -66
- data/.document +0 -6
- data/CONTRIBUTING.md +0 -36
- data/Gemfile +0 -25
- data/faraday.gemspec +0 -34
- data/script/cached-bundle +0 -46
- data/script/console +0 -7
- data/script/generate_certs +0 -42
- data/script/package +0 -7
- data/script/proxy-server +0 -42
- data/script/release +0 -17
- data/script/s3-put +0 -71
- data/script/server +0 -36
- data/script/test +0 -172
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: cbaf8ddf8082d43401d642a52b6bc8514455824c90043970871e60b193375f2a
|
4
|
+
data.tar.gz: 89c3f88e540530a293a35839d67f761d1e3dca04266a8f1e4a5534e6e09a6a1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1523207ad94f95fae692736859cf36e17e0bf5cb14a95e8bfc01ad595833bacfc57bb3c95d87cd910c913ccb44aa94391fa6bfe762ebf1b7fe08aaf301ac62fa
|
7
|
+
data.tar.gz: 904372a2c809897cfadd6d856d98bf65396ce869124738f6693c28ebee7254b0792d027ad67bd59d660a0b71d93ac09db73f640da3cee8e479eb81b9458a6fd1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,217 @@
|
|
1
1
|
# Faraday Changelog
|
2
2
|
|
3
|
+
## v0.17.3
|
4
|
+
|
5
|
+
Fixes:
|
6
|
+
|
7
|
+
* Reverts changes in error classes hierarchy. #1092 (@iMacTia)
|
8
|
+
* Fix Ruby 1.9 syntax errors and improve Error class testing #1094 (@BanzaiMan,
|
9
|
+
@mrexox, @technoweenie)
|
10
|
+
|
11
|
+
Misc:
|
12
|
+
|
13
|
+
* Stops using `&Proc.new` for block forwarding. #1083 (@olleolleolle)
|
14
|
+
* Update CI to test against ruby 2.0-2.7 #1087, #1099 (@iMacTia, @olleolleolle,
|
15
|
+
@technoweenie)
|
16
|
+
* require FARADAY_DEPRECATE=warn to show Faraday v1.0 deprecation warnings
|
17
|
+
#1098 (@technoweenie)
|
18
|
+
|
19
|
+
## v0.17.1
|
20
|
+
|
21
|
+
Final release before Faraday v1.0, with important fixes for Ruby 2.7.
|
22
|
+
|
23
|
+
Fixes:
|
24
|
+
|
25
|
+
* RaiseError response middleware raises exception if HTTP client returns a nil
|
26
|
+
status. #1042 (@jonnyom, @BobbyMcWho)
|
27
|
+
|
28
|
+
Misc:
|
29
|
+
|
30
|
+
* Fix Ruby 2.7 warnings (#1009)
|
31
|
+
* Add `Faraday::Deprecate` to warn about upcoming v1.0 changes. (#1054, #1059,
|
32
|
+
#1076, #1077)
|
33
|
+
* Add release notes up to current in CHANGELOG.md (#1066)
|
34
|
+
* Port minimal rspec suite from main branch to run backported tests. (#1058)
|
35
|
+
|
36
|
+
## v0.17.0
|
37
|
+
|
38
|
+
This release is the same as v0.15.4. It was pushed to cover up releases
|
39
|
+
v0.16.0-v0.16.2.
|
40
|
+
|
41
|
+
## v0.15.4
|
42
|
+
|
43
|
+
* Expose `pool_size` as a option for the NetHttpPersistent adapter (#834)
|
44
|
+
|
45
|
+
## v0.15.3
|
46
|
+
|
47
|
+
* Make Faraday::Request serialisable with Marshal. (#803)
|
48
|
+
* Add DEFAULT_EXCEPTIONS constant to Request::Retry (#814)
|
49
|
+
* Add support for Ruby 2.6 Net::HTTP write_timeout (#824)
|
50
|
+
|
51
|
+
## v0.15.2
|
52
|
+
|
53
|
+
* Prevents `Net::HTTP` adapters to retry request internally by setting `max_retries` to 0 if available (Ruby 2.5+). (#799)
|
54
|
+
* Fixes `NestedParamsEncoder` handling of empty array values (#801)
|
55
|
+
|
56
|
+
## v0.15.1
|
57
|
+
|
58
|
+
* NetHttpPersistent adapter better reuse of SSL connections (#793)
|
59
|
+
* Refactor: inline cached_connection (#797)
|
60
|
+
* Logger middleware: use $stdout instead of STDOUT (#794)
|
61
|
+
* Fix: do not memoize/reuse Patron session (#796)
|
62
|
+
|
63
|
+
Also in this release:
|
64
|
+
|
65
|
+
* Allow setting min/max ssl version for Net::HTTP (#792)
|
66
|
+
* Allow setting min/max ssl version for Excon (#795)
|
67
|
+
|
68
|
+
## v0.15.0
|
69
|
+
|
70
|
+
Features:
|
71
|
+
|
72
|
+
* Added retry block option to retry middleware. (#770)
|
73
|
+
* Retry middleware improvements (honour Retry-After header, retry statuses) (#773)
|
74
|
+
* Improve response logger middleware output (#784)
|
75
|
+
|
76
|
+
Fixes:
|
77
|
+
|
78
|
+
* Remove unused class error (#767)
|
79
|
+
* Fix minor typo in README (#760)
|
80
|
+
* Reuse persistent connections when using net-http-persistent (#778)
|
81
|
+
* Fix Retry middleware documentation (#781)
|
82
|
+
* Returns the http response when giving up on retrying by status (#783)
|
83
|
+
|
84
|
+
## v0.14.0
|
85
|
+
|
86
|
+
Features:
|
87
|
+
|
88
|
+
* Allow overriding env proxy (#754)
|
89
|
+
* Remove legacy Typhoeus adapter (#715)
|
90
|
+
* External Typhoeus Adapter Compatibility (#748)
|
91
|
+
* Warn about missing adapter when making a request (#743)
|
92
|
+
* Faraday::Adapter::Test stubs now support entire urls (with host) (#741)
|
93
|
+
|
94
|
+
Fixes:
|
95
|
+
|
96
|
+
* If proxy is manually provided, this takes priority over `find_proxy` (#724)
|
97
|
+
* Fixes the behaviour for Excon's open_timeout (not setting write_timeout anymore) (#731)
|
98
|
+
* Handle all connection timeout messages in Patron (#687)
|
99
|
+
|
100
|
+
## v0.13.1
|
101
|
+
|
102
|
+
* Fixes an incompatibility with Addressable::URI being used as uri_parser
|
103
|
+
|
104
|
+
## v0.13.0
|
105
|
+
|
106
|
+
Features:
|
107
|
+
|
108
|
+
* Dynamically reloads the proxy when performing a request on an absolute domain (#701)
|
109
|
+
* Adapter support for Net::HTTP::Persistent v3.0.0 (#619)
|
110
|
+
|
111
|
+
Fixes:
|
112
|
+
|
113
|
+
* Prefer #hostname over #host. (#714)
|
114
|
+
* Fixes an edge-case issue with response headers parsing (missing HTTP header) (#719)
|
115
|
+
|
116
|
+
## v0.12.2
|
117
|
+
|
118
|
+
* Parse headers from aggregated proxy requests/responses (#681)
|
119
|
+
* Guard against invalid middleware configuration with warning (#685)
|
120
|
+
* Do not use :insecure option by default in Patron (#691)
|
121
|
+
* Fixes an issue with HTTPClient not raising a `Faraday::ConnectionFailed` (#702)
|
122
|
+
* Fixes YAML serialization/deserialization for `Faraday::Utils::Headers` (#690)
|
123
|
+
* Fixes an issue with Options having a nil value (#694)
|
124
|
+
* Fixes an issue with Faraday.default_connection not using Faraday.default_connection_options (#698)
|
125
|
+
* Fixes an issue with Options.merge! and Faraday instrumentation middleware (#710)
|
126
|
+
|
127
|
+
## v0.12.1
|
128
|
+
|
129
|
+
* Fix an issue with Patron tests failing on jruby
|
130
|
+
* Fix an issue with new `rewind_files` feature that was causing an exception when the body was not an Hash
|
131
|
+
* Expose wrapped_exception in all client errors
|
132
|
+
* Add Authentication Section to the ReadMe
|
133
|
+
|
134
|
+
## v0.12.0.1
|
135
|
+
|
136
|
+
* Hotfix release to address an issue with TravisCI deploy on Rubygems
|
137
|
+
|
138
|
+
## v0.12.0
|
139
|
+
|
140
|
+
Features:
|
141
|
+
|
142
|
+
* Proxy feature now relies on Ruby `URI::Generic#find_proxy` and can use `no_proxy` ENV variable (not compatible with ruby < 2.0)
|
143
|
+
* Adds support for `context` request option to pass arbitrary information to middlewares
|
144
|
+
|
145
|
+
Fixes:
|
146
|
+
|
147
|
+
* Fix an issue with options that was causing new options to override defaults ones unexpectedly
|
148
|
+
* Rewind `UploadIO`s on retry to fix a compatibility issue
|
149
|
+
* Make multipart boundary unique
|
150
|
+
* Improvements in `README.md`
|
151
|
+
|
152
|
+
## v0.11.0
|
153
|
+
|
154
|
+
Features:
|
155
|
+
|
156
|
+
* Add `filter` method to Logger middleware
|
157
|
+
* Add support for Ruby2.4 and Minitest 6
|
158
|
+
* Introduce block syntax to customise the adapter
|
159
|
+
|
160
|
+
Fixes:
|
161
|
+
|
162
|
+
* Fix an issue that was allowing to override `default_connection_options` from a connection instance
|
163
|
+
* Fix a bug that was causing newline escape characters ("\n") to be used when building the Authorization header
|
164
|
+
|
165
|
+
## v0.10.1
|
166
|
+
|
167
|
+
- Fix an issue with HTTPClient adapter that was causing the SSL to be reset on every request
|
168
|
+
- Rescue `IOError` instead of specific subclass
|
169
|
+
- `Faraday::Utils::Headers` can now be successfully serialised in YAML
|
170
|
+
- Handle `default_connection_options` set with hash
|
171
|
+
|
172
|
+
## v0.10.0
|
173
|
+
|
174
|
+
Breaking changes:
|
175
|
+
- Drop support for Ruby 1.8
|
176
|
+
|
177
|
+
Features:
|
178
|
+
- Include wrapped exception/reponse in ClientErrors
|
179
|
+
- Add `response.reason_phrase`
|
180
|
+
- Provide option to selectively skip logging request/response headers
|
181
|
+
- Add regex support for pattern matching in `test` adapter
|
182
|
+
|
183
|
+
Fixes:
|
184
|
+
- Add `Faraday.respond_to?` to find methods managed by `method_missing`
|
185
|
+
- em-http: `request.host` instead of `connection.host` should be taken for SSL validations
|
186
|
+
- Allow `default_connection_options` to be merged when options are passed as url parameter
|
187
|
+
- Improve splitting key-value pairs in raw HTTP headers
|
188
|
+
|
189
|
+
## v0.9.2
|
190
|
+
|
191
|
+
Adapters:
|
192
|
+
- Enable gzip compression for httpclient
|
193
|
+
- Fixes default certificate store for httpclient not having default paths.
|
194
|
+
- Make excon adapter compatible with 0.44 excon version
|
195
|
+
- Add compatibility with Patron 0.4.20
|
196
|
+
- Determine default port numbers in Net::HTTP adapters (Addressable compatibility)
|
197
|
+
- em-http: wrap "connection closed by server" as ConnectionFailed type
|
198
|
+
- Wrap Errno::ETIMEDOUT in Faraday::Error::TimeoutError
|
199
|
+
|
200
|
+
Utils:
|
201
|
+
- Add Rack-compatible support for parsing `a[][b]=c` nested queries
|
202
|
+
- Encode nil values in queries different than empty strings. Before: `a=`; now: `a`.
|
203
|
+
- Have `Faraday::Utils::Headers#replace` clear internal key cache
|
204
|
+
- Dup the internal key cache when a Headers hash is copied
|
205
|
+
|
206
|
+
Env and middleware:
|
207
|
+
- Ensure `env` stored on middleware response has reference to the response
|
208
|
+
- Ensure that Response properties are initialized during `on_complete` (VCR compatibility)
|
209
|
+
- Copy request options in Faraday::Connection#dup
|
210
|
+
- Env custom members should be copied by Env.from(env)
|
211
|
+
- Honour per-request `request.options.params_encoder`
|
212
|
+
- Fix `interval_randomness` data type for Retry middleware
|
213
|
+
- Add maximum interval option for Retry middleware
|
214
|
+
|
3
215
|
## v0.9.1
|
4
216
|
|
5
217
|
* Refactor Net:HTTP adapter so that with_net_http_connection can be overridden to allow pooled connections. (@Ben-M)
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
@@ -1,30 +1,88 @@
|
|
1
1
|
# Faraday
|
2
2
|
|
3
|
+
[](https://rubygems.org/gems/faraday)
|
4
|
+
[](https://travis-ci.org/lostisland/faraday)
|
5
|
+
[](https://coveralls.io/github/lostisland/faraday?branch=master)
|
6
|
+
[](https://codeclimate.com/github/lostisland/faraday)
|
7
|
+
[](https://gitter.im/lostisland/faraday?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
8
|
+
|
9
|
+
|
3
10
|
Faraday is an HTTP client lib that provides a common interface over many
|
4
11
|
adapters (such as Net::HTTP) and embraces the concept of Rack middleware when
|
5
12
|
processing the request/response cycle.
|
6
13
|
|
7
|
-
Faraday supports these adapters:
|
14
|
+
Faraday supports these adapters out of the box:
|
8
15
|
|
9
|
-
* Net::HTTP
|
16
|
+
* [Net::HTTP][net_http] _(default)_
|
17
|
+
* [Net::HTTP::Persistent][persistent]
|
10
18
|
* [Excon][]
|
11
|
-
* [Typhoeus][]
|
12
19
|
* [Patron][]
|
13
20
|
* [EventMachine][]
|
14
21
|
* [HTTPClient][]
|
15
22
|
|
23
|
+
Adapters are slowly being moved into their own gems, or bundled with HTTP clients:
|
24
|
+
|
25
|
+
* [Typhoeus][]
|
26
|
+
|
16
27
|
It also includes a Rack adapter for hitting loaded Rack applications through
|
17
28
|
Rack::Test, and a Test adapter for stubbing requests by hand.
|
18
29
|
|
30
|
+
## API documentation
|
31
|
+
|
32
|
+
Available at [rubydoc.info](http://www.rubydoc.info/gems/faraday).
|
33
|
+
|
34
|
+
## Faraday 1.0
|
35
|
+
|
36
|
+
Faraday 1.0 will ship soon! Faraday 0.17 will be the last 0.x release, except for serious bugs or security issues.
|
37
|
+
Faraday 1.0 is a major release, but it will be mostly backwards-compatible with 0.x, so we strongly encourage you
|
38
|
+
to use it on your next projects and/or consider to upgrade your existing ones.
|
39
|
+
Upgrading is simple:
|
40
|
+
|
41
|
+
* Checkout the new code from [`master`](https://github.com/lostisland/faraday) and the new [Documentation Website](https://lostisland.github.io/faraday/).
|
42
|
+
* If you're upgrading an existing project, check the [UPGRADING](https://github.com/lostisland/faraday/blob/master/UPGRADING.md) file.
|
43
|
+
* You can also enable upgrade warnings on apps with Faraday 0.x if you run them with `FARADAY_DEPRECATE=warn` or `FARADAY_DEPRECATE=1` in ENV.
|
44
|
+
|
19
45
|
## Usage
|
20
46
|
|
47
|
+
### Basic Use
|
48
|
+
|
49
|
+
```ruby
|
50
|
+
response = Faraday.get 'http://sushi.com/nigiri/sake.json'
|
51
|
+
```
|
52
|
+
A simple `get` request can be performed by using the syntax described above. This works if you don't need to set up anything; you can roll with just the default middleware
|
53
|
+
stack and default adapter (see [Faraday::RackBuilder#initialize](https://github.com/lostisland/faraday/blob/master/lib/faraday/rack_builder.rb)).
|
54
|
+
|
55
|
+
A more flexible way to use Faraday is to start with a Connection object. If you want to keep the same defaults, you can use this syntax:
|
56
|
+
|
57
|
+
```ruby
|
58
|
+
conn = Faraday.new(:url => 'http://www.example.com')
|
59
|
+
response = conn.get '/users' # GET http://www.example.com/users'
|
60
|
+
```
|
61
|
+
|
62
|
+
Connections can also take an options hash as a parameter or be configured by using a block. Checkout the section called [Advanced middleware usage](#advanced-middleware-usage) for more details about how to use this block for configurations.
|
63
|
+
Since the default middleware stack uses url\_encoded middleware and default adapter, use them on building your own middleware stack.
|
64
|
+
|
21
65
|
```ruby
|
22
66
|
conn = Faraday.new(:url => 'http://sushi.com') do |faraday|
|
23
67
|
faraday.request :url_encoded # form-encode POST params
|
24
|
-
faraday.response :logger # log requests to
|
68
|
+
faraday.response :logger # log requests to $stdout
|
69
|
+
faraday.adapter Faraday.default_adapter # make requests with Net::HTTP
|
70
|
+
end
|
71
|
+
|
72
|
+
# Filter sensitive information from logs with a regex matcher
|
73
|
+
|
74
|
+
conn = Faraday.new(:url => 'http://sushi.com/api_key=s3cr3t') do |faraday|
|
75
|
+
faraday.request :url_encoded # form-encode POST params
|
76
|
+
faraday.response :logger do | logger |
|
77
|
+
logger.filter(/(api_key=)(\w+)/,'\1[REMOVED]')
|
78
|
+
end
|
25
79
|
faraday.adapter Faraday.default_adapter # make requests with Net::HTTP
|
26
80
|
end
|
81
|
+
```
|
82
|
+
|
83
|
+
Once you have the connection object, use it to make HTTP requests. You can pass parameters to it in a few different ways:
|
27
84
|
|
85
|
+
```ruby
|
28
86
|
## GET ##
|
29
87
|
|
30
88
|
response = conn.get '/nigiri/sake.json' # GET http://sushi.com/nigiri/sake.json
|
@@ -40,7 +98,11 @@ end
|
|
40
98
|
## POST ##
|
41
99
|
|
42
100
|
conn.post '/nigiri', { :name => 'Maguro' } # POST "name=maguro" to http://sushi.com/nigiri
|
101
|
+
```
|
102
|
+
|
103
|
+
Some configuration options can be adjusted per request:
|
43
104
|
|
105
|
+
```ruby
|
44
106
|
# post payload as JSON instead of "www-form-urlencoded" encoding:
|
45
107
|
conn.post do |req|
|
46
108
|
req.url '/nigiri'
|
@@ -57,11 +119,74 @@ conn.get do |req|
|
|
57
119
|
end
|
58
120
|
```
|
59
121
|
|
60
|
-
|
61
|
-
stack and default adapter (see [Faraday::RackBuilder#initialize](https://github.com/lostisland/faraday/blob/master/lib/faraday/rack_builder.rb)):
|
122
|
+
And you can inject arbitrary data into the request using the `context` option:
|
62
123
|
|
63
124
|
```ruby
|
64
|
-
|
125
|
+
# Anything you inject using context option will be available in the env on all middlewares
|
126
|
+
|
127
|
+
conn.get do |req|
|
128
|
+
req.url '/search'
|
129
|
+
req.options.context = {
|
130
|
+
foo: 'foo',
|
131
|
+
bar: 'bar'
|
132
|
+
}
|
133
|
+
end
|
134
|
+
```
|
135
|
+
|
136
|
+
### Changing how parameters are serialized
|
137
|
+
|
138
|
+
Sometimes you need to send the same URL parameter multiple times with different
|
139
|
+
values. This requires manually setting the parameter encoder and can be done on
|
140
|
+
either per-connection or per-request basis.
|
141
|
+
|
142
|
+
```ruby
|
143
|
+
# per-connection setting
|
144
|
+
conn = Faraday.new :request => { :params_encoder => Faraday::FlatParamsEncoder }
|
145
|
+
|
146
|
+
conn.get do |req|
|
147
|
+
# per-request setting:
|
148
|
+
# req.options.params_encoder = my_encoder
|
149
|
+
req.params['roll'] = ['california', 'philadelphia']
|
150
|
+
end
|
151
|
+
# GET 'http://sushi.com?roll=california&roll=philadelphia'
|
152
|
+
```
|
153
|
+
|
154
|
+
The value of Faraday `params_encoder` can be any object that responds to:
|
155
|
+
|
156
|
+
* `encode(hash) #=> String`
|
157
|
+
* `decode(string) #=> Hash`
|
158
|
+
|
159
|
+
The encoder will affect both how query strings are processed and how POST bodies
|
160
|
+
get serialized. The default encoder is Faraday::NestedParamsEncoder.
|
161
|
+
|
162
|
+
## Authentication
|
163
|
+
|
164
|
+
Basic and Token authentication are handled by Faraday::Request::BasicAuthentication and Faraday::Request::TokenAuthentication respectively. These can be added as middleware manually or through the helper methods.
|
165
|
+
|
166
|
+
```ruby
|
167
|
+
Faraday.new(...) do |conn|
|
168
|
+
conn.basic_auth('username', 'password')
|
169
|
+
end
|
170
|
+
|
171
|
+
Faraday.new(...) do |conn|
|
172
|
+
conn.token_auth('authentication-token')
|
173
|
+
end
|
174
|
+
```
|
175
|
+
|
176
|
+
## Proxy
|
177
|
+
|
178
|
+
Faraday will try to automatically infer the proxy settings from your system using `URI#find_proxy`.
|
179
|
+
This will retrieve them from environment variables such as http_proxy, ftp_proxy, no_proxy, etc.
|
180
|
+
If for any reason you want to disable this behaviour, you can do so by setting the global varibale `ignore_env_proxy`:
|
181
|
+
|
182
|
+
```ruby
|
183
|
+
Faraday.ignore_env_proxy = true
|
184
|
+
```
|
185
|
+
|
186
|
+
You can also specify a custom proxy when initializing the connection
|
187
|
+
|
188
|
+
```ruby
|
189
|
+
Faraday.new('http://www.example.com', :proxy => 'http://proxy.com')
|
65
190
|
```
|
66
191
|
|
67
192
|
## Advanced middleware usage
|
@@ -75,7 +200,11 @@ Faraday.new(...) do |conn|
|
|
75
200
|
# POST/PUT params encoders:
|
76
201
|
conn.request :multipart
|
77
202
|
conn.request :url_encoded
|
203
|
+
|
204
|
+
# add custom middleware
|
205
|
+
conn.use MyMiddleware
|
78
206
|
|
207
|
+
# Last middleware must be the adapter:
|
79
208
|
conn.adapter :net_http
|
80
209
|
end
|
81
210
|
```
|
@@ -138,6 +267,53 @@ later, response. Some keys are:
|
|
138
267
|
:response_headers
|
139
268
|
```
|
140
269
|
|
270
|
+
## Ad-hoc adapters customization
|
271
|
+
|
272
|
+
Faraday is intended to be a generic interface between your code and the adapter. However, sometimes you need to access a feature specific to one of the adapters that is not covered in Faraday's interface.
|
273
|
+
|
274
|
+
When that happens, you can pass a block when specifying the adapter to customize it. The block parameter will change based on the adapter you're using. See below for some examples.
|
275
|
+
|
276
|
+
### NetHttp
|
277
|
+
```ruby
|
278
|
+
conn = Faraday.new(...) do |f|
|
279
|
+
f.adapter :net_http do |http| # yields Net::HTTP
|
280
|
+
http.idle_timeout = 100
|
281
|
+
http.verify_callback = lambda do | preverify_ok, cert_store |
|
282
|
+
# do something here...
|
283
|
+
end
|
284
|
+
end
|
285
|
+
end
|
286
|
+
```
|
287
|
+
|
288
|
+
### NetHttpPersistent
|
289
|
+
```ruby
|
290
|
+
conn = Faraday.new(...) do |f|
|
291
|
+
f.adapter :net_http_persistent, pool_size: 5 do |http| # yields Net::HTTP::Persistent
|
292
|
+
http.idle_timeout = 100
|
293
|
+
http.retry_change_requests = true
|
294
|
+
end
|
295
|
+
end
|
296
|
+
```
|
297
|
+
|
298
|
+
### Patron
|
299
|
+
```ruby
|
300
|
+
conn = Faraday.new(...) do |f|
|
301
|
+
f.adapter :patron do |session| # yields Patron::Session
|
302
|
+
session.max_redirects = 10
|
303
|
+
end
|
304
|
+
end
|
305
|
+
```
|
306
|
+
|
307
|
+
### HTTPClient
|
308
|
+
```ruby
|
309
|
+
conn = Faraday.new(...) do |f|
|
310
|
+
f.adapter :httpclient do |client| # yields HTTPClient
|
311
|
+
client.keep_alive_timeout = 20
|
312
|
+
client.ssl_config.timeout = 25
|
313
|
+
end
|
314
|
+
end
|
315
|
+
```
|
316
|
+
|
141
317
|
## Using Faraday for testing
|
142
318
|
|
143
319
|
```ruby
|
@@ -173,23 +349,14 @@ resp = test.get '/else' #=> raises "no such stub" error
|
|
173
349
|
stubs.verify_stubbed_calls
|
174
350
|
```
|
175
351
|
|
176
|
-
## TODO
|
177
|
-
|
178
|
-
* support streaming requests/responses
|
179
|
-
* better stubbing API
|
180
|
-
|
181
352
|
## Supported Ruby versions
|
182
353
|
|
183
354
|
This library aims to support and is [tested against][travis] the following Ruby
|
184
355
|
implementations:
|
185
356
|
|
186
|
-
*
|
187
|
-
*
|
188
|
-
*
|
189
|
-
* MRI 2.0.0
|
190
|
-
* MRI 2.1.0
|
191
|
-
* [JRuby][]
|
192
|
-
* [Rubinius][]
|
357
|
+
* Ruby 1.9.3+
|
358
|
+
* [JRuby][] 1.7+
|
359
|
+
* [Rubinius][] 2+
|
193
360
|
|
194
361
|
If something doesn't work on one of these Ruby versions, it's a bug.
|
195
362
|
|
@@ -204,17 +371,25 @@ implementation, you will be responsible for providing patches in a timely
|
|
204
371
|
fashion. If critical issues for a particular implementation exist at the time
|
205
372
|
of a major release, support for that Ruby version may be dropped.
|
206
373
|
|
374
|
+
## Contribute
|
375
|
+
|
376
|
+
Do you want to contribute to Faraday?
|
377
|
+
Open the issues page and check for the `help wanted` label!
|
378
|
+
But before you start coding, please read our [Contributing Guide](https://github.com/lostisland/faraday/blob/master/.github/CONTRIBUTING.md)
|
379
|
+
|
207
380
|
## Copyright
|
208
381
|
|
209
|
-
Copyright (c) 2009-
|
382
|
+
Copyright (c) 2009-2017 [Rick Olson](mailto:technoweenie@gmail.com), Zack Hobson.
|
210
383
|
See [LICENSE][] for details.
|
211
384
|
|
212
|
-
[
|
213
|
-
[
|
214
|
-
[
|
215
|
-
[
|
385
|
+
[net_http]: http://ruby-doc.org/stdlib/libdoc/net/http/rdoc/Net/HTTP.html
|
386
|
+
[persistent]: https://github.com/drbrain/net-http-persistent
|
387
|
+
[travis]: https://travis-ci.org/lostisland/faraday
|
388
|
+
[excon]: https://github.com/excon/excon#readme
|
389
|
+
[patron]: http://toland.github.io/patron/
|
216
390
|
[eventmachine]: https://github.com/igrigorik/em-http-request#readme
|
217
|
-
[httpclient]:
|
218
|
-
[
|
219
|
-
[
|
220
|
-
[
|
391
|
+
[httpclient]: https://github.com/nahi/httpclient
|
392
|
+
[typhoeus]: https://github.com/typhoeus/typhoeus/blob/master/lib/typhoeus/adapters/faraday.rb
|
393
|
+
[jruby]: http://jruby.org/
|
394
|
+
[rubinius]: http://rubini.us/
|
395
|
+
[license]: LICENSE.md
|
data/Rakefile
CHANGED
@@ -1,71 +1,13 @@
|
|
1
|
-
|
2
|
-
require 'fileutils'
|
3
|
-
require 'openssl'
|
4
|
-
require 'rake/testtask'
|
5
|
-
require 'bundler'
|
6
|
-
Bundler::GemHelper.install_tasks
|
7
|
-
|
8
|
-
task :default => :test
|
9
|
-
|
10
|
-
## helper functions
|
11
|
-
|
12
|
-
def name
|
13
|
-
@name ||= Dir['*.gemspec'].first.split('.').first
|
14
|
-
end
|
1
|
+
# frozen_string_literal: true
|
15
2
|
|
16
|
-
|
17
|
-
|
18
|
-
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
|
19
|
-
end
|
20
|
-
|
21
|
-
def gemspec_file
|
22
|
-
"#{name}.gemspec"
|
23
|
-
end
|
24
|
-
|
25
|
-
def gem_file
|
26
|
-
"#{name}-#{version}.gem"
|
27
|
-
end
|
3
|
+
require 'rake/testtask'
|
4
|
+
require 'rspec/core/rake_task'
|
28
5
|
|
29
|
-
|
30
|
-
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
|
31
|
-
end
|
6
|
+
RSpec::Core::RakeTask.new(:spec)
|
32
7
|
|
33
|
-
|
34
|
-
# can be used as a CA bundle
|
35
|
-
def create_self_signed_cert(bits, cn, comment)
|
36
|
-
rsa = OpenSSL::PKey::RSA.new(bits)
|
37
|
-
cert = OpenSSL::X509::Certificate.new
|
38
|
-
cert.version = 2
|
39
|
-
cert.serial = 1
|
40
|
-
name = OpenSSL::X509::Name.new(cn)
|
41
|
-
cert.subject = name
|
42
|
-
cert.issuer = name
|
43
|
-
cert.not_before = Time.now
|
44
|
-
cert.not_after = Time.now + (365*24*60*60)
|
45
|
-
cert.public_key = rsa.public_key
|
46
|
-
cert.sign(rsa, OpenSSL::Digest::SHA1.new)
|
47
|
-
return [cert, rsa]
|
48
|
-
end
|
49
|
-
|
50
|
-
## standard tasks
|
8
|
+
task :default => :test
|
51
9
|
|
52
10
|
desc "Run all tests"
|
53
|
-
task :test do
|
11
|
+
task :test => :spec do
|
54
12
|
exec 'script/test'
|
55
13
|
end
|
56
|
-
|
57
|
-
desc "Generate certificates for SSL tests"
|
58
|
-
task :'test:generate_certs' do
|
59
|
-
cert, key = create_self_signed_cert(1024, [['CN', 'localhost']], 'Faraday Test CA')
|
60
|
-
FileUtils.mkdir_p 'tmp'
|
61
|
-
File.open('tmp/faraday-cert.key', 'w') {|f| f.puts(key) }
|
62
|
-
File.open('tmp/faraday-cert.crt', 'w') {|f| f.puts(cert.to_s) }
|
63
|
-
end
|
64
|
-
|
65
|
-
file 'tmp/faraday-cert.key' => :'test:generate_certs'
|
66
|
-
file 'tmp/faraday-cert.crt' => :'test:generate_certs'
|
67
|
-
|
68
|
-
desc "Open an irb session preloaded with this library"
|
69
|
-
task :console do
|
70
|
-
sh "irb -rubygems -r ./lib/#{name}.rb"
|
71
|
-
end
|