stripe 3.8.2 → 5.45.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +424 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +15 -20
- data/README.md +201 -58
- data/Rakefile +12 -9
- data/VERSION +1 -1
- data/bin/stripe-console +3 -1
- data/lib/stripe/api_operations/create.rb +3 -1
- data/lib/stripe/api_operations/delete.rb +30 -2
- data/lib/stripe/api_operations/list.rb +3 -12
- data/lib/stripe/api_operations/nested_resource.rb +40 -28
- data/lib/stripe/api_operations/request.rb +83 -9
- data/lib/stripe/api_operations/save.rb +19 -7
- data/lib/stripe/api_resource.rb +65 -4
- data/lib/stripe/connection_manager.rb +200 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +47 -19
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +43 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +14 -7
- data/lib/stripe/object_types.rb +110 -0
- data/lib/stripe/{account.rb → resources/account.rb} +60 -28
- data/lib/stripe/resources/account_link.rb +10 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +4 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +31 -0
- data/lib/stripe/resources/balance.rb +8 -0
- data/lib/stripe/resources/balance_transaction.rb +10 -0
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +6 -6
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/resources/capability.rb +34 -0
- data/lib/stripe/{card.rb → resources/card.rb} +15 -4
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +27 -0
- data/lib/stripe/resources/country_spec.rb +10 -0
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +5 -2
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +8 -0
- data/lib/stripe/resources/customer.rb +52 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/resources/discount.rb +8 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/resources/ephemeral_key.rb +20 -0
- data/lib/stripe/resources/event.rb +10 -0
- data/lib/stripe/resources/exchange_rate.rb +10 -0
- data/lib/stripe/resources/file.rb +36 -0
- data/lib/stripe/resources/file_link.rb +12 -0
- data/lib/stripe/resources/identity/verification_report.rb +12 -0
- data/lib/stripe/resources/identity/verification_session.rb +35 -0
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +5 -2
- data/lib/stripe/resources/invoice_line_item.rb +8 -0
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/resources/issuing/card_details.rb +10 -0
- data/lib/stripe/resources/issuing/cardholder.rb +14 -0
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/resources/issuing/transaction.rb +13 -0
- data/lib/stripe/resources/line_item.rb +8 -0
- data/lib/stripe/resources/login_link.rb +15 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/resources/order_return.rb +10 -0
- data/lib/stripe/resources/payment_intent.rb +53 -0
- data/lib/stripe/resources/payment_link.rb +23 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/resources/person.rb +32 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +4 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +6 -3
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/resources/radar/value_list.rb +15 -0
- data/lib/stripe/resources/radar/value_list_item.rb +14 -0
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +5 -6
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/{refund.rb → resources/refund.rb} +4 -1
- data/lib/stripe/resources/reporting/report_run.rb +13 -0
- data/lib/stripe/resources/reporting/report_type.rb +13 -0
- data/lib/stripe/resources/reversal.rb +30 -0
- data/lib/stripe/resources/review.rb +21 -0
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +43 -0
- data/lib/stripe/resources/shipping_rate.rb +12 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +6 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/resources/source_transaction.rb +8 -0
- data/lib/stripe/resources/subscription.rb +26 -0
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_code.rb +10 -0
- data/lib/stripe/resources/tax_id.rb +27 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/resources/terminal/location.rb +15 -0
- data/lib/stripe/resources/terminal/reader.rb +15 -0
- data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +4 -1
- data/lib/stripe/resources/token.rb +10 -0
- data/lib/stripe/resources/topup.rb +23 -0
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +8 -0
- data/lib/stripe/resources/usage_record_summary.rb +8 -0
- data/lib/stripe/resources/webhook_endpoint.rb +13 -0
- data/lib/stripe/resources.rb +93 -0
- data/lib/stripe/singleton_api_resource.rb +8 -2
- data/lib/stripe/stripe_client.rb +712 -233
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +180 -67
- data/lib/stripe/stripe_response.rb +89 -27
- data/lib/stripe/util.rb +87 -168
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +45 -10
- data/lib/stripe.rb +47 -160
- data/stripe.gemspec +27 -8
- metadata +112 -178
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -6
- data/.rubocop.yml +0 -20
- data/.rubocop_todo.yml +0 -60
- data/.travis.yml +0 -38
- data/lib/stripe/alipay_account.rb +0 -25
- data/lib/stripe/application_fee.rb +0 -25
- data/lib/stripe/application_fee_refund.rb +0 -20
- data/lib/stripe/balance.rb +0 -5
- data/lib/stripe/balance_transaction.rb +0 -11
- data/lib/stripe/bank_account.rb +0 -30
- data/lib/stripe/bitcoin_transaction.rb +0 -13
- data/lib/stripe/charge.rb +0 -82
- data/lib/stripe/country_spec.rb +0 -11
- data/lib/stripe/customer.rb +0 -88
- data/lib/stripe/dispute.rb +0 -17
- data/lib/stripe/ephemeral_key.rb +0 -18
- data/lib/stripe/event.rb +0 -7
- data/lib/stripe/exchange_rate.rb +0 -11
- data/lib/stripe/file_upload.rb +0 -35
- data/lib/stripe/invoice.rb +0 -30
- data/lib/stripe/invoice_line_item.rb +0 -5
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -35
- data/lib/stripe/order_return.rb +0 -11
- data/lib/stripe/payout.rb +0 -18
- data/lib/stripe/recipient_transfer.rb +0 -5
- data/lib/stripe/reversal.rb +0 -20
- data/lib/stripe/source.rb +0 -36
- data/lib/stripe/source_transaction.rb +0 -5
- data/lib/stripe/subscription.rb +0 -43
- data/lib/stripe/subscription_item.rb +0 -14
- data/lib/stripe/token.rb +0 -7
- data/lib/stripe/transfer.rb +0 -21
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/account_external_accounts_operations_test.rb +0 -66
- data/test/stripe/account_login_links_operations_test.rb +0 -19
- data/test/stripe/account_test.rb +0 -190
- data/test/stripe/alipay_account_test.rb +0 -35
- data/test/stripe/api_operations_test.rb +0 -76
- data/test/stripe/api_resource_test.rb +0 -522
- data/test/stripe/apple_pay_domain_test.rb +0 -31
- data/test/stripe/application_fee_refund_test.rb +0 -35
- data/test/stripe/application_fee_refunds_operations_test.rb +0 -54
- data/test/stripe/application_fee_test.rb +0 -12
- data/test/stripe/balance_test.rb +0 -11
- data/test/stripe/bank_account_test.rb +0 -34
- data/test/stripe/charge_test.rb +0 -57
- data/test/stripe/country_spec_test.rb +0 -18
- data/test/stripe/coupon_test.rb +0 -42
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_sources_operations_test.rb +0 -66
- data/test/stripe/customer_test.rb +0 -113
- data/test/stripe/dispute_test.rb +0 -40
- data/test/stripe/ephemeral_key_test.rb +0 -84
- data/test/stripe/errors_test.rb +0 -18
- data/test/stripe/exchange_rate_test.rb +0 -18
- data/test/stripe/file_upload_test.rb +0 -83
- data/test/stripe/invoice_item_test.rb +0 -53
- data/test/stripe/invoice_line_item_test.rb +0 -6
- data/test/stripe/invoice_test.rb +0 -111
- data/test/stripe/list_object_test.rb +0 -154
- data/test/stripe/login_link_test.rb +0 -35
- data/test/stripe/oauth_test.rb +0 -77
- data/test/stripe/order_return_test.rb +0 -19
- data/test/stripe/order_test.rb +0 -57
- data/test/stripe/payout_test.rb +0 -48
- data/test/stripe/plan_test.rb +0 -50
- data/test/stripe/product_test.rb +0 -45
- data/test/stripe/recipient_test.rb +0 -47
- data/test/stripe/refund_test.rb +0 -37
- data/test/stripe/reversal_test.rb +0 -41
- data/test/stripe/sku_test.rb +0 -48
- data/test/stripe/source_test.rb +0 -84
- data/test/stripe/source_transaction_test.rb +0 -28
- data/test/stripe/stripe_client_test.rb +0 -728
- data/test/stripe/stripe_object_test.rb +0 -448
- data/test/stripe/stripe_response_test.rb +0 -47
- data/test/stripe/subscription_item_test.rb +0 -52
- data/test/stripe/subscription_test.rb +0 -104
- data/test/stripe/three_d_secure_test.rb +0 -21
- data/test/stripe/transfer_reversals_operations_test.rb +0 -55
- data/test/stripe/transfer_test.rb +0 -41
- data/test/stripe/util_test.rb +0 -432
- data/test/stripe/webhook_test.rb +0 -94
- data/test/stripe_test.rb +0 -59
- data/test/test_data.rb +0 -59
- data/test/test_helper.rb +0 -60
@@ -0,0 +1,194 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Stripe
|
4
|
+
# Configurable options:
|
5
|
+
#
|
6
|
+
# =ca_bundle_path=
|
7
|
+
# The location of a file containing a bundle of CA certificates. By default
|
8
|
+
# the library will use an included bundle that can successfully validate
|
9
|
+
# Stripe certificates.
|
10
|
+
#
|
11
|
+
# =log_level=
|
12
|
+
# When set prompts the library to log some extra information to $stdout and
|
13
|
+
# $stderr about what it's doing. For example, it'll produce information about
|
14
|
+
# requests, responses, and errors that are received. Valid log levels are
|
15
|
+
# `debug` and `info`, with `debug` being a little more verbose in places.
|
16
|
+
#
|
17
|
+
# Use of this configuration is only useful when `.logger` is _not_ set. When
|
18
|
+
# it is, the decision what levels to print is entirely deferred to the logger.
|
19
|
+
#
|
20
|
+
# =logger=
|
21
|
+
# The logger should support the same interface as the `Logger` class that's
|
22
|
+
# part of Ruby's standard library (hint, anything in `Rails.logger` will
|
23
|
+
# likely be suitable).
|
24
|
+
#
|
25
|
+
# If `.logger` is set, the value of `.log_level` is ignored. The decision on
|
26
|
+
# what levels to print is entirely deferred to the logger.
|
27
|
+
class StripeConfiguration
|
28
|
+
attr_accessor :api_key
|
29
|
+
attr_accessor :api_version
|
30
|
+
attr_accessor :client_id
|
31
|
+
attr_accessor :enable_telemetry
|
32
|
+
attr_accessor :logger
|
33
|
+
attr_accessor :stripe_account
|
34
|
+
|
35
|
+
attr_reader :api_base
|
36
|
+
attr_reader :uploads_base
|
37
|
+
attr_reader :connect_base
|
38
|
+
attr_reader :ca_bundle_path
|
39
|
+
attr_reader :log_level
|
40
|
+
attr_reader :initial_network_retry_delay
|
41
|
+
attr_reader :max_network_retries
|
42
|
+
attr_reader :max_network_retry_delay
|
43
|
+
attr_reader :open_timeout
|
44
|
+
attr_reader :read_timeout
|
45
|
+
attr_reader :write_timeout
|
46
|
+
attr_reader :proxy
|
47
|
+
attr_reader :verify_ssl_certs
|
48
|
+
|
49
|
+
def self.setup
|
50
|
+
new.tap do |instance|
|
51
|
+
yield(instance) if block_given?
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
# Create a new config based off an existing one. This is useful when the
|
56
|
+
# caller wants to override the global configuration
|
57
|
+
def reverse_duplicate_merge(hash)
|
58
|
+
dup.tap do |instance|
|
59
|
+
hash.each do |option, value|
|
60
|
+
instance.public_send("#{option}=", value)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def initialize
|
66
|
+
@ca_bundle_path = Stripe::DEFAULT_CA_BUNDLE_PATH
|
67
|
+
@enable_telemetry = true
|
68
|
+
@verify_ssl_certs = true
|
69
|
+
|
70
|
+
@max_network_retries = 0
|
71
|
+
@initial_network_retry_delay = 0.5
|
72
|
+
@max_network_retry_delay = 2
|
73
|
+
|
74
|
+
@open_timeout = 30
|
75
|
+
@read_timeout = 80
|
76
|
+
@write_timeout = 30
|
77
|
+
|
78
|
+
@api_base = "https://api.stripe.com"
|
79
|
+
@connect_base = "https://connect.stripe.com"
|
80
|
+
@uploads_base = "https://files.stripe.com"
|
81
|
+
end
|
82
|
+
|
83
|
+
def log_level=(val)
|
84
|
+
# Backwards compatibility for values that we briefly allowed
|
85
|
+
if val == "debug"
|
86
|
+
val = Stripe::LEVEL_DEBUG
|
87
|
+
elsif val == "info"
|
88
|
+
val = Stripe::LEVEL_INFO
|
89
|
+
end
|
90
|
+
|
91
|
+
levels = [Stripe::LEVEL_INFO, Stripe::LEVEL_DEBUG, Stripe::LEVEL_ERROR]
|
92
|
+
|
93
|
+
if !val.nil? && !levels.include?(val)
|
94
|
+
raise ArgumentError,
|
95
|
+
"log_level should only be set to `nil`, `debug` or `info`"
|
96
|
+
end
|
97
|
+
@log_level = val
|
98
|
+
end
|
99
|
+
|
100
|
+
def max_network_retries=(val)
|
101
|
+
@max_network_retries = val.to_i
|
102
|
+
end
|
103
|
+
|
104
|
+
def max_network_retry_delay=(val)
|
105
|
+
@max_network_retry_delay = val.to_i
|
106
|
+
end
|
107
|
+
|
108
|
+
def initial_network_retry_delay=(val)
|
109
|
+
@initial_network_retry_delay = val.to_i
|
110
|
+
end
|
111
|
+
|
112
|
+
def open_timeout=(open_timeout)
|
113
|
+
@open_timeout = open_timeout
|
114
|
+
StripeClient.clear_all_connection_managers(config: self)
|
115
|
+
end
|
116
|
+
|
117
|
+
def read_timeout=(read_timeout)
|
118
|
+
@read_timeout = read_timeout
|
119
|
+
StripeClient.clear_all_connection_managers(config: self)
|
120
|
+
end
|
121
|
+
|
122
|
+
def write_timeout=(write_timeout)
|
123
|
+
unless Net::HTTP.instance_methods.include?(:write_timeout=)
|
124
|
+
raise NotImplementedError
|
125
|
+
end
|
126
|
+
|
127
|
+
@write_timeout = write_timeout
|
128
|
+
StripeClient.clear_all_connection_managers(config: self)
|
129
|
+
end
|
130
|
+
|
131
|
+
def proxy=(proxy)
|
132
|
+
@proxy = proxy
|
133
|
+
StripeClient.clear_all_connection_managers(config: self)
|
134
|
+
end
|
135
|
+
|
136
|
+
def verify_ssl_certs=(verify_ssl_certs)
|
137
|
+
@verify_ssl_certs = verify_ssl_certs
|
138
|
+
StripeClient.clear_all_connection_managers(config: self)
|
139
|
+
end
|
140
|
+
|
141
|
+
def uploads_base=(uploads_base)
|
142
|
+
@uploads_base = uploads_base
|
143
|
+
StripeClient.clear_all_connection_managers(config: self)
|
144
|
+
end
|
145
|
+
|
146
|
+
def connect_base=(connect_base)
|
147
|
+
@connect_base = connect_base
|
148
|
+
StripeClient.clear_all_connection_managers(config: self)
|
149
|
+
end
|
150
|
+
|
151
|
+
def api_base=(api_base)
|
152
|
+
@api_base = api_base
|
153
|
+
StripeClient.clear_all_connection_managers(config: self)
|
154
|
+
end
|
155
|
+
|
156
|
+
def ca_bundle_path=(path)
|
157
|
+
@ca_bundle_path = path
|
158
|
+
|
159
|
+
# empty this field so a new store is initialized
|
160
|
+
@ca_store = nil
|
161
|
+
|
162
|
+
StripeClient.clear_all_connection_managers(config: self)
|
163
|
+
end
|
164
|
+
|
165
|
+
# A certificate store initialized from the the bundle in #ca_bundle_path and
|
166
|
+
# which is used to validate TLS on every request.
|
167
|
+
#
|
168
|
+
# This was added to the give the gem "pseudo thread safety" in that it seems
|
169
|
+
# when initiating many parallel requests marshaling the certificate store is
|
170
|
+
# the most likely point of failure (see issue #382). Any program attempting
|
171
|
+
# to leverage this pseudo safety should make a call to this method (i.e.
|
172
|
+
# `Stripe.ca_store`) in their initialization code because it marshals lazily
|
173
|
+
# and is itself not thread safe.
|
174
|
+
def ca_store
|
175
|
+
@ca_store ||= begin
|
176
|
+
store = OpenSSL::X509::Store.new
|
177
|
+
store.add_file(ca_bundle_path)
|
178
|
+
store
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
def enable_telemetry?
|
183
|
+
enable_telemetry
|
184
|
+
end
|
185
|
+
|
186
|
+
# Generates a deterministic key to identify configuration objects with
|
187
|
+
# identical configuration values.
|
188
|
+
def key
|
189
|
+
instance_variables
|
190
|
+
.collect { |variable| instance_variable_get(variable) }
|
191
|
+
.join
|
192
|
+
end
|
193
|
+
end
|
194
|
+
end
|
data/lib/stripe/stripe_object.rb
CHANGED
@@ -1,12 +1,75 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Stripe
|
2
4
|
class StripeObject
|
3
5
|
include Enumerable
|
4
6
|
|
5
|
-
@@permanent_attributes = Set.new([:id])
|
7
|
+
@@permanent_attributes = Set.new([:id]) # rubocop:disable Style/ClassVars
|
6
8
|
|
7
9
|
# The default :id method is deprecated and isn't useful to us
|
8
10
|
undef :id if method_defined?(:id)
|
9
11
|
|
12
|
+
# Sets the given parameter name to one which is known to be an additive
|
13
|
+
# object.
|
14
|
+
#
|
15
|
+
# Additive objects are subobjects in the API that don't have the same
|
16
|
+
# semantics as most subobjects, which are fully replaced when they're set.
|
17
|
+
# This is best illustrated by example. The `source` parameter sent when
|
18
|
+
# updating a subscription is *not* additive; if we set it:
|
19
|
+
#
|
20
|
+
# source[object]=card&source[number]=123
|
21
|
+
#
|
22
|
+
# We expect the old `source` object to have been overwritten completely. If
|
23
|
+
# the previous source had an `address_state` key associated with it and we
|
24
|
+
# didn't send one this time, that value of `address_state` is gone.
|
25
|
+
#
|
26
|
+
# By contrast, additive objects are those that will have new data added to
|
27
|
+
# them while keeping any existing data in place. The only known case of its
|
28
|
+
# use is for `metadata`, but it could in theory be more general. As an
|
29
|
+
# example, say we have a `metadata` object that looks like this on the
|
30
|
+
# server side:
|
31
|
+
#
|
32
|
+
# metadata = { old: "old_value" }
|
33
|
+
#
|
34
|
+
# If we update the object with `metadata[new]=new_value`, the server side
|
35
|
+
# object now has *both* fields:
|
36
|
+
#
|
37
|
+
# metadata = { old: "old_value", new: "new_value" }
|
38
|
+
#
|
39
|
+
# This is okay in itself because usually users will want to treat it as
|
40
|
+
# additive:
|
41
|
+
#
|
42
|
+
# obj.metadata[:new] = "new_value"
|
43
|
+
# obj.save
|
44
|
+
#
|
45
|
+
# However, in other cases, they may want to replace the entire existing
|
46
|
+
# contents:
|
47
|
+
#
|
48
|
+
# obj.metadata = { new: "new_value" }
|
49
|
+
# obj.save
|
50
|
+
#
|
51
|
+
# This is where things get a little bit tricky because in order to clear
|
52
|
+
# any old keys that may have existed, we actually have to send an explicit
|
53
|
+
# empty string to the server. So the operation above would have to send
|
54
|
+
# this form to get the intended behavior:
|
55
|
+
#
|
56
|
+
# metadata[old]=&metadata[new]=new_value
|
57
|
+
#
|
58
|
+
# This method allows us to track which parameters are considered additive,
|
59
|
+
# and lets us behave correctly where appropriate when serializing
|
60
|
+
# parameters to be sent.
|
61
|
+
def self.additive_object_param(name)
|
62
|
+
@additive_params ||= Set.new
|
63
|
+
@additive_params << name
|
64
|
+
end
|
65
|
+
|
66
|
+
# Returns whether the given name is an additive object parameter. See
|
67
|
+
# `.additive_object_param` for details.
|
68
|
+
def self.additive_object_param?(name)
|
69
|
+
@additive_params ||= Set.new
|
70
|
+
@additive_params.include?(name)
|
71
|
+
end
|
72
|
+
|
10
73
|
def initialize(id = nil, opts = {})
|
11
74
|
id, @retrieve_params = Util.normalize_id(id)
|
12
75
|
@opts = Util.normalize_opts(opts)
|
@@ -30,7 +93,21 @@ module Stripe
|
|
30
93
|
# considered to be equal if they have the same set of values and each one
|
31
94
|
# of those values is the same.
|
32
95
|
def ==(other)
|
33
|
-
other.is_a?(StripeObject) &&
|
96
|
+
other.is_a?(StripeObject) &&
|
97
|
+
@values == other.instance_variable_get(:@values)
|
98
|
+
end
|
99
|
+
|
100
|
+
# Hash equality. As with `#==`, we consider two equivalent Stripe objects
|
101
|
+
# equal.
|
102
|
+
def eql?(other)
|
103
|
+
# Defer to the implementation on `#==`.
|
104
|
+
self == other
|
105
|
+
end
|
106
|
+
|
107
|
+
# As with equality in `#==` and `#eql?`, we hash two Stripe objects to the
|
108
|
+
# same value if they're equivalent objects.
|
109
|
+
def hash
|
110
|
+
@values.hash
|
34
111
|
end
|
35
112
|
|
36
113
|
# Indicates whether or not the resource has been deleted on the server.
|
@@ -46,21 +123,10 @@ module Stripe
|
|
46
123
|
|
47
124
|
def inspect
|
48
125
|
id_string = respond_to?(:id) && !id.nil? ? " id=#{id}" : ""
|
49
|
-
"#<#{self.class}:0x#{object_id.to_s(16)}#{id_string}> JSON: " +
|
126
|
+
"#<#{self.class}:0x#{object_id.to_s(16)}#{id_string}> JSON: " +
|
127
|
+
JSON.pretty_generate(@values)
|
50
128
|
end
|
51
129
|
|
52
|
-
# Re-initializes the object based on a hash of values (usually one that's
|
53
|
-
# come back from an API call). Adds or removes value accessors as necessary
|
54
|
-
# and updates the state of internal data.
|
55
|
-
#
|
56
|
-
# Please don't use this method. If you're trying to do mass assignment, try
|
57
|
-
# #initialize_from instead.
|
58
|
-
def refresh_from(values, opts, partial = false)
|
59
|
-
initialize_from(values, opts, partial)
|
60
|
-
end
|
61
|
-
extend Gem::Deprecate
|
62
|
-
deprecate :refresh_from, "#update_attributes", 2016, 1
|
63
|
-
|
64
130
|
# Mass assigns attributes on the model.
|
65
131
|
#
|
66
132
|
# This is a version of +update_attributes+ that takes some extra options
|
@@ -69,7 +135,8 @@ module Stripe
|
|
69
135
|
# ==== Attributes
|
70
136
|
#
|
71
137
|
# * +values+ - Hash of values to use to update the current attributes of
|
72
|
-
# the object.
|
138
|
+
# the object. If you are on ruby 2.7 or higher make sure to wrap in curly
|
139
|
+
# braces to be ruby 3 compatible.
|
73
140
|
# * +opts+ - Options for +StripeObject+ like an API key that will be reused
|
74
141
|
# on subsequent API calls.
|
75
142
|
#
|
@@ -78,10 +145,7 @@ module Stripe
|
|
78
145
|
# * +:dirty+ - Whether values should be initiated as "dirty" (unsaved) and
|
79
146
|
# which applies only to new StripeObjects being initiated under this
|
80
147
|
# StripeObject. Defaults to true.
|
81
|
-
def update_attributes(values, opts = {},
|
82
|
-
# Default to true. TODO: Convert to optional arguments after we're off
|
83
|
-
# 1.9 which will make this quite a bit more clear.
|
84
|
-
dirty = method_options.fetch(:dirty, true)
|
148
|
+
def update_attributes(values, opts = {}, dirty: true)
|
85
149
|
values.each do |k, v|
|
86
150
|
add_accessors([k], values) unless metaclass.method_defined?(k.to_sym)
|
87
151
|
@values[k] = Util.convert_to_stripe_object(v, opts)
|
@@ -90,12 +154,12 @@ module Stripe
|
|
90
154
|
end
|
91
155
|
end
|
92
156
|
|
93
|
-
def [](
|
94
|
-
@values[
|
157
|
+
def [](key)
|
158
|
+
@values[key.to_sym]
|
95
159
|
end
|
96
160
|
|
97
|
-
def []=(
|
98
|
-
send(:"#{
|
161
|
+
def []=(key, value)
|
162
|
+
send(:"#{key}=", value)
|
99
163
|
end
|
100
164
|
|
101
165
|
def keys
|
@@ -106,16 +170,19 @@ module Stripe
|
|
106
170
|
@values.values
|
107
171
|
end
|
108
172
|
|
109
|
-
def to_json(*
|
173
|
+
def to_json(*_opts)
|
174
|
+
# TODO: pass opts to JSON.generate?
|
110
175
|
JSON.generate(@values)
|
111
176
|
end
|
112
177
|
|
113
|
-
def as_json(*
|
114
|
-
@values.as_json(*
|
178
|
+
def as_json(*opts)
|
179
|
+
@values.as_json(*opts)
|
115
180
|
end
|
116
181
|
|
117
182
|
def to_hash
|
118
183
|
maybe_to_hash = lambda do |value|
|
184
|
+
return nil if value.nil?
|
185
|
+
|
119
186
|
value.respond_to?(:to_hash) ? value.to_hash : value
|
120
187
|
end
|
121
188
|
|
@@ -179,10 +246,11 @@ module Stripe
|
|
179
246
|
# values within in that its parent StripeObject doesn't know about.
|
180
247
|
#
|
181
248
|
unsaved = @unsaved_values.include?(k)
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
249
|
+
next unless options[:force] || unsaved || v.is_a?(StripeObject)
|
250
|
+
|
251
|
+
update_hash[k.to_sym] = serialize_params_value(
|
252
|
+
@values[k], @original_values[k], unsaved, options[:force], key: k
|
253
|
+
)
|
186
254
|
end
|
187
255
|
|
188
256
|
# a `nil` that makes it out of `#serialize_params_value` signals an empty
|
@@ -192,16 +260,6 @@ module Stripe
|
|
192
260
|
update_hash
|
193
261
|
end
|
194
262
|
|
195
|
-
class << self
|
196
|
-
# This class method has been deprecated in favor of the instance method
|
197
|
-
# of the same name.
|
198
|
-
def serialize_params(obj, options = {})
|
199
|
-
obj.serialize_params(options)
|
200
|
-
end
|
201
|
-
extend Gem::Deprecate
|
202
|
-
deprecate :serialize_params, "#serialize_params", 2016, 9
|
203
|
-
end
|
204
|
-
|
205
263
|
# A protected field is one that doesn't get an accessor assigned to it
|
206
264
|
# (i.e. `obj.public = ...`) and one which is not allowed to be updated via
|
207
265
|
# the class level `Model.update(id, { ... })`.
|
@@ -209,35 +267,74 @@ module Stripe
|
|
209
267
|
[]
|
210
268
|
end
|
211
269
|
|
212
|
-
|
213
|
-
|
214
|
-
|
270
|
+
# When designing APIs, we now make a conscious effort server-side to avoid
|
271
|
+
# naming fields after important built-ins in various languages (e.g. class,
|
272
|
+
# method, etc.).
|
273
|
+
#
|
274
|
+
# However, a long time ago we made the mistake (either consciously or by
|
275
|
+
# accident) of initializing our `metadata` fields as instances of
|
276
|
+
# `StripeObject`, and metadata can have a wide range of different keys
|
277
|
+
# defined in it. This is somewhat a convenient in that it allows users to
|
278
|
+
# access data like `obj.metadata.my_field`, but is almost certainly not
|
279
|
+
# worth the cost.
|
280
|
+
#
|
281
|
+
# Naming metadata fields bad things like `class` causes `initialize_from`
|
282
|
+
# to produce strange results, so we ban known offenders here.
|
283
|
+
#
|
284
|
+
# In a future major version we should consider leaving `metadata` as a hash
|
285
|
+
# and forcing people to access it with `obj.metadata[:my_field]` because
|
286
|
+
# the potential for trouble is just too high. For now, reserve names.
|
287
|
+
RESERVED_FIELD_NAMES = [
|
288
|
+
:class,
|
289
|
+
].freeze
|
290
|
+
|
291
|
+
protected def metaclass
|
215
292
|
class << self; self; end
|
216
293
|
end
|
217
294
|
|
218
|
-
def remove_accessors(keys)
|
295
|
+
protected def remove_accessors(keys)
|
219
296
|
# not available in the #instance_eval below
|
220
297
|
protected_fields = self.class.protected_fields
|
221
298
|
|
222
299
|
metaclass.instance_eval do
|
223
300
|
keys.each do |k|
|
301
|
+
next if RESERVED_FIELD_NAMES.include?(k)
|
224
302
|
next if protected_fields.include?(k)
|
225
303
|
next if @@permanent_attributes.include?(k)
|
226
304
|
|
227
305
|
# Remove methods for the accessor's reader and writer.
|
228
306
|
[k, :"#{k}=", :"#{k}?"].each do |method_name|
|
229
|
-
|
307
|
+
next unless method_defined?(method_name)
|
308
|
+
|
309
|
+
begin
|
310
|
+
remove_method(method_name)
|
311
|
+
rescue NameError
|
312
|
+
# In some cases there can be a method that's detected with
|
313
|
+
# `method_defined?`, but which cannot be removed with
|
314
|
+
# `remove_method`, even though it's on the same class. The only
|
315
|
+
# case so far that we've noticed this is when a class is
|
316
|
+
# reopened for monkey patching:
|
317
|
+
#
|
318
|
+
# https://github.com/stripe/stripe-ruby/issues/749
|
319
|
+
#
|
320
|
+
# Here we swallow that error and issue a warning so at least
|
321
|
+
# the program doesn't crash.
|
322
|
+
warn("WARNING: Unable to remove method `#{method_name}`; " \
|
323
|
+
"if custom, please consider renaming to a name that doesn't " \
|
324
|
+
"collide with an API property name.")
|
325
|
+
end
|
230
326
|
end
|
231
327
|
end
|
232
328
|
end
|
233
329
|
end
|
234
330
|
|
235
|
-
def add_accessors(keys, values)
|
331
|
+
protected def add_accessors(keys, values)
|
236
332
|
# not available in the #instance_eval below
|
237
333
|
protected_fields = self.class.protected_fields
|
238
334
|
|
239
335
|
metaclass.instance_eval do
|
240
336
|
keys.each do |k|
|
337
|
+
next if RESERVED_FIELD_NAMES.include?(k)
|
241
338
|
next if protected_fields.include?(k)
|
242
339
|
next if @@permanent_attributes.include?(k)
|
243
340
|
|
@@ -269,7 +366,11 @@ module Stripe
|
|
269
366
|
end
|
270
367
|
end
|
271
368
|
|
272
|
-
|
369
|
+
# Disabling the cop because it's confused by the fact that the methods are
|
370
|
+
# protected, but we do define `#respond_to_missing?` just below. Hopefully
|
371
|
+
# this is fixed in more recent Rubocop versions.
|
372
|
+
# rubocop:disable Style/MissingRespondToMissing
|
373
|
+
protected def method_missing(name, *args)
|
273
374
|
# TODO: only allow setting in updateable classes.
|
274
375
|
if name.to_s.end_with?("=")
|
275
376
|
attr = name.to_s[0...-1].to_sym
|
@@ -285,7 +386,9 @@ module Stripe
|
|
285
386
|
begin
|
286
387
|
mth = method(name)
|
287
388
|
rescue NameError
|
288
|
-
raise NoMethodError,
|
389
|
+
raise NoMethodError,
|
390
|
+
"Cannot set #{attr} on this object. HINT: you can't set: " \
|
391
|
+
"#{@@permanent_attributes.to_a.join(', ')}"
|
289
392
|
end
|
290
393
|
return mth.call(args[0])
|
291
394
|
elsif @values.key?(name)
|
@@ -295,16 +398,22 @@ module Stripe
|
|
295
398
|
begin
|
296
399
|
super
|
297
400
|
rescue NoMethodError => e
|
298
|
-
# If we notice the accessed name
|
401
|
+
# If we notice the accessed name of our set of transient values we can
|
299
402
|
# give the user a slightly more helpful error message. If not, just
|
300
403
|
# raise right away.
|
301
404
|
raise unless @transient_values.include?(name)
|
302
405
|
|
303
|
-
raise NoMethodError,
|
406
|
+
raise NoMethodError,
|
407
|
+
e.message + ". HINT: The '#{name}' attribute was set in the " \
|
408
|
+
"past, however. It was then wiped when refreshing the object " \
|
409
|
+
"with the result returned by Stripe's API, probably as a " \
|
410
|
+
"result of a save(). The attributes currently available on " \
|
411
|
+
"this object are: #{@values.keys.join(', ')}"
|
304
412
|
end
|
305
413
|
end
|
414
|
+
# rubocop:enable Style/MissingRespondToMissing
|
306
415
|
|
307
|
-
def respond_to_missing?(symbol, include_private = false)
|
416
|
+
protected def respond_to_missing?(symbol, include_private = false)
|
308
417
|
@values && @values.key?(symbol) || super
|
309
418
|
end
|
310
419
|
|
@@ -320,7 +429,7 @@ module Stripe
|
|
320
429
|
# * +:opts:+ Options for StripeObject like an API key.
|
321
430
|
# * +:partial:+ Indicates that the re-initialization should not attempt to
|
322
431
|
# remove accessors.
|
323
|
-
def initialize_from(values, opts, partial = false)
|
432
|
+
protected def initialize_from(values, opts, partial = false)
|
324
433
|
@opts = Util.normalize_opts(opts)
|
325
434
|
|
326
435
|
# the `#send` is here so that we can keep this method private
|
@@ -330,8 +439,8 @@ module Stripe
|
|
330
439
|
added = Set.new(values.keys - @values.keys)
|
331
440
|
|
332
441
|
# Wipe old state before setting new. This is useful for e.g. updating a
|
333
|
-
# customer, where there is no persistent card parameter. Mark those
|
334
|
-
# which don't persist as transient
|
442
|
+
# customer, where there is no persistent card parameter. Mark those
|
443
|
+
# values which don't persist as transient
|
335
444
|
|
336
445
|
remove_accessors(removed)
|
337
446
|
add_accessors(added, values)
|
@@ -351,7 +460,8 @@ module Stripe
|
|
351
460
|
self
|
352
461
|
end
|
353
462
|
|
354
|
-
def serialize_params_value(value, original, unsaved, force,
|
463
|
+
protected def serialize_params_value(value, original, unsaved, force,
|
464
|
+
key: nil)
|
355
465
|
if value.nil?
|
356
466
|
""
|
357
467
|
|
@@ -410,10 +520,14 @@ module Stripe
|
|
410
520
|
elsif value.is_a?(StripeObject)
|
411
521
|
update = value.serialize_params(force: force)
|
412
522
|
|
413
|
-
# If the entire object was replaced
|
414
|
-
# the old object that held a value
|
415
|
-
#
|
416
|
-
|
523
|
+
# If the entire object was replaced and this is an additive object,
|
524
|
+
# then we need blank each field of the old object that held a value
|
525
|
+
# because otherwise the update to the keys of the object will be
|
526
|
+
# additive instead of a full replacement. The new serialized values
|
527
|
+
# will override any of these empty values.
|
528
|
+
if original && unsaved && key && self.class.additive_object_param?(key)
|
529
|
+
update = empty_values(original).merge(update)
|
530
|
+
end
|
417
531
|
|
418
532
|
update
|
419
533
|
|
@@ -422,11 +536,9 @@ module Stripe
|
|
422
536
|
end
|
423
537
|
end
|
424
538
|
|
425
|
-
private
|
426
|
-
|
427
539
|
# Produces a deep copy of the given object including support for arrays,
|
428
540
|
# hashes, and StripeObjects.
|
429
|
-
def self.deep_copy(obj)
|
541
|
+
private_class_method def self.deep_copy(obj)
|
430
542
|
case obj
|
431
543
|
when Array
|
432
544
|
obj.map { |e| deep_copy(e) }
|
@@ -446,9 +558,8 @@ module Stripe
|
|
446
558
|
obj
|
447
559
|
end
|
448
560
|
end
|
449
|
-
private_class_method :deep_copy
|
450
561
|
|
451
|
-
def dirty_value!(value)
|
562
|
+
private def dirty_value!(value)
|
452
563
|
case value
|
453
564
|
when Array
|
454
565
|
value.map { |v| dirty_value!(v) }
|
@@ -459,12 +570,14 @@ module Stripe
|
|
459
570
|
|
460
571
|
# Returns a hash of empty values for all the values that are in the given
|
461
572
|
# StripeObject.
|
462
|
-
def empty_values(obj)
|
573
|
+
private def empty_values(obj)
|
463
574
|
values = case obj
|
464
575
|
when Hash then obj
|
465
576
|
when StripeObject then obj.instance_variable_get(:@values)
|
466
577
|
else
|
467
|
-
raise ArgumentError,
|
578
|
+
raise ArgumentError,
|
579
|
+
"#empty_values got unexpected object type: " \
|
580
|
+
"#{obj.class.name}"
|
468
581
|
end
|
469
582
|
|
470
583
|
values.each_with_object({}) do |(k, _), update|
|