stripe 2.0.3 → 5.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1036 -0
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +24 -23
  5. data/History.txt +1 -593
  6. data/Makefile +7 -0
  7. data/README.md +252 -53
  8. data/Rakefile +18 -24
  9. data/VERSION +1 -1
  10. data/bin/stripe-console +5 -3
  11. data/lib/stripe/api_operations/create.rb +4 -2
  12. data/lib/stripe/api_operations/delete.rb +31 -3
  13. data/lib/stripe/api_operations/list.rb +4 -13
  14. data/lib/stripe/api_operations/nested_resource.rb +73 -0
  15. data/lib/stripe/api_operations/request.rb +92 -10
  16. data/lib/stripe/api_operations/save.rb +25 -13
  17. data/lib/stripe/api_operations/search.rb +19 -0
  18. data/lib/stripe/api_resource.rb +55 -11
  19. data/lib/stripe/api_resource_test_helpers.rb +47 -0
  20. data/lib/stripe/connection_manager.rb +200 -0
  21. data/lib/stripe/error_object.rb +93 -0
  22. data/lib/stripe/errors.rb +98 -13
  23. data/lib/stripe/instrumentation.rb +84 -0
  24. data/lib/stripe/list_object.rb +55 -21
  25. data/lib/stripe/multipart_encoder.rb +131 -0
  26. data/lib/stripe/oauth.rb +65 -0
  27. data/lib/stripe/object_types.rb +119 -0
  28. data/lib/stripe/{account.rb → resources/account.rb} +75 -38
  29. data/lib/stripe/resources/account_link.rb +10 -0
  30. data/lib/stripe/resources/alipay_account.rb +34 -0
  31. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +6 -1
  32. data/lib/stripe/resources/application_fee.rb +14 -0
  33. data/lib/stripe/resources/application_fee_refund.rb +31 -0
  34. data/lib/stripe/resources/balance.rb +8 -0
  35. data/lib/stripe/resources/balance_transaction.rb +10 -0
  36. data/lib/stripe/resources/bank_account.rb +43 -0
  37. data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
  38. data/lib/stripe/resources/billing_portal/session.rb +12 -0
  39. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +8 -4
  40. data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
  41. data/lib/stripe/resources/capability.rb +34 -0
  42. data/lib/stripe/resources/card.rb +38 -0
  43. data/lib/stripe/resources/cash_balance.rb +22 -0
  44. data/lib/stripe/resources/charge.rb +32 -0
  45. data/lib/stripe/resources/checkout/session.rb +27 -0
  46. data/lib/stripe/resources/country_spec.rb +10 -0
  47. data/lib/stripe/{coupon.rb → resources/coupon.rb} +6 -1
  48. data/lib/stripe/resources/credit_note.rb +33 -0
  49. data/lib/stripe/resources/credit_note_line_item.rb +8 -0
  50. data/lib/stripe/resources/customer.rb +74 -0
  51. data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
  52. data/lib/stripe/resources/discount.rb +8 -0
  53. data/lib/stripe/resources/dispute.rb +22 -0
  54. data/lib/stripe/resources/ephemeral_key.rb +20 -0
  55. data/lib/stripe/resources/event.rb +10 -0
  56. data/lib/stripe/resources/exchange_rate.rb +10 -0
  57. data/lib/stripe/resources/file.rb +36 -0
  58. data/lib/stripe/resources/file_link.rb +12 -0
  59. data/lib/stripe/resources/financial_connections/account.rb +31 -0
  60. data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
  61. data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
  62. data/lib/stripe/resources/financial_connections/session.rb +12 -0
  63. data/lib/stripe/resources/funding_instructions.rb +16 -0
  64. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  65. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  66. data/lib/stripe/resources/invoice.rb +83 -0
  67. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +6 -1
  68. data/lib/stripe/resources/invoice_line_item.rb +8 -0
  69. data/lib/stripe/resources/issuing/authorization.rb +34 -0
  70. data/lib/stripe/resources/issuing/card.rb +25 -0
  71. data/lib/stripe/resources/issuing/card_details.rb +10 -0
  72. data/lib/stripe/resources/issuing/cardholder.rb +14 -0
  73. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  74. data/lib/stripe/resources/issuing/transaction.rb +13 -0
  75. data/lib/stripe/resources/line_item.rb +8 -0
  76. data/lib/stripe/resources/login_link.rb +15 -0
  77. data/lib/stripe/resources/mandate.rb +8 -0
  78. data/lib/stripe/resources/order.rb +33 -0
  79. data/lib/stripe/resources/order_return.rb +10 -0
  80. data/lib/stripe/resources/payment_intent.rb +82 -0
  81. data/lib/stripe/resources/payment_link.rb +23 -0
  82. data/lib/stripe/resources/payment_method.rb +33 -0
  83. data/lib/stripe/resources/payout.rb +33 -0
  84. data/lib/stripe/resources/person.rb +32 -0
  85. data/lib/stripe/{plan.rb → resources/plan.rb} +5 -0
  86. data/lib/stripe/resources/price.rb +21 -0
  87. data/lib/stripe/resources/product.rb +22 -0
  88. data/lib/stripe/resources/promotion_code.rb +12 -0
  89. data/lib/stripe/resources/quote.rb +105 -0
  90. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  91. data/lib/stripe/resources/radar/value_list.rb +15 -0
  92. data/lib/stripe/resources/radar/value_list_item.rb +14 -0
  93. data/lib/stripe/resources/recipient.rb +14 -0
  94. data/lib/stripe/resources/recipient_transfer.rb +7 -0
  95. data/lib/stripe/resources/refund.rb +42 -0
  96. data/lib/stripe/resources/reporting/report_run.rb +13 -0
  97. data/lib/stripe/resources/reporting/report_type.rb +13 -0
  98. data/lib/stripe/resources/reversal.rb +30 -0
  99. data/lib/stripe/resources/review.rb +21 -0
  100. data/lib/stripe/resources/setup_attempt.rb +10 -0
  101. data/lib/stripe/resources/setup_intent.rb +43 -0
  102. data/lib/stripe/resources/shipping_rate.rb +12 -0
  103. data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
  104. data/lib/stripe/{sku.rb → resources/sku.rb} +7 -2
  105. data/lib/stripe/resources/source.rb +47 -0
  106. data/lib/stripe/resources/source_transaction.rb +8 -0
  107. data/lib/stripe/resources/subscription.rb +35 -0
  108. data/lib/stripe/resources/subscription_item.rb +26 -0
  109. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  110. data/lib/stripe/resources/tax_code.rb +10 -0
  111. data/lib/stripe/resources/tax_id.rb +27 -0
  112. data/lib/stripe/{product.rb → resources/tax_rate.rb} +7 -3
  113. data/lib/stripe/resources/terminal/configuration.rb +15 -0
  114. data/lib/stripe/resources/terminal/connection_token.rb +12 -0
  115. data/lib/stripe/resources/terminal/location.rb +15 -0
  116. data/lib/stripe/resources/terminal/reader.rb +75 -0
  117. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  118. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +5 -0
  119. data/lib/stripe/resources/token.rb +10 -0
  120. data/lib/stripe/resources/topup.rb +23 -0
  121. data/lib/stripe/resources/transfer.rb +27 -0
  122. data/lib/stripe/resources/usage_record.rb +8 -0
  123. data/lib/stripe/resources/usage_record_summary.rb +8 -0
  124. data/lib/stripe/{recipient.rb → resources/webhook_endpoint.rb} +6 -5
  125. data/lib/stripe/resources.rb +100 -0
  126. data/lib/stripe/search_result_object.rb +86 -0
  127. data/lib/stripe/singleton_api_resource.rb +10 -4
  128. data/lib/stripe/stripe_client.rb +886 -223
  129. data/lib/stripe/stripe_configuration.rb +194 -0
  130. data/lib/stripe/stripe_object.rb +301 -132
  131. data/lib/stripe/stripe_response.rb +89 -27
  132. data/lib/stripe/util.rb +272 -122
  133. data/lib/stripe/version.rb +3 -1
  134. data/lib/stripe/webhook.rb +121 -0
  135. data/lib/stripe.rb +94 -116
  136. data/stripe.gemspec +35 -16
  137. metadata +127 -156
  138. data/.gitattributes +0 -4
  139. data/.github/ISSUE_TEMPLATE.md +0 -5
  140. data/.gitignore +0 -5
  141. data/.travis.yml +0 -15
  142. data/lib/stripe/alipay_account.rb +0 -20
  143. data/lib/stripe/application_fee.rb +0 -20
  144. data/lib/stripe/application_fee_refund.rb +0 -18
  145. data/lib/stripe/balance.rb +0 -4
  146. data/lib/stripe/balance_transaction.rb +0 -9
  147. data/lib/stripe/bank_account.rb +0 -28
  148. data/lib/stripe/bitcoin_transaction.rb +0 -9
  149. data/lib/stripe/card.rb +0 -25
  150. data/lib/stripe/charge.rb +0 -80
  151. data/lib/stripe/country_spec.rb +0 -9
  152. data/lib/stripe/customer.rb +0 -77
  153. data/lib/stripe/dispute.rb +0 -15
  154. data/lib/stripe/event.rb +0 -5
  155. data/lib/stripe/file_upload.rb +0 -31
  156. data/lib/stripe/invoice.rb +0 -27
  157. data/lib/stripe/order.rb +0 -27
  158. data/lib/stripe/order_return.rb +0 -9
  159. data/lib/stripe/refund.rb +0 -7
  160. data/lib/stripe/reversal.rb +0 -18
  161. data/lib/stripe/source.rb +0 -11
  162. data/lib/stripe/subscription.rb +0 -31
  163. data/lib/stripe/subscription_item.rb +0 -12
  164. data/lib/stripe/token.rb +0 -5
  165. data/lib/stripe/transfer.rb +0 -16
  166. data/openapi/fixtures.json +0 -1383
  167. data/openapi/fixtures.yaml +0 -1130
  168. data/openapi/spec.json +0 -19749
  169. data/openapi/spec.yaml +0 -15359
  170. data/test/api_fixtures.rb +0 -29
  171. data/test/api_stub_helpers.rb +0 -125
  172. data/test/stripe/account_test.rb +0 -204
  173. data/test/stripe/alipay_account_test.rb +0 -19
  174. data/test/stripe/api_operations_test.rb +0 -31
  175. data/test/stripe/api_resource_test.rb +0 -496
  176. data/test/stripe/apple_pay_domain_test.rb +0 -33
  177. data/test/stripe/application_fee_refund_test.rb +0 -38
  178. data/test/stripe/application_fee_test.rb +0 -14
  179. data/test/stripe/balance_test.rb +0 -11
  180. data/test/stripe/bank_account_test.rb +0 -41
  181. data/test/stripe/bitcoin_receiver_test.rb +0 -70
  182. data/test/stripe/bitcoin_transaction_test.rb +0 -21
  183. data/test/stripe/charge_test.rb +0 -59
  184. data/test/stripe/country_spec_test.rb +0 -20
  185. data/test/stripe/coupon_test.rb +0 -44
  186. data/test/stripe/customer_card_test.rb +0 -42
  187. data/test/stripe/customer_test.rb +0 -116
  188. data/test/stripe/dispute_test.rb +0 -42
  189. data/test/stripe/errors_test.rb +0 -18
  190. data/test/stripe/file_upload_test.rb +0 -66
  191. data/test/stripe/invoice_item_test.rb +0 -55
  192. data/test/stripe/invoice_test.rb +0 -66
  193. data/test/stripe/list_object_test.rb +0 -170
  194. data/test/stripe/order_return_test.rb +0 -21
  195. data/test/stripe/order_test.rb +0 -59
  196. data/test/stripe/plan_test.rb +0 -52
  197. data/test/stripe/product_test.rb +0 -47
  198. data/test/stripe/recipient_card_test.rb +0 -40
  199. data/test/stripe/recipient_test.rb +0 -50
  200. data/test/stripe/refund_test.rb +0 -39
  201. data/test/stripe/reversal_test.rb +0 -43
  202. data/test/stripe/sku_test.rb +0 -50
  203. data/test/stripe/source_test.rb +0 -43
  204. data/test/stripe/stripe_client_test.rb +0 -440
  205. data/test/stripe/stripe_object_test.rb +0 -361
  206. data/test/stripe/stripe_response_test.rb +0 -46
  207. data/test/stripe/subscription_item_test.rb +0 -54
  208. data/test/stripe/subscription_test.rb +0 -60
  209. data/test/stripe/three_d_secure_test.rb +0 -23
  210. data/test/stripe/transfer_test.rb +0 -50
  211. data/test/stripe/util_test.rb +0 -149
  212. data/test/stripe_test.rb +0 -41
  213. data/test/test_data.rb +0 -59
  214. data/test/test_helper.rb +0 -41
