stripe 5.23.0 → 5.23.1
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/.rubocop.yml +4 -4
- data/CHANGELOG.md +3 -0
- data/VERSION +1 -1
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +7 -3
- data/lib/stripe/api_operations/list.rb +1 -1
- data/lib/stripe/api_operations/nested_resource.rb +6 -5
- data/lib/stripe/api_operations/request.rb +19 -3
- data/lib/stripe/api_operations/save.rb +7 -4
- data/lib/stripe/api_resource.rb +4 -3
- data/lib/stripe/list_object.rb +2 -2
- data/lib/stripe/oauth.rb +3 -3
- data/lib/stripe/resources/account.rb +1 -1
- data/lib/stripe/resources/bank_account.rb +1 -1
- data/lib/stripe/resources/credit_note.rb +2 -2
- data/lib/stripe/resources/customer.rb +1 -1
- data/lib/stripe/resources/invoice.rb +2 -2
- data/lib/stripe/resources/source.rb +3 -3
- data/lib/stripe/resources/subscription_item.rb +1 -1
- data/lib/stripe/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33f1cdd1289229d711bcba485944474bfc3b645aaf0402bf2d4236eff4a87a4e
|
4
|
+
data.tar.gz: d2e05e209525b15095fcdbbfacb9f3e05ce4d7eb902c06c19f468bbd5a192184
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2dcb34a7af495d2a704d3b48c35b08b1680bb24ea541e46e90c247ca57689fbaf213f798ef018a9fa9ed17644e42e76b7666f8fac2dd104f495f460492c5fb99
|
7
|
+
data.tar.gz: 232b4bef2acfc1b452ee1314c67d6e688a01a5860e4be93ad49491b65506cc3e10763c3a1090e2aeaa5137a1438f42a8f7e4f7741f4e1909f894ddb5dcef3639
|
data/.rubocop.yml
CHANGED
@@ -44,10 +44,10 @@ Metrics/ClassLength:
|
|
44
44
|
- "test/**/*.rb"
|
45
45
|
|
46
46
|
Metrics/MethodLength:
|
47
|
-
# There's ~2 long methods in `StripeClient
|
48
|
-
# little, we could move this to be closer to ~30
|
49
|
-
# probably too short).
|
50
|
-
Max:
|
47
|
+
# There's ~2 long methods in `StripeClient` and one in `NestedResource`. If
|
48
|
+
# we want to truncate those a little, we could move this to be closer to ~30
|
49
|
+
# (but the default of 10 is probably too short).
|
50
|
+
Max: 55
|
51
51
|
|
52
52
|
Metrics/ModuleLength:
|
53
53
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 5.23.1 - 2020-08-05
|
4
|
+
* [#936](https://github.com/stripe/stripe-ruby/pull/936) Rename API resource's `request` method
|
5
|
+
|
3
6
|
## 5.23.0 - 2020-08-05
|
4
7
|
* [#937](https://github.com/stripe/stripe-ruby/pull/937) Add support for the `PromotionCode` resource and APIs
|
5
8
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
5.23.
|
1
|
+
5.23.1
|
@@ -4,7 +4,7 @@ module Stripe
|
|
4
4
|
module APIOperations
|
5
5
|
module Create
|
6
6
|
def create(params = {}, opts = {})
|
7
|
-
resp, opts =
|
7
|
+
resp, opts = execute_resource_request(:post, resource_url, params, opts)
|
8
8
|
Util.convert_to_stripe_object(resp.data, opts)
|
9
9
|
end
|
10
10
|
end
|
@@ -15,15 +15,19 @@ module Stripe
|
|
15
15
|
# * +opts+ - A Hash of additional options (separate from the params /
|
16
16
|
# object values) to be added to the request. E.g. to allow for an
|
17
17
|
# idempotency_key to be passed in the request headers, or for the
|
18
|
-
# api_key to be overwritten. See
|
18
|
+
# api_key to be overwritten. See
|
19
|
+
# {APIOperations::Request.execute_resource_request}.
|
19
20
|
def delete(id, params = {}, opts = {})
|
20
|
-
resp, opts =
|
21
|
+
resp, opts = execute_resource_request(:delete,
|
22
|
+
"#{resource_url}/#{id}",
|
23
|
+
params, opts)
|
21
24
|
Util.convert_to_stripe_object(resp.data, opts)
|
22
25
|
end
|
23
26
|
end
|
24
27
|
|
25
28
|
def delete(params = {}, opts = {})
|
26
|
-
resp, opts =
|
29
|
+
resp, opts = execute_resource_request(:delete, resource_url,
|
30
|
+
params, opts)
|
27
31
|
initialize_from(resp.data, opts)
|
28
32
|
end
|
29
33
|
|
@@ -6,7 +6,7 @@ module Stripe
|
|
6
6
|
def list(filters = {}, opts = {})
|
7
7
|
opts = Util.normalize_opts(opts)
|
8
8
|
|
9
|
-
resp, opts =
|
9
|
+
resp, opts = execute_resource_request(:get, resource_url, filters, opts)
|
10
10
|
obj = ListObject.construct_from(resp.data, opts)
|
11
11
|
|
12
12
|
# set filters so that we can fetch the same limit, expansions, and
|
@@ -31,35 +31,36 @@ module Stripe
|
|
31
31
|
define_singleton_method(:"create_#{resource}") \
|
32
32
|
do |id, params = {}, opts = {}|
|
33
33
|
url = send(resource_url_method, id)
|
34
|
-
resp, opts =
|
34
|
+
resp, opts = execute_resource_request(:post, url, params, opts)
|
35
35
|
Util.convert_to_stripe_object(resp.data, opts)
|
36
36
|
end
|
37
37
|
when :retrieve
|
38
38
|
define_singleton_method(:"retrieve_#{resource}") \
|
39
39
|
do |id, nested_id, opts = {}|
|
40
40
|
url = send(resource_url_method, id, nested_id)
|
41
|
-
resp, opts =
|
41
|
+
resp, opts = execute_resource_request(:get, url, {}, opts)
|
42
42
|
Util.convert_to_stripe_object(resp.data, opts)
|
43
43
|
end
|
44
44
|
when :update
|
45
45
|
define_singleton_method(:"update_#{resource}") \
|
46
46
|
do |id, nested_id, params = {}, opts = {}|
|
47
47
|
url = send(resource_url_method, id, nested_id)
|
48
|
-
resp, opts =
|
48
|
+
resp, opts = execute_resource_request(:post, url, params, opts)
|
49
49
|
Util.convert_to_stripe_object(resp.data, opts)
|
50
50
|
end
|
51
51
|
when :delete
|
52
52
|
define_singleton_method(:"delete_#{resource}") \
|
53
53
|
do |id, nested_id, params = {}, opts = {}|
|
54
54
|
url = send(resource_url_method, id, nested_id)
|
55
|
-
resp, opts =
|
55
|
+
resp, opts = execute_resource_request(:delete, url, params,
|
56
|
+
opts)
|
56
57
|
Util.convert_to_stripe_object(resp.data, opts)
|
57
58
|
end
|
58
59
|
when :list
|
59
60
|
define_singleton_method(:"list_#{resource_plural}") \
|
60
61
|
do |id, params = {}, opts = {}|
|
61
62
|
url = send(resource_url_method, id)
|
62
|
-
resp, opts =
|
63
|
+
resp, opts = execute_resource_request(:get, url, params, opts)
|
63
64
|
Util.convert_to_stripe_object(resp.data, opts)
|
64
65
|
end
|
65
66
|
else
|
@@ -4,7 +4,8 @@ module Stripe
|
|
4
4
|
module APIOperations
|
5
5
|
module Request
|
6
6
|
module ClassMethods
|
7
|
-
def
|
7
|
+
def execute_resource_request(method, url,
|
8
|
+
params = {}, opts = {})
|
8
9
|
params ||= {}
|
9
10
|
|
10
11
|
error_on_invalid_params(params)
|
@@ -36,6 +37,17 @@ module Stripe
|
|
36
37
|
[resp, opts_to_persist]
|
37
38
|
end
|
38
39
|
|
40
|
+
# This method used to be called `request`, but it's such a short name
|
41
|
+
# that it eventually conflicted with the name of a field on an API
|
42
|
+
# resource (specifically, `Event#request`), so it was renamed to
|
43
|
+
# something more unique.
|
44
|
+
#
|
45
|
+
# The former name had been around for just about forever though, and
|
46
|
+
# although all internal uses have been renamed, I've left this alias in
|
47
|
+
# place for backwards compatibility. Consider removing it on the next
|
48
|
+
# major.
|
49
|
+
alias request execute_resource_request
|
50
|
+
|
39
51
|
private def error_on_non_string_user_opts(opts)
|
40
52
|
Util::OPTS_USER_SPECIFIED.each do |opt|
|
41
53
|
next unless opts.key?(opt)
|
@@ -71,10 +83,14 @@ module Stripe
|
|
71
83
|
base.extend(ClassMethods)
|
72
84
|
end
|
73
85
|
|
74
|
-
protected def
|
86
|
+
protected def execute_resource_request(method, url,
|
87
|
+
params = {}, opts = {})
|
75
88
|
opts = @opts.merge(Util.normalize_opts(opts))
|
76
|
-
self.class.
|
89
|
+
self.class.execute_resource_request(method, url, params, opts)
|
77
90
|
end
|
91
|
+
|
92
|
+
# See notes on `alias` above.
|
93
|
+
alias request execute_resource_request
|
78
94
|
end
|
79
95
|
end
|
80
96
|
end
|
@@ -15,7 +15,8 @@ module Stripe
|
|
15
15
|
# * +opts+ - A Hash of additional options (separate from the params /
|
16
16
|
# object values) to be added to the request. E.g. to allow for an
|
17
17
|
# idempotency_key to be passed in the request headers, or for the
|
18
|
-
# api_key to be overwritten. See
|
18
|
+
# api_key to be overwritten. See
|
19
|
+
# {APIOperations::Request.execute_resource_request}.
|
19
20
|
def update(id, params = {}, opts = {})
|
20
21
|
params.each_key do |k|
|
21
22
|
if protected_fields.include?(k)
|
@@ -23,7 +24,8 @@ module Stripe
|
|
23
24
|
end
|
24
25
|
end
|
25
26
|
|
26
|
-
resp, opts =
|
27
|
+
resp, opts = execute_resource_request(:post, "#{resource_url}/#{id}",
|
28
|
+
params, opts)
|
27
29
|
Util.convert_to_stripe_object(resp.data, opts)
|
28
30
|
end
|
29
31
|
end
|
@@ -43,7 +45,8 @@ module Stripe
|
|
43
45
|
# * +opts+ - A Hash of additional options (separate from the params /
|
44
46
|
# object values) to be added to the request. E.g. to allow for an
|
45
47
|
# idempotency_key to be passed in the request headers, or for the
|
46
|
-
# api_key to be overwritten. See
|
48
|
+
# api_key to be overwritten. See
|
49
|
+
# {APIOperations::Request.execute_resource_request}.
|
47
50
|
def save(params = {}, opts = {})
|
48
51
|
# We started unintentionally (sort of) allowing attributes sent to
|
49
52
|
# +save+ to override values used during the update. So as not to break
|
@@ -59,7 +62,7 @@ module Stripe
|
|
59
62
|
# generated a uri for this object with an identifier baked in
|
60
63
|
values.delete(:id)
|
61
64
|
|
62
|
-
resp, opts =
|
65
|
+
resp, opts = execute_resource_request(:post, save_url, values, opts)
|
63
66
|
initialize_from(resp.data, opts)
|
64
67
|
end
|
65
68
|
|
data/lib/stripe/api_resource.rb
CHANGED
@@ -76,7 +76,7 @@ module Stripe
|
|
76
76
|
end
|
77
77
|
|
78
78
|
url = "#{resource_url}/#{CGI.escape(id)}/#{CGI.escape(http_path)}"
|
79
|
-
resp, opts =
|
79
|
+
resp, opts = execute_resource_request(http_verb, url, params, opts)
|
80
80
|
Util.convert_to_stripe_object(resp.data, opts)
|
81
81
|
end
|
82
82
|
end
|
@@ -93,7 +93,8 @@ module Stripe
|
|
93
93
|
end
|
94
94
|
|
95
95
|
def refresh
|
96
|
-
resp, opts =
|
96
|
+
resp, opts = execute_resource_request(:get, resource_url,
|
97
|
+
@retrieve_params)
|
97
98
|
initialize_from(resp.data, opts)
|
98
99
|
end
|
99
100
|
|
@@ -105,7 +106,7 @@ module Stripe
|
|
105
106
|
end
|
106
107
|
|
107
108
|
protected def request_stripe_object(method:, path:, params:, opts: {})
|
108
|
-
resp, opts =
|
109
|
+
resp, opts = execute_resource_request(method, path, params, opts)
|
109
110
|
|
110
111
|
# If we're getting back this thing, update; otherwise, instantiate.
|
111
112
|
if Util.object_name_matches_class?(resp.data[:object], self.class)
|
data/lib/stripe/list_object.rb
CHANGED
@@ -92,8 +92,8 @@ module Stripe
|
|
92
92
|
|
93
93
|
def retrieve(id, opts = {})
|
94
94
|
id, retrieve_params = Util.normalize_id(id)
|
95
|
-
|
96
|
-
|
95
|
+
url = "#{resource_url}/#{CGI.escape(id)}"
|
96
|
+
resp, opts = execute_resource_request(:get, url, retrieve_params, opts)
|
97
97
|
Util.convert_to_stripe_object(resp.data, opts)
|
98
98
|
end
|
99
99
|
|
data/lib/stripe/oauth.rb
CHANGED
@@ -5,7 +5,7 @@ module Stripe
|
|
5
5
|
module OAuthOperations
|
6
6
|
extend APIOperations::Request::ClassMethods
|
7
7
|
|
8
|
-
def self.
|
8
|
+
def self.execute_resource_request(method, url, params, opts)
|
9
9
|
opts = Util.normalize_opts(opts)
|
10
10
|
opts[:client] ||= StripeClient.active_client
|
11
11
|
opts[:api_base] ||= Stripe.connect_base
|
@@ -44,7 +44,7 @@ module Stripe
|
|
44
44
|
def self.token(params = {}, opts = {})
|
45
45
|
opts = Util.normalize_opts(opts)
|
46
46
|
opts[:api_key] = params[:client_secret] if params[:client_secret]
|
47
|
-
resp, opts = OAuthOperations.
|
47
|
+
resp, opts = OAuthOperations.execute_resource_request(
|
48
48
|
:post, "/oauth/token", params, opts
|
49
49
|
)
|
50
50
|
# This is just going to return a generic StripeObject, but that's okay
|
@@ -54,7 +54,7 @@ module Stripe
|
|
54
54
|
def self.deauthorize(params = {}, opts = {})
|
55
55
|
opts = Util.normalize_opts(opts)
|
56
56
|
params[:client_id] = get_client_id(params)
|
57
|
-
resp, opts = OAuthOperations.
|
57
|
+
resp, opts = OAuthOperations.execute_resource_request(
|
58
58
|
:post, "/oauth/deauthorize", params, opts
|
59
59
|
)
|
60
60
|
# This is just going to return a generic StripeObject, but that's okay
|
@@ -65,7 +65,7 @@ module Stripe
|
|
65
65
|
end
|
66
66
|
|
67
67
|
def persons(params = {}, opts = {})
|
68
|
-
resp, opts =
|
68
|
+
resp, opts = execute_resource_request(:get, resource_url + "/persons", params, opts)
|
69
69
|
Util.convert_to_stripe_object(resp.data, opts)
|
70
70
|
end
|
71
71
|
|
@@ -10,7 +10,7 @@ module Stripe
|
|
10
10
|
OBJECT_NAME = "bank_account"
|
11
11
|
|
12
12
|
def verify(params = {}, opts = {})
|
13
|
-
resp, opts =
|
13
|
+
resp, opts = execute_resource_request(:post, resource_url + "/verify", params, opts)
|
14
14
|
initialize_from(resp.data, opts)
|
15
15
|
end
|
16
16
|
|
@@ -21,12 +21,12 @@ module Stripe
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def self.preview(params, opts = {})
|
24
|
-
resp, opts =
|
24
|
+
resp, opts = execute_resource_request(:get, resource_url + "/preview", params, opts)
|
25
25
|
Util.convert_to_stripe_object(resp.data, opts)
|
26
26
|
end
|
27
27
|
|
28
28
|
def self.list_preview_line_items(params, opts = {})
|
29
|
-
resp, opts =
|
29
|
+
resp, opts = execute_resource_request(:get, resource_url + "/preview/lines", params, opts)
|
30
30
|
Util.convert_to_stripe_object(resp.data, opts)
|
31
31
|
end
|
32
32
|
end
|
@@ -62,12 +62,12 @@ module Stripe
|
|
62
62
|
end
|
63
63
|
|
64
64
|
def self.upcoming(params, opts = {})
|
65
|
-
resp, opts =
|
65
|
+
resp, opts = execute_resource_request(:get, resource_url + "/upcoming", params, opts)
|
66
66
|
Util.convert_to_stripe_object(resp.data, opts)
|
67
67
|
end
|
68
68
|
|
69
69
|
def self.list_upcoming_line_items(params, opts = {})
|
70
|
-
resp, opts =
|
70
|
+
resp, opts = execute_resource_request(:get, resource_url + "/upcoming/lines", params, opts)
|
71
71
|
Util.convert_to_stripe_object(resp.data, opts)
|
72
72
|
end
|
73
73
|
end
|
@@ -32,13 +32,13 @@ module Stripe
|
|
32
32
|
|
33
33
|
url = "#{Customer.resource_url}/#{CGI.escape(customer)}/sources" \
|
34
34
|
"/#{CGI.escape(id)}"
|
35
|
-
resp, opts =
|
35
|
+
resp, opts = execute_resource_request(:delete, url, params, opts)
|
36
36
|
initialize_from(resp.data, opts)
|
37
37
|
end
|
38
38
|
|
39
39
|
def source_transactions(params = {}, opts = {})
|
40
|
-
resp, opts =
|
41
|
-
|
40
|
+
resp, opts = execute_resource_request(:get, resource_url + "/source_transactions", params,
|
41
|
+
opts)
|
42
42
|
Util.convert_to_stripe_object(resp.data, opts)
|
43
43
|
end
|
44
44
|
extend Gem::Deprecate
|
@@ -17,7 +17,7 @@ module Stripe
|
|
17
17
|
resource_plural: "usage_record_summaries"
|
18
18
|
|
19
19
|
def usage_record_summaries(params = {}, opts = {})
|
20
|
-
resp, opts =
|
20
|
+
resp, opts = execute_resource_request(:get, resource_url + "/usage_record_summaries", params, opts)
|
21
21
|
Util.convert_to_stripe_object(resp.data, opts)
|
22
22
|
end
|
23
23
|
extend Gem::Deprecate
|
data/lib/stripe/version.rb
CHANGED