faraday_middleware 1.0.0 → 1.1.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/README.md +6 -7
- data/lib/faraday_middleware/rack_compatible.rb +1 -3
- data/lib/faraday_middleware/request/encode_json.rb +1 -1
- data/lib/faraday_middleware/request/oauth.rb +1 -3
- data/lib/faraday_middleware/request/oauth2.rb +1 -3
- data/lib/faraday_middleware/response/caching.rb +1 -0
- data/lib/faraday_middleware/response/follow_redirects.rb +1 -1
- data/lib/faraday_middleware/response_middleware.rb +2 -4
- data/lib/faraday_middleware/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b061911e8925a657ce571d5d3a096e6a9b43e8abcca0bec121fc81edb3b65c7
|
4
|
+
data.tar.gz: 4722349158a61b9ee4789fc1046596ac80a44a7dd76eba178cb32330a5583a9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d331ca5a71fda7702da83967033355c6ad896ea6026af78e248bf21c027a7f4287ab117ae81cb9dad0c0dc2d50eaaba1ab1a02f6a54a15436970e9c4232306f
|
7
|
+
data.tar.gz: 49b8a45c1aa7e06764bc5433b83f469544c509c7c372bc986dadd497dd987054d5e02160d5019679b23acd068b32bd7c86c09498f2e29b9ccdca6376b316f634
|
data/README.md
CHANGED
@@ -2,7 +2,6 @@ Faraday Middleware
|
|
2
2
|
==================
|
3
3
|
[](https://rubygems.org/gems/faraday_middleware)
|
4
4
|

|
5
|
-
[](https://codeclimate.com/github/lostisland/faraday_middleware/maintainability)
|
6
5
|
|
7
6
|
A collection of useful [Faraday][] middleware. [See the documentation][docs].
|
8
7
|
|
@@ -19,12 +18,12 @@ Some dependent libraries are needed only when using specific middleware:
|
|
19
18
|
|
20
19
|
| Middleware | Library | Notes |
|
21
20
|
| --------------------------- | -------------- | ----- |
|
22
|
-
| [FaradayMiddleware::Instrumentation](https://github.com/lostisland/faraday_middleware/blob/
|
23
|
-
| [FaradayMiddleware::OAuth](https://github.com/lostisland/faraday_middleware/blob/
|
24
|
-
| [FaradayMiddleware::ParseXml](https://github.com/lostisland/faraday_middleware/blob/
|
25
|
-
| [FaradayMiddleware::ParseYaml](https://github.com/lostisland/faraday_middleware/blob/
|
26
|
-
| [FaradayMiddleware::Mashify](https://github.com/lostisland/faraday_middleware/blob/
|
27
|
-
| [FaradayMiddleware::Rashify](https://github.com/lostisland/faraday_middleware/blob/
|
21
|
+
| [FaradayMiddleware::Instrumentation](https://github.com/lostisland/faraday_middleware/blob/main/lib/faraday_middleware/instrumentation.rb) | [`activesupport`](https://rubygems.org/gems/activesupport) | |
|
22
|
+
| [FaradayMiddleware::OAuth](https://github.com/lostisland/faraday_middleware/blob/main/lib/faraday_middleware/request/oauth.rb) | [`simple_oauth`](https://rubygems.org/gems/simple_oauth) | |
|
23
|
+
| [FaradayMiddleware::ParseXml](https://github.com/lostisland/faraday_middleware/blob/main/lib/faraday_middleware/response/parse_xml.rb) | [`multi_xml`](https://rubygems.org/gems/multi_xml) | |
|
24
|
+
| [FaradayMiddleware::ParseYaml](https://github.com/lostisland/faraday_middleware/blob/main/lib/faraday_middleware/response/parse_yaml.rb) | [`safe_yaml`](https://rubygems.org/gems/safe_yaml) | Not backwards compatible with versions of this middleware prior to `faraday_middleware` v0.12. See code comments for alternatives. |
|
25
|
+
| [FaradayMiddleware::Mashify](https://github.com/lostisland/faraday_middleware/blob/main/lib/faraday_middleware/response/mashify.rb) | [`hashie`](https://rubygems.org/gems/hashie) | |
|
26
|
+
| [FaradayMiddleware::Rashify](https://github.com/lostisland/faraday_middleware/blob/main/lib/faraday_middleware/response/rashify.rb) | [`rash_alt`](https://rubygems.org/gems/rash_alt) | Make sure to uninstall original `rash` gem to avoid conflict. |
|
28
27
|
|
29
28
|
Examples
|
30
29
|
--------
|
@@ -80,9 +80,7 @@ module FaradayMiddleware
|
|
80
80
|
def finalize_response(env, rack_response)
|
81
81
|
status, headers, body = rack_response
|
82
82
|
body = body.inject { |str, part| str << part }
|
83
|
-
unless headers.is_a?(Faraday::Utils::Headers)
|
84
|
-
headers = Faraday::Utils::Headers.new(headers)
|
85
|
-
end
|
83
|
+
headers = Faraday::Utils::Headers.new(headers) unless headers.is_a?(Faraday::Utils::Headers)
|
86
84
|
|
87
85
|
env.update status: status.to_i,
|
88
86
|
body: body,
|
@@ -38,9 +38,7 @@ module FaradayMiddleware
|
|
38
38
|
end
|
39
39
|
|
40
40
|
def call(env)
|
41
|
-
if sign_request?(env)
|
42
|
-
env[:request_headers][AUTH_HEADER] ||= oauth_header(env).to_s
|
43
|
-
end
|
41
|
+
env[:request_headers][AUTH_HEADER] ||= oauth_header(env).to_s if sign_request?(env)
|
44
42
|
@app.call(env)
|
45
43
|
end
|
46
44
|
|
@@ -63,9 +63,7 @@ module FaradayMiddleware
|
|
63
63
|
@param_name = options.fetch(:param_name, PARAM_NAME).to_s
|
64
64
|
@token_type = options.fetch(:token_type, TOKEN_TYPE).to_s
|
65
65
|
|
66
|
-
if @token_type == 'param' && @param_name.empty?
|
67
|
-
raise ArgumentError, ":param_name can't be blank"
|
68
|
-
end
|
66
|
+
raise ArgumentError, ":param_name can't be blank" if @token_type == 'param' && @param_name.empty?
|
69
67
|
|
70
68
|
return unless options[:token_type].nil?
|
71
69
|
|
@@ -8,6 +8,7 @@ module FaradayMiddleware
|
|
8
8
|
# Public: Caches GET responses and pulls subsequent ones from the cache.
|
9
9
|
class Caching < Faraday::Middleware
|
10
10
|
attr_reader :cache
|
11
|
+
|
11
12
|
# Internal: List of status codes that can be cached:
|
12
13
|
# * 200 - 'OK'
|
13
14
|
# * 203 - 'Non-Authoritative Information'
|
@@ -133,7 +133,7 @@ module FaradayMiddleware
|
|
133
133
|
def safe_escape(uri)
|
134
134
|
uri = uri.split('#')[0] # we want to remove the fragment if present
|
135
135
|
uri.to_s.gsub(URI_UNSAFE) do |match|
|
136
|
-
|
136
|
+
"%#{match.unpack('H2' * match.bytesize).join('%').upcase}"
|
137
137
|
end
|
138
138
|
end
|
139
139
|
|
@@ -34,9 +34,7 @@ module FaradayMiddleware
|
|
34
34
|
|
35
35
|
def call(environment)
|
36
36
|
@app.call(environment).on_complete do |env|
|
37
|
-
if process_response_type?(response_type(env)) && parse_response?(env)
|
38
|
-
process_response(env)
|
39
|
-
end
|
37
|
+
process_response(env) if process_response_type?(response_type(env)) && parse_response?(env)
|
40
38
|
end
|
41
39
|
end
|
42
40
|
|
@@ -44,7 +42,7 @@ module FaradayMiddleware
|
|
44
42
|
env[:raw_body] = env[:body] if preserve_raw?(env)
|
45
43
|
env[:body] = parse(env[:body])
|
46
44
|
rescue Faraday::ParsingError => e
|
47
|
-
raise Faraday::ParsingError.new(e, env[:response])
|
45
|
+
raise Faraday::ParsingError.new(e.wrapped_exception, env[:response])
|
48
46
|
end
|
49
47
|
|
50
48
|
# Parse the response body.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: faraday_middleware
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erik Michaels-Ober
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-07-31 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faraday
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
|
-
rubygems_version: 3.0.3
|
79
|
+
rubygems_version: 3.0.3.1
|
80
80
|
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: Various middleware for Faraday
|