@@ -1,15 +1,76 @@
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
- if method_defined?(:id)
9
- undef :id
10
+ undef :id if method_defined?(:id)
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
10
64
  end
11
65
 
12
- def initialize(id=nil, opts={})
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
+
73
+ def initialize(id = nil, opts = {})
13
74
  id, @retrieve_params = Util.normalize_id(id)
14
75
  @opts = Util.normalize_opts(opts)
15
76
  @original_values = {}
@@ -21,18 +82,32 @@ module Stripe
21
82
  @values[:id] = id if id
22
83
  end
23
84
 
24
- def self.construct_from(values, opts={})
85
+ def self.construct_from(values, opts = {})
25
86
  values = Stripe::Util.symbolize_names(values)
26
87
 
27
88
  # work around protected #initialize_from for now
28
- self.new(values[:id]).send(:initialize_from, values, opts)
89
+ new(values[:id]).send(:initialize_from, values, opts)
29
90
  end
30
91
 
31
92
  # Determines the equality of two Stripe objects. Stripe objects are
32
93
  # considered to be equal if they have the same set of values and each one
33
94
  # of those values is the same.
34
95
  def ==(other)
35
- other.is_a?(StripeObject) && @values == other.instance_variable_get(:@values)
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
36
111
  end
37
112
 
