stripe 4.9.0 → 5.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.editorconfig +10 -0
- data/.rubocop.yml +56 -8
- data/.rubocop_todo.yml +8 -25
- data/.travis.yml +4 -8
- data/.vscode/extensions.json +7 -0
- data/.vscode/settings.json +8 -0
- data/CHANGELOG.md +206 -2
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -13
- data/README.md +178 -58
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe.rb +41 -195
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +28 -2
- data/lib/stripe/api_operations/list.rb +1 -12
- data/lib/stripe/api_operations/nested_resource.rb +38 -28
- data/lib/stripe/api_operations/request.rb +47 -8
- data/lib/stripe/api_operations/save.rb +8 -7
- data/lib/stripe/api_resource.rb +52 -3
- data/lib/stripe/connection_manager.rb +162 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +31 -10
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +41 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +4 -3
- data/lib/stripe/object_types.rb +101 -0
- data/lib/stripe/resources.rb +84 -0
- data/lib/stripe/{account.rb → resources/account.rb} +50 -27
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -3
- data/lib/stripe/{bitcoin_transaction.rb → resources/bitcoin_transaction.rb} +1 -1
- data/lib/stripe/resources/capability.rb +33 -0
- data/lib/stripe/{card.rb → resources/card.rb} +13 -4
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +3 -2
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +36 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
- data/lib/stripe/resources/discount.rb +7 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
- data/lib/stripe/{event.rb → resources/event.rb} +2 -1
- data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
- data/lib/stripe/{file.rb → resources/file.rb} +9 -11
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +3 -2
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +3 -2
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +1 -1
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +3 -2
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +3 -2
- data/lib/stripe/resources/line_item.rb +7 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/{person.rb → resources/person.rb} +8 -3
- data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +4 -3
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/{radar → resources/radar}/value_list.rb +3 -2
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +3 -2
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +3 -6
- data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
- data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_run.rb +3 -2
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +3 -2
- data/lib/stripe/resources/reversal.rb +29 -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 +33 -0
- data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +3 -2
- data/lib/stripe/{sku.rb → resources/sku.rb} +4 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
- 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_id.rb +26 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/{terminal → resources/terminal}/location.rb +4 -2
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +4 -2
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
- data/lib/stripe/{token.rb → resources/token.rb} +2 -1
- data/lib/stripe/resources/topup.rb +23 -0
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +7 -0
- data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +1 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +3 -2
- data/lib/stripe/singleton_api_resource.rb +3 -1
- data/lib/stripe/stripe_client.rb +493 -236
- data/lib/stripe/stripe_configuration.rb +178 -0
- data/lib/stripe/stripe_object.rb +75 -61
- data/lib/stripe/stripe_response.rb +53 -21
- data/lib/stripe/util.rb +66 -109
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +43 -10
- data/stripe.gemspec +14 -5
- data/test/stripe/account_link_test.rb +4 -4
- data/test/stripe/account_test.rb +193 -32
- data/test/stripe/alipay_account_test.rb +1 -1
- data/test/stripe/api_operations_test.rb +3 -4
- data/test/stripe/api_resource_test.rb +159 -37
- data/test/stripe/apple_pay_domain_test.rb +18 -5
- data/test/stripe/application_fee_refund_test.rb +1 -1
- data/test/stripe/application_fee_test.rb +45 -1
- data/test/stripe/balance_test.rb +1 -1
- data/test/stripe/balance_transaction_test.rb +20 -0
- data/test/stripe/bank_account_test.rb +1 -1
- data/test/stripe/billing_portal/session_test.rb +18 -0
- data/test/stripe/capability_test.rb +45 -0
- data/test/stripe/charge_test.rb +13 -8
- data/test/stripe/checkout/session_test.rb +19 -1
- data/test/stripe/connection_manager_test.rb +167 -0
- data/test/stripe/country_spec_test.rb +1 -1
- data/test/stripe/coupon_test.rb +16 -6
- data/test/stripe/credit_note_test.rb +90 -0
- data/test/stripe/customer_balance_transaction_test.rb +37 -0
- data/test/stripe/customer_card_test.rb +7 -1
- data/test/stripe/customer_test.rb +151 -40
- data/test/stripe/dispute_test.rb +10 -1
- data/test/stripe/ephemeral_key_test.rb +8 -1
- data/test/stripe/errors_test.rb +42 -9
- data/test/stripe/exchange_rate_test.rb +1 -1
- data/test/stripe/file_link_test.rb +1 -1
- data/test/stripe/file_test.rb +19 -5
- data/test/stripe/instrumentation_test.rb +74 -0
- data/test/stripe/invoice_item_test.rb +18 -7
- data/test/stripe/invoice_line_item_test.rb +1 -1
- data/test/stripe/invoice_test.rb +77 -9
- data/test/stripe/issuing/authorization_test.rb +33 -11
- data/test/stripe/issuing/card_test.rb +27 -6
- data/test/stripe/issuing/cardholder_test.rb +1 -1
- data/test/stripe/issuing/dispute_test.rb +23 -14
- data/test/stripe/issuing/transaction_test.rb +1 -1
- data/test/stripe/list_object_test.rb +70 -24
- data/test/stripe/login_link_test.rb +2 -2
- data/test/stripe/mandate_test.rb +14 -0
- data/test/stripe/multipart_encoder_test.rb +130 -0
- data/test/stripe/oauth_test.rb +17 -1
- data/test/stripe/order_return_test.rb +1 -1
- data/test/stripe/order_test.rb +28 -3
- data/test/stripe/payment_intent_test.rb +31 -4
- data/test/stripe/payment_method_test.rb +84 -0
- data/test/stripe/payout_test.rb +23 -1
- data/test/stripe/person_test.rb +1 -1
- data/test/stripe/plan_test.rb +26 -20
- data/test/stripe/price_test.rb +48 -0
- data/test/stripe/product_test.rb +17 -8
- data/test/stripe/promotion_code_test.rb +42 -0
- data/test/stripe/radar/early_fraud_warning_test.rb +22 -0
- data/test/stripe/radar/value_list_item_test.rb +16 -6
- data/test/stripe/radar/value_list_test.rb +16 -6
- data/test/stripe/recipient_test.rb +18 -5
- data/test/stripe/refund_test.rb +1 -1
- data/test/stripe/reporting/report_run_test.rb +1 -1
- data/test/stripe/reporting/report_type_test.rb +1 -1
- data/test/stripe/reversal_test.rb +1 -1
- data/test/stripe/review_test.rb +1 -1
- data/test/stripe/setup_attempt_test.rb +16 -0
- data/test/stripe/setup_intent_test.rb +84 -0
- data/test/stripe/sigma/scheduled_query_run_test.rb +1 -1
- data/test/stripe/sku_test.rb +16 -6
- data/test/stripe/source_test.rb +52 -19
- data/test/stripe/stripe_client_test.rb +546 -78
- data/test/stripe/stripe_configuration_test.rb +131 -0
- data/test/stripe/stripe_object_test.rb +16 -41
- data/test/stripe/stripe_response_test.rb +71 -25
- data/test/stripe/subscription_item_test.rb +38 -7
- data/test/stripe/subscription_schedule_test.rb +19 -1
- data/test/stripe/subscription_test.rb +29 -9
- data/test/stripe/tax_id_test.rb +31 -0
- data/test/stripe/tax_rate_test.rb +43 -0
- data/test/stripe/terminal/connection_token_test.rb +1 -1
- data/test/stripe/terminal/location_test.rb +18 -1
- data/test/stripe/terminal/reader_test.rb +18 -1
- data/test/stripe/three_d_secure_test.rb +1 -1
- data/test/stripe/topup_test.rb +9 -1
- data/test/stripe/transfer_test.rb +46 -1
- data/test/stripe/usage_record_summary_test.rb +15 -5
- data/test/stripe/util_test.rb +1 -1
- data/test/stripe/webhook_endpoint_test.rb +18 -1
- data/test/stripe/webhook_test.rb +48 -9
- data/test/stripe_mock.rb +4 -3
- data/test/stripe_test.rb +102 -33
- data/test/test_helper.rb +16 -12
- metadata +141 -129
- data/lib/stripe/alipay_account.rb +0 -27
- data/lib/stripe/application_fee.rb +0 -23
- data/lib/stripe/application_fee_refund.rb +0 -22
- data/lib/stripe/bank_account.rb +0 -32
- data/lib/stripe/charge.rb +0 -84
- data/lib/stripe/checkout/session.rb +0 -11
- data/lib/stripe/customer.rb +0 -90
- data/lib/stripe/dispute.rb +0 -19
- data/lib/stripe/invoice.rb +0 -48
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/issuing/authorization.rb +0 -22
- data/lib/stripe/issuing/card.rb +0 -18
- data/lib/stripe/issuing/dispute.rb +0 -13
- data/lib/stripe/login_link.rb +0 -11
- data/lib/stripe/order.rb +0 -31
- data/lib/stripe/payment_intent.rb +0 -26
- data/lib/stripe/payout.rb +0 -20
- data/lib/stripe/reversal.rb +0 -22
- data/lib/stripe/review.rb +0 -14
- data/lib/stripe/source.rb +0 -38
- data/lib/stripe/subscription.rb +0 -25
- data/lib/stripe/subscription_item.rb +0 -17
- data/lib/stripe/subscription_schedule.rb +0 -32
- data/lib/stripe/subscription_schedule_revision.rb +0 -25
- data/lib/stripe/terminal/connection_token.rb +0 -11
- data/lib/stripe/topup.rb +0 -16
- data/lib/stripe/transfer.rb +0 -23
- data/lib/stripe/usage_record.rb +0 -14
- data/test/api_stub_helpers.rb +0 -1
- data/test/stripe/account_external_accounts_operations_test.rb +0 -69
- data/test/stripe/account_login_links_operations_test.rb +0 -21
- data/test/stripe/account_persons_operations_test.rb +0 -70
- data/test/stripe/application_fee_refunds_operations_test.rb +0 -56
- data/test/stripe/customer_sources_operations_test.rb +0 -64
- data/test/stripe/file_upload_test.rb +0 -76
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/source_transaction_test.rb +0 -19
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_revisions_operations_test.rb +0 -35
- data/test/stripe/transfer_reversals_operations_test.rb +0 -57
- data/test/stripe/usage_record_test.rb +0 -28
@@ -0,0 +1,178 @@
|
|
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 open_timeout=(open_timeout)
|
105
|
+
@open_timeout = open_timeout
|
106
|
+
StripeClient.clear_all_connection_managers
|
107
|
+
end
|
108
|
+
|
109
|
+
def read_timeout=(read_timeout)
|
110
|
+
@read_timeout = read_timeout
|
111
|
+
StripeClient.clear_all_connection_managers
|
112
|
+
end
|
113
|
+
|
114
|
+
def write_timeout=(write_timeout)
|
115
|
+
unless Net::HTTP.instance_methods.include?(:write_timeout=)
|
116
|
+
raise NotImplementedError
|
117
|
+
end
|
118
|
+
|
119
|
+
@write_timeout = write_timeout
|
120
|
+
StripeClient.clear_all_connection_managers
|
121
|
+
end
|
122
|
+
|
123
|
+
def proxy=(proxy)
|
124
|
+
@proxy = proxy
|
125
|
+
StripeClient.clear_all_connection_managers
|
126
|
+
end
|
127
|
+
|
128
|
+
def verify_ssl_certs=(verify_ssl_certs)
|
129
|
+
@verify_ssl_certs = verify_ssl_certs
|
130
|
+
StripeClient.clear_all_connection_managers
|
131
|
+
end
|
132
|
+
|
133
|
+
def uploads_base=(uploads_base)
|
134
|
+
@uploads_base = uploads_base
|
135
|
+
StripeClient.clear_all_connection_managers
|
136
|
+
end
|
137
|
+
|
138
|
+
def connect_base=(connect_base)
|
139
|
+
@connect_base = connect_base
|
140
|
+
StripeClient.clear_all_connection_managers
|
141
|
+
end
|
142
|
+
|
143
|
+
def api_base=(api_base)
|
144
|
+
@api_base = api_base
|
145
|
+
StripeClient.clear_all_connection_managers
|
146
|
+
end
|
147
|
+
|
148
|
+
def ca_bundle_path=(path)
|
149
|
+
@ca_bundle_path = path
|
150
|
+
|
151
|
+
# empty this field so a new store is initialized
|
152
|
+
@ca_store = nil
|
153
|
+
|
154
|
+
StripeClient.clear_all_connection_managers
|
155
|
+
end
|
156
|
+
|
157
|
+
# A certificate store initialized from the the bundle in #ca_bundle_path and
|
158
|
+
# which is used to validate TLS on every request.
|
159
|
+
#
|
160
|
+
# This was added to the give the gem "pseudo thread safety" in that it seems
|
161
|
+
# when initiating many parallel requests marshaling the certificate store is
|
162
|
+
# the most likely point of failure (see issue #382). Any program attempting
|
163
|
+
# to leverage this pseudo safety should make a call to this method (i.e.
|
164
|
+
# `Stripe.ca_store`) in their initialization code because it marshals lazily
|
165
|
+
# and is itself not thread safe.
|
166
|
+
def ca_store
|
167
|
+
@ca_store ||= begin
|
168
|
+
store = OpenSSL::X509::Store.new
|
169
|
+
store.add_file(ca_bundle_path)
|
170
|
+
store
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
def enable_telemetry?
|
175
|
+
enable_telemetry
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|
data/lib/stripe/stripe_object.rb
CHANGED
@@ -4,7 +4,7 @@ module Stripe
|
|
4
4
|
class StripeObject
|
5
5
|
include Enumerable
|
6
6
|
|
7
|
-
@@permanent_attributes = Set.new([:id])
|
7
|
+
@@permanent_attributes = Set.new([:id]) # rubocop:disable Style/ClassVars
|
8
8
|
|
9
9
|
# The default :id method is deprecated and isn't useful to us
|
10
10
|
undef :id if method_defined?(:id)
|
@@ -93,10 +93,12 @@ module Stripe
|
|
93
93
|
# considered to be equal if they have the same set of values and each one
|
94
94
|
# of those values is the same.
|
95
95
|
def ==(other)
|
96
|
-
other.is_a?(StripeObject) &&
|
96
|
+
other.is_a?(StripeObject) &&
|
97
|
+
@values == other.instance_variable_get(:@values)
|
97
98
|
end
|
98
99
|
|
99
|
-
# Hash equality. As with `#==`, we consider two equivalent Stripe objects
|
100
|
+
# Hash equality. As with `#==`, we consider two equivalent Stripe objects
|
101
|
+
# equal.
|
100
102
|
def eql?(other)
|
101
103
|
# Defer to the implementation on `#==`.
|
102
104
|
self == other
|
@@ -121,21 +123,10 @@ module Stripe
|
|
121
123
|
|
122
124
|
def inspect
|
123
125
|
id_string = respond_to?(:id) && !id.nil? ? " id=#{id}" : ""
|
124
|
-
"#<#{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)
|
125
128
|
end
|
126
129
|
|
127
|
-
# Re-initializes the object based on a hash of values (usually one that's
|
128
|
-
# come back from an API call). Adds or removes value accessors as necessary
|
129
|
-
# and updates the state of internal data.
|
130
|
-
#
|
131
|
-
# Please don't use this method. If you're trying to do mass assignment, try
|
132
|
-
# #initialize_from instead.
|
133
|
-
def refresh_from(values, opts, partial = false)
|
134
|
-
initialize_from(values, opts, partial)
|
135
|
-
end
|
136
|
-
extend Gem::Deprecate
|
137
|
-
deprecate :refresh_from, "#update_attributes", 2016, 1
|
138
|
-
|
139
130
|
# Mass assigns attributes on the model.
|
140
131
|
#
|
141
132
|
# This is a version of +update_attributes+ that takes some extra options
|
@@ -144,7 +135,8 @@ module Stripe
|
|
144
135
|
# ==== Attributes
|
145
136
|
#
|
146
137
|
# * +values+ - Hash of values to use to update the current attributes of
|
147
|
-
# 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.
|
148
140
|
# * +opts+ - Options for +StripeObject+ like an API key that will be reused
|
149
141
|
# on subsequent API calls.
|
150
142
|
#
|
@@ -162,12 +154,12 @@ module Stripe
|
|
162
154
|
end
|
163
155
|
end
|
164
156
|
|
165
|
-
def [](
|
166
|
-
@values[
|
157
|
+
def [](key)
|
158
|
+
@values[key.to_sym]
|
167
159
|
end
|
168
160
|
|
169
|
-
def []=(
|
170
|
-
send(:"#{
|
161
|
+
def []=(key, value)
|
162
|
+
send(:"#{key}=", value)
|
171
163
|
end
|
172
164
|
|
173
165
|
def keys
|
@@ -178,17 +170,20 @@ module Stripe
|
|
178
170
|
@values.values
|
179
171
|
end
|
180
172
|
|
181
|
-
def to_json(*
|
173
|
+
def to_json(*_opts)
|
174
|
+
# TODO: pass opts to JSON.generate?
|
182
175
|
JSON.generate(@values)
|
183
176
|
end
|
184
177
|
|
185
|
-
def as_json(*
|
186
|
-
@values.as_json(*
|
178
|
+
def as_json(*opts)
|
179
|
+
@values.as_json(*opts)
|
187
180
|
end
|
188
181
|
|
189
182
|
def to_hash
|
190
183
|
maybe_to_hash = lambda do |value|
|
191
|
-
|
184
|
+
return nil if value.nil?
|
185
|
+
|
186
|
+
value.respond_to?(:to_hash) ? value.to_hash : value
|
192
187
|
end
|
193
188
|
|
194
189
|
@values.each_with_object({}) do |(key, value), acc|
|
@@ -251,10 +246,11 @@ module Stripe
|
|
251
246
|
# values within in that its parent StripeObject doesn't know about.
|
252
247
|
#
|
253
248
|
unsaved = @unsaved_values.include?(k)
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
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
|
+
)
|
258
254
|
end
|
259
255
|
|
260
256
|
# a `nil` that makes it out of `#serialize_params_value` signals an empty
|
@@ -264,16 +260,6 @@ module Stripe
|
|
264
260
|
update_hash
|
265
261
|
end
|
266
262
|
|
267
|
-
class << self
|
268
|
-
# This class method has been deprecated in favor of the instance method
|
269
|
-
# of the same name.
|
270
|
-
def serialize_params(obj, options = {})
|
271
|
-
obj.serialize_params(options)
|
272
|
-
end
|
273
|
-
extend Gem::Deprecate
|
274
|
-
deprecate :serialize_params, "#serialize_params", 2016, 9
|
275
|
-
end
|
276
|
-
|
277
263
|
# A protected field is one that doesn't get an accessor assigned to it
|
278
264
|
# (i.e. `obj.public = ...`) and one which is not allowed to be updated via
|
279
265
|
# the class level `Model.update(id, { ... })`.
|
@@ -281,13 +267,11 @@ module Stripe
|
|
281
267
|
[]
|
282
268
|
end
|
283
269
|
|
284
|
-
protected
|
285
|
-
|
286
|
-
def metaclass
|
270
|
+
protected def metaclass
|
287
271
|
class << self; self; end
|
288
272
|
end
|
289
273
|
|
290
|
-
def remove_accessors(keys)
|
274
|
+
protected def remove_accessors(keys)
|
291
275
|
# not available in the #instance_eval below
|
292
276
|
protected_fields = self.class.protected_fields
|
293
277
|
|
@@ -298,13 +282,31 @@ module Stripe
|
|
298
282
|
|
299
283
|
# Remove methods for the accessor's reader and writer.
|
300
284
|
[k, :"#{k}=", :"#{k}?"].each do |method_name|
|
301
|
-
|
285
|
+
next unless method_defined?(method_name)
|
286
|
+
|
287
|
+
begin
|
288
|
+
remove_method(method_name)
|
289
|
+
rescue NameError
|
290
|
+
# In some cases there can be a method that's detected with
|
291
|
+
# `method_defined?`, but which cannot be removed with
|
292
|
+
# `remove_method`, even though it's on the same class. The only
|
293
|
+
# case so far that we've noticed this is when a class is
|
294
|
+
# reopened for monkey patching:
|
295
|
+
#
|
296
|
+
# https://github.com/stripe/stripe-ruby/issues/749
|
297
|
+
#
|
298
|
+
# Here we swallow that error and issue a warning so at least
|
299
|
+
# the program doesn't crash.
|
300
|
+
warn("WARNING: Unable to remove method `#{method_name}`; " \
|
301
|
+
"if custom, please consider renaming to a name that doesn't " \
|
302
|
+
"collide with an API property name.")
|
303
|
+
end
|
302
304
|
end
|
303
305
|
end
|
304
306
|
end
|
305
307
|
end
|
306
308
|
|
307
|
-
def add_accessors(keys, values)
|
309
|
+
protected def add_accessors(keys, values)
|
308
310
|
# not available in the #instance_eval below
|
309
311
|
protected_fields = self.class.protected_fields
|
310
312
|
|
@@ -341,7 +343,11 @@ module Stripe
|
|
341
343
|
end
|
342
344
|
end
|
343
345
|
|
344
|
-
|
346
|
+
# Disabling the cop because it's confused by the fact that the methods are
|
347
|
+
# protected, but we do define `#respond_to_missing?` just below. Hopefully
|
348
|
+
# this is fixed in more recent Rubocop versions.
|
349
|
+
# rubocop:disable Style/MissingRespondToMissing
|
350
|
+
protected def method_missing(name, *args)
|
345
351
|
# TODO: only allow setting in updateable classes.
|
346
352
|
if name.to_s.end_with?("=")
|
347
353
|
attr = name.to_s[0...-1].to_sym
|
@@ -357,7 +363,9 @@ module Stripe
|
|
357
363
|
begin
|
358
364
|
mth = method(name)
|
359
365
|
rescue NameError
|
360
|
-
raise NoMethodError,
|
366
|
+
raise NoMethodError,
|
367
|
+
"Cannot set #{attr} on this object. HINT: you can't set: " \
|
368
|
+
"#{@@permanent_attributes.to_a.join(', ')}"
|
361
369
|
end
|
362
370
|
return mth.call(args[0])
|
363
371
|
elsif @values.key?(name)
|
@@ -367,16 +375,22 @@ module Stripe
|
|
367
375
|
begin
|
368
376
|
super
|
369
377
|
rescue NoMethodError => e
|
370
|
-
# If we notice the accessed name
|
378
|
+
# If we notice the accessed name of our set of transient values we can
|
371
379
|
# give the user a slightly more helpful error message. If not, just
|
372
380
|
# raise right away.
|
373
381
|
raise unless @transient_values.include?(name)
|
374
382
|
|
375
|
-
raise NoMethodError,
|
383
|
+
raise NoMethodError,
|
384
|
+
e.message + ". HINT: The '#{name}' attribute was set in the " \
|
385
|
+
"past, however. It was then wiped when refreshing the object " \
|
386
|
+
"with the result returned by Stripe's API, probably as a " \
|
387
|
+
"result of a save(). The attributes currently available on " \
|
388
|
+
"this object are: #{@values.keys.join(', ')}"
|
376
389
|
end
|
377
390
|
end
|
391
|
+
# rubocop:enable Style/MissingRespondToMissing
|
378
392
|
|
379
|
-
def respond_to_missing?(symbol, include_private = false)
|
393
|
+
protected def respond_to_missing?(symbol, include_private = false)
|
380
394
|
@values && @values.key?(symbol) || super
|
381
395
|
end
|
382
396
|
|
@@ -392,7 +406,7 @@ module Stripe
|
|
392
406
|
# * +:opts:+ Options for StripeObject like an API key.
|
393
407
|
# * +:partial:+ Indicates that the re-initialization should not attempt to
|
394
408
|
# remove accessors.
|
395
|
-
def initialize_from(values, opts, partial = false)
|
409
|
+
protected def initialize_from(values, opts, partial = false)
|
396
410
|
@opts = Util.normalize_opts(opts)
|
397
411
|
|
398
412
|
# the `#send` is here so that we can keep this method private
|
@@ -402,8 +416,8 @@ module Stripe
|
|
402
416
|
added = Set.new(values.keys - @values.keys)
|
403
417
|
|
404
418
|
# Wipe old state before setting new. This is useful for e.g. updating a
|
405
|
-
# customer, where there is no persistent card parameter. Mark those
|
406
|
-
# which don't persist as transient
|
419
|
+
# customer, where there is no persistent card parameter. Mark those
|
420
|
+
# values which don't persist as transient
|
407
421
|
|
408
422
|
remove_accessors(removed)
|
409
423
|
add_accessors(added, values)
|
@@ -423,7 +437,8 @@ module Stripe
|
|
423
437
|
self
|
424
438
|
end
|
425
439
|
|
426
|
-
def serialize_params_value(value, original, unsaved, force,
|
440
|
+
protected def serialize_params_value(value, original, unsaved, force,
|
441
|
+
key: nil)
|
427
442
|
if value.nil?
|
428
443
|
""
|
429
444
|
|
@@ -498,11 +513,9 @@ module Stripe
|
|
498
513
|
end
|
499
514
|
end
|
500
515
|
|
501
|
-
private
|
502
|
-
|
503
516
|
# Produces a deep copy of the given object including support for arrays,
|
504
517
|
# hashes, and StripeObjects.
|
505
|
-
def self.deep_copy(obj)
|
518
|
+
private_class_method def self.deep_copy(obj)
|
506
519
|
case obj
|
507
520
|
when Array
|
508
521
|
obj.map { |e| deep_copy(e) }
|
@@ -522,9 +535,8 @@ module Stripe
|
|
522
535
|
obj
|
523
536
|
end
|
524
537
|
end
|
525
|
-
private_class_method :deep_copy
|
526
538
|
|
527
|
-
def dirty_value!(value)
|
539
|
+
private def dirty_value!(value)
|
528
540
|
case value
|
529
541
|
when Array
|
530
542
|
value.map { |v| dirty_value!(v) }
|
@@ -535,12 +547,14 @@ module Stripe
|
|
535
547
|
|
536
548
|
# Returns a hash of empty values for all the values that are in the given
|
537
549
|
# StripeObject.
|
538
|
-
def empty_values(obj)
|
550
|
+
private def empty_values(obj)
|
539
551
|
values = case obj
|
540
552
|
when Hash then obj
|
541
553
|
when StripeObject then obj.instance_variable_get(:@values)
|
542
554
|
else
|
543
|
-
raise ArgumentError,
|
555
|
+
raise ArgumentError,
|
556
|
+
"#empty_values got unexpected object type: " \
|
557
|
+
"#{obj.class.name}"
|
544
558
|
end
|
545
559
|
|
546
560
|
values.each_with_object({}) do |(k, _), update|
|