38
113
  # Indicates whether or not the resource has been deleted on the server.
@@ -42,27 +117,16 @@ module Stripe
42
117
  @values.fetch(:deleted, false)
43
118
  end
44
119
 
45
- def to_s(*args)
120
+ def to_s(*_args)
46
121
  JSON.pretty_generate(to_hash)
47
122
  end
48
123
 
49
124
  def inspect
50
- id_string = (self.respond_to?(:id) && !self.id.nil?) ? " id=#{self.id}" : ""
51
- "#<#{self.class}:0x#{self.object_id.to_s(16)}#{id_string}> JSON: " + JSON.pretty_generate(@values)
125
+ id_string = respond_to?(:id) && !id.nil? ? " id=#{id}" : ""
126
+ "#<#{self.class}:0x#{object_id.to_s(16)}#{id_string}> JSON: " +
127
+ JSON.pretty_generate(@values)
52
128
  end
53
129
 
54
- # Re-initializes the object based on a hash of values (usually one that's
55
- # come back from an API call). Adds or removes value accessors as necessary
56
- # and updates the state of internal data.
57
- #
58
- # Please don't use this method. If you're trying to do mass assignment, try
59
- # #initialize_from instead.
60
- def refresh_from(values, opts, partial=false)
61
- initialize_from(values, opts, partial)
62
- end
63
- extend Gem::Deprecate
64
- deprecate :refresh_from, "#update_attributes", 2016, 01
65
-
66
130
  # Mass assigns attributes on the model.
67
131
  #
68
132
  # This is a version of +update_attributes+ that takes some extra options
@@ -71,7 +135,8 @@ module Stripe
71
135
  # ==== Attributes
72
136
  #
73
137
  # * +values+ - Hash of values to use to update the current attributes of
74
- # 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.
75
140
  # * +opts+ - Options for +StripeObject+ like an API key that will be reused
76
141
  # on subsequent API calls.
77
142
  #
@@ -80,10 +145,7 @@ module Stripe
80
145
  # * +:dirty+ - Whether values should be initiated as "dirty" (unsaved) and
81
146
  # which applies only to new StripeObjects being initiated under this
82
147
  # StripeObject. Defaults to true.
83
- def update_attributes(values, opts = {}, method_options = {})
84
- # Default to true. TODO: Convert to optional arguments after we're off
85
- # 1.9 which will make this quite a bit more clear.
86
- dirty = method_options.fetch(:dirty, true)
148
+ def update_attributes(values, opts = {}, dirty: true)
87
149
  values.each do |k, v|
88
150
  add_accessors([k], values) unless metaclass.method_defined?(k.to_sym)
89
151
  @values[k] = Util.convert_to_stripe_object(v, opts)
@@ -92,12 +154,12 @@ module Stripe
92
154
  end
93
155
  end
94
156
 
95
- def [](k)
96
- @values[k.to_sym]
157
+ def [](key)
158
+ @values[key.to_sym]
97
159
  end
98
160
 
99
- def []=(k, v)
100
- send(:"#{k}=", v)
161
+ def []=(key, value)
162
+ send(:"#{key}=", value)
101
163
  end
102
164
 
103
165
  def keys
@@ -108,27 +170,29 @@ module Stripe
108
170
  @values.values
109
171
  end
110
172
 
111
- def to_json(*a)
173
+ def to_json(*_opts)
174
+ # TODO: pass opts to JSON.generate?
112
175
  JSON.generate(@values)
113
176
  end
114
177
 
115
- def as_json(*a)
116
- @values.as_json(*a)
178
+ def as_json(*opts)
179
+ @values.as_json(*opts)
117
180
  end
118
181
 
119
182
  def to_hash
120
183
  maybe_to_hash = lambda do |value|
184
+ return nil if value.nil?
185
+
121
186
  value.respond_to?(:to_hash) ? value.to_hash : value
122
187
  end
123
188
 
124
- @values.inject({}) do |acc, (key, value)|
189
+ @values.each_with_object({}) do |(key, value), acc|
125
190
  acc[key] = case value
126
191
  when Array
127
192
  value.map(&maybe_to_hash)
128
193
  else
129
194
  maybe_to_hash.call(value)
130
195
  end
131
- acc
132
196
  end
133
197
  end
134
198
 
@@ -136,31 +200,39 @@ module Stripe
136
200
  @values.each(&blk)
137
201
  end
138
202
 
139
- def _dump(level)
140
- # The StripeClient instance in @opts is not serializable and is not
141
- # really a property of the StripeObject, so we exclude it when
142
- # dumping
143
- opts = @opts.clone
144
- opts.delete(:client)
145
- Marshal.dump([@values, opts])
146
- end
147
-
148
- def self._load(args)
149
- values, opts = Marshal.load(args)
150
- construct_from(values, opts)
151
- end
152
-
153
203
  # Sets all keys within the StripeObject as unsaved so that they will be
154
204
  # included with an update when #serialize_params is called. This method is
155
205
  # also recursive, so any StripeObjects contained as values or which are
156
206
  # values in a tenant array are also marked as dirty.
157
207
  def dirty!
158
208
  @unsaved_values = Set.new(@values.keys)
159
- @values.each do |k, v|
209
+ @values.each_value do |v|
160
210
  dirty_value!(v)
161
211
  end
162
212
  end
163
213
 
214
+ # Implements custom encoding for Ruby's Marshal. The data produced by this
215
+ # method should be comprehendable by #marshal_load.
216
+ #
217
+ # This allows us to remove certain features that cannot or should not be
218
+ # serialized.
219
+ def marshal_dump
220
+ # The StripeClient instance in @opts is not serializable and is not
221
+ # really a property of the StripeObject, so we exclude it when
222
+ # dumping
223
+ opts = @opts.clone
224
+ opts.delete(:client)
225
+ [@values, opts]
226
+ end
227
+
228
+ # Implements custom decoding for Ruby's Marshal. Consumes data that's
229
+ # produced by #marshal_dump.
230
+ def marshal_load(data)
231
+ values, opts = data
232
+ initialize(values[:id])
233
+ initialize_from(values, opts)
234
+ end
235
+
164
236
  def serialize_params(options = {})
165
237
  update_hash = {}
166
238
 
@@ -174,31 +246,20 @@ module Stripe
174
246
  # values within in that its parent StripeObject doesn't know about.
175
247
  #
176
248
  unsaved = @unsaved_values.include?(k)
177
- if options[:force] || unsaved || v.is_a?(StripeObject)
178
- update_hash[k.to_sym] =
179
- serialize_params_value(@values[k], @original_values[k], unsaved, options[:force])
180
- end
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
+ )
181
254
  end
182
255
 
183
256
  # a `nil` that makes it out of `#serialize_params_value` signals an empty
184
257
  # value that we shouldn't appear in the serialized form of the object
185
- update_hash.reject! { |_, v| v == nil }
258
+ update_hash.reject! { |_, v| v.nil? }
186
259
 
187
260
  update_hash
188
261
  end
189
262
 
190
- class << self
191
- # This class method has been deprecated in favor of the instance method
192
- # of the same name.
193
- def serialize_params(obj, options = {})
194
- obj.serialize_params(options)
195
- end
196
- extend Gem::Deprecate
197
- deprecate :serialize_params, "#serialize_params", 2016, 9
198
- end
199
-
200
- protected
201
-
202
263
  # A protected field is one that doesn't get an accessor assigned to it
203
264
  # (i.e. `obj.public = ...`) and one which is not allowed to be updated via
204
265
  # the class level `Model.update(id, { ... })`.
@@ -206,45 +267,92 @@ module Stripe
206
267
  []
207
268
  end
208
269
 
209
- def metaclass
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
210
292
  class << self; self; end
211
293
  end
212
294
 
213
- def remove_accessors(keys)
295
+ protected def remove_accessors(keys)
214
296
  # not available in the #instance_eval below
215
297
  protected_fields = self.class.protected_fields
216
298
 
217
299
  metaclass.instance_eval do
218
300
  keys.each do |k|
301
+ next if RESERVED_FIELD_NAMES.include?(k)
219
302
  next if protected_fields.include?(k)
220
303
  next if @@permanent_attributes.include?(k)
221
304
 
222
305
  # Remove methods for the accessor's reader and writer.
223
306
  [k, :"#{k}=", :"#{k}?"].each do |method_name|
224
- if method_defined?(method_name)
307
+ next unless method_defined?(method_name)
308
+
309
+ begin
225
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.")
226
325
  end
227
326
  end
228
327
  end
229
328
  end
230
329
  end
231
330
 
232
- def add_accessors(keys, values)
331
+ protected def add_accessors(keys, values)
233
332
  # not available in the #instance_eval below
234
333
  protected_fields = self.class.protected_fields
235
334
 
236
335
  metaclass.instance_eval do
237
336
  keys.each do |k|
337
+ next if RESERVED_FIELD_NAMES.include?(k)
238
338
  next if protected_fields.include?(k)
239
339
  next if @@permanent_attributes.include?(k)
240
340
 
241
- define_method(k) { @values[k] }
341
+ if k == :method
342
+ # Object#method is a built-in Ruby method that accepts a symbol
343
+ # and returns the corresponding Method object. Because the API may
344
+ # also use `method` as a field name, we check the arity of *args
345
+ # to decide whether to act as a getter or call the parent method.
346
+ define_method(k) { |*args| args.empty? ? @values[k] : super(*args) }
347
+ else
348
+ define_method(k) { @values[k] }
349
+ end
350
+
242
351
  define_method(:"#{k}=") do |v|
243
352
  if v == ""
244
- raise ArgumentError.new(
245
- "You cannot set #{k} to an empty string. " \
353
+ raise ArgumentError, "You cannot set #{k} to an empty string. " \
246
354
  "We interpret empty strings as nil in requests. " \
247
- "You may set (object).#{k} = nil to delete the property.")
355
+ "You may set (object).#{k} = nil to delete the property."
248
356
  end
249
357
  @values[k] = Util.convert_to_stripe_object(v, @opts)
250
358
  dirty_value!(@values[k])
@@ -258,37 +366,55 @@ module Stripe
258
366
  end
259
367
  end
260
368
 
261
- def method_missing(name, *args)
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)
262
374
  # TODO: only allow setting in updateable classes.
263
- if name.to_s.end_with?('=')
375
+ if name.to_s.end_with?("=")
264
376
  attr = name.to_s[0...-1].to_sym
265
377
 
378
+ # Pull out the assigned value. This is only used in the case of a
379
+ # boolean value to add a question mark accessor (i.e. `foo?`) for
380
+ # convenience.
381
+ val = args.first
382
+
266
383
  # the second argument is only required when adding boolean accessors
267
- add_accessors([attr], {})
384
+ add_accessors([attr], attr => val)
268
385
 
269
386
  begin
270
387
  mth = method(name)
271
388
  rescue NameError
272
- raise NoMethodError.new("Cannot set #{attr} on this object. HINT: you can't set: #{@@permanent_attributes.to_a.join(', ')}")
389
+ raise NoMethodError,
390
+ "Cannot set #{attr} on this object. HINT: you can't set: " \
391
+ "#{@@permanent_attributes.to_a.join(', ')}"
273
392
  end
274
393
  return mth.call(args[0])
275
- else
276
- return @values[name] if @values.has_key?(name)
394
+ elsif @values.key?(name)
395
+ return @values[name]
277
396
  end
278
397
 
279
398
  begin
280
399
  super
281
400
  rescue NoMethodError => e
282
- if @transient_values.include?(name)
283
- raise NoMethodError.new(e.message + ". HINT: The '#{name}' attribute was set in the past, however. It was then wiped when refreshing the object with the result returned by Stripe's API, probably as a result of a save(). The attributes currently available on this object are: #{@values.keys.join(', ')}")
284
- else
285
- raise
286
- end
401
+ # If we notice the accessed name of our set of transient values we can
402
+ # give the user a slightly more helpful error message. If not, just
403
+ # raise right away.
404
+ raise unless @transient_values.include?(name)
405
+
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(', ')}"
287
412
  end
288
413
  end
414
+ # rubocop:enable Style/MissingRespondToMissing
289
415
 
290
- def respond_to_missing?(symbol, include_private = false)
291
- @values && @values.has_key?(symbol) || super
416
+ protected def respond_to_missing?(symbol, include_private = false)
417
+ @values && @values.key?(symbol) || super
292
418
  end
293
419
 
294
420
  # Re-initializes the object based on a hash of values (usually one that's
@@ -303,16 +429,18 @@ module Stripe
303
429
  # * +:opts:+ Options for StripeObject like an API key.
304
430
  # * +:partial:+ Indicates that the re-initialization should not attempt to
305
431
  # remove accessors.
306
- def initialize_from(values, opts, partial=false)
432
+ protected def initialize_from(values, opts, partial = false)
307
433
  @opts = Util.normalize_opts(opts)
308
- @original_values = Marshal.load(Marshal.dump(values)) # deep copy
434
+
435
+ # the `#send` is here so that we can keep this method private
436
+ @original_values = self.class.send(:deep_copy, values)
309
437
 
310
438
  removed = partial ? Set.new : Set.new(@values.keys - values.keys)
311
439
  added = Set.new(values.keys - @values.keys)
312
440
 
313
441
  # Wipe old state before setting new. This is useful for e.g. updating a
314
- # customer, where there is no persistent card parameter. Mark those values
315
- # 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
316
444
 
317
445
  remove_accessors(removed)
318
446
  add_accessors(added, values)
@@ -323,8 +451,8 @@ module Stripe
323
451
  @unsaved_values.delete(k)
324
452
  end
325
453
 
326
- update_attributes(values, opts, :dirty => false)
327
- values.each do |k, _|
454
+ update_attributes(values, opts, dirty: false)
455
+ values.each_key do |k|
328
456
  @transient_values.delete(k)
329
457
  @unsaved_values.delete(k)
330
458
  end
@@ -332,10 +460,10 @@ module Stripe
332
460
  self
333
461
  end
334
462
 
335
- def serialize_params_value(value, original, unsaved, force)
336
- case true
337
- when value == nil
338
- ''
463
+ protected def serialize_params_value(value, original, unsaved, force,
464
+ key: nil)
465
+ if value.nil?
466
+ ""
339
467
 
340
468
  # The logic here is that essentially any object embedded in another
341
469
  # object that had a `type` is actually an API resource of a different
@@ -343,23 +471,38 @@ module Stripe
343
471
  # be updated from their proper endpoints, and therefore they are not
344
472
  # included when serializing even if they've been modified.
345
473
  #
346
- # There are _some_ known exceptions though. For example, to save on API
347
- # calls it's sometimes desirable to update a customer's default source by
348
- # setting a new card (or other) object with `#source=` and then saving
349
- # the customer. The `#save_with_parent` flag to override the default
350
- # behavior allows us to handle these exceptions.
351
- when value.is_a?(APIResource) && !value.save_with_parent
352
- nil
353
-
354
- when value.is_a?(Array)
474
+ # There are _some_ known exceptions though.
475
+ #
476
+ # For example, if the value is unsaved (meaning the user has set it), and
477
+ # it looks like the API resource is persisted with an ID, then we include
478
+ # the object so that parameters are serialized with a reference to its
479
+ # ID.
480
+ #
481
+ # Another example is that on save API calls it's sometimes desirable to
482
+ # update a customer's default source by setting a new card (or other)
483
+ # object with `#source=` and then saving the customer. The
484
+ # `#save_with_parent` flag to override the default behavior allows us to
485
+ # handle these exceptions.
486
+ #
487
+ # We throw an error if a property was set explicitly but we can't do
488
+ # anything with it because the integration is probably not working as the
489
+ # user intended it to.
490
+ elsif value.is_a?(APIResource) && !value.save_with_parent
491
+ if !unsaved
492
+ nil
493
+ elsif value.respond_to?(:id) && !value.id.nil?
494
+ value
495
+ else
496
+ raise ArgumentError, "Cannot save property `#{key}` containing " \
497
+ "an API resource. It doesn't appear to be persisted and is " \
498
+ "not marked as `save_with_parent`."
499
+ end
500
+
501
+ elsif value.is_a?(Array)
355
502
  update = value.map { |v| serialize_params_value(v, nil, true, force) }
356
503
 
357
504
  # This prevents an array that's unchanged from being resent.
358
- if update != serialize_params_value(original, nil, true, force)
359
- update
360
- else
361
- nil
362
- end
505
+ update if update != serialize_params_value(original, nil, true, force)
363
506
 
364
507
  # Handle a Hash for now, but in the long run we should be able to
365
508
  # eliminate all places where hashes are stored as values internally by
@@ -371,16 +514,20 @@ module Stripe
371
514
  # existing array being held by a StripeObject. This could happen for
372
515
  # example by appending a new hash onto `additional_owners` for an
373
516
  # account.
374
- when value.is_a?(Hash)
517
+ elsif value.is_a?(Hash)
375
518
  Util.convert_to_stripe_object(value, @opts).serialize_params
376
519
 
377
- when value.is_a?(StripeObject)
378
- update = value.serialize_params(:force => force)
520
+ elsif value.is_a?(StripeObject)
521
+ update = value.serialize_params(force: force)
379
522
 
380
- # If the entire object was replaced, then we need blank each field of
381
- # the old object that held a value. The new serialized values will
382
- # override any of these empty values.
383
- update = empty_values(original).merge(update) if original && unsaved
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
384
531
 
385
532
  update
386
533
 
@@ -389,9 +536,30 @@ module Stripe
389
536
  end
390
537
  end
391
538
 
392
- private
539
+ # Produces a deep copy of the given object including support for arrays,
540
+ # hashes, and StripeObjects.
541
+ private_class_method def self.deep_copy(obj)
542
+ case obj
543
+ when Array
544
+ obj.map { |e| deep_copy(e) }
545
+ when Hash
546
+ obj.each_with_object({}) do |(k, v), copy|
547
+ copy[k] = deep_copy(v)
548
+ copy
549
+ end
550
+ when StripeObject
551
+ obj.class.construct_from(
552
+ deep_copy(obj.instance_variable_get(:@values)),
553
+ obj.instance_variable_get(:@opts).select do |k, _v|
554
+ Util::OPTS_COPYABLE.include?(k)
555
+ end
556
+ )
557
+ else
558
+ obj
559
+ end
560
+ end
393
561
 
394
- def dirty_value!(value)
562
+ private def dirty_value!(value)
395
563
  case value
396
564
  when Array
397
565
  value.map { |v| dirty_value!(v) }
@@ -402,17 +570,18 @@ module Stripe
402
570
 
403
571
  # Returns a hash of empty values for all the values that are in the given
404
572
  # StripeObject.
405
- def empty_values(obj)
573
+ private def empty_values(obj)
406
574
  values = case obj
407
- when Hash then obj
408
- when StripeObject then obj.instance_variable_get(:@values)
409
- else
410
- raise ArgumentError, "#empty_values got unexpected object type: #{obj.class.name}"
411
- end
412
-
413
- values.inject({}) do |update, (k, _)|
414
- update[k] = ''
415
- update
575
+ when Hash then obj
576
+ when StripeObject then obj.instance_variable_get(:@values)
577
+ else
578
+ raise ArgumentError,
579
+ "#empty_values got unexpected object type: " \
580
+ "#{obj.class.name}"
581
+ end
582
+
583
+ values.each_with_object({}) do |(k, _), update|
584
+ update[k] = ""
416
585
  end
417
586
  end
418
587
  end