stripe 4.17.0 → 5.32.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +193 -1
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +10 -14
  5. data/README.md +167 -63
  6. data/Rakefile +8 -7
  7. data/VERSION +1 -1
  8. data/lib/stripe/api_operations/create.rb +1 -1
  9. data/lib/stripe/api_operations/delete.rb +7 -3
  10. data/lib/stripe/api_operations/list.rb +1 -12
  11. data/lib/stripe/api_operations/nested_resource.rb +36 -27
  12. data/lib/stripe/api_operations/request.rb +47 -8
  13. data/lib/stripe/api_operations/save.rb +8 -7
  14. data/lib/stripe/api_resource.rb +30 -5
  15. data/lib/stripe/connection_manager.rb +164 -0
  16. data/lib/stripe/error_object.rb +94 -0
  17. data/lib/stripe/errors.rb +31 -10
  18. data/lib/stripe/instrumentation.rb +82 -0
  19. data/lib/stripe/list_object.rb +41 -7
  20. data/lib/stripe/multipart_encoder.rb +131 -0
  21. data/lib/stripe/oauth.rb +8 -6
  22. data/lib/stripe/object_types.rb +102 -0
  23. data/lib/stripe/{account.rb → resources/account.rb} +44 -33
  24. data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
  25. data/lib/stripe/resources/alipay_account.rb +34 -0
  26. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
  27. data/lib/stripe/resources/application_fee.rb +14 -0
  28. data/lib/stripe/resources/application_fee_refund.rb +30 -0
  29. data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
  30. data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
  31. data/lib/stripe/resources/bank_account.rb +43 -0
  32. data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
  33. data/lib/stripe/{checkout → resources/billing_portal}/session.rb +3 -2
  34. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -3
  35. data/lib/stripe/{bitcoin_transaction.rb → resources/bitcoin_transaction.rb} +1 -1
  36. data/lib/stripe/{capability.rb → resources/capability.rb} +11 -4
  37. data/lib/stripe/{card.rb → resources/card.rb} +12 -3
  38. data/lib/stripe/resources/charge.rb +23 -0
  39. data/lib/stripe/resources/checkout/session.rb +16 -0
  40. data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
  41. data/lib/stripe/{coupon.rb → resources/coupon.rb} +2 -1
  42. data/lib/stripe/resources/credit_note.rb +33 -0
  43. data/lib/stripe/resources/credit_note_line_item.rb +7 -0
  44. data/lib/stripe/resources/customer.rb +41 -0
  45. data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
  46. data/lib/stripe/{discount.rb → resources/discount.rb} +1 -1
  47. data/lib/stripe/resources/dispute.rb +22 -0
  48. data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
  49. data/lib/stripe/{event.rb → resources/event.rb} +2 -1
  50. data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
  51. data/lib/stripe/{file.rb → resources/file.rb} +7 -12
  52. data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -1
  53. data/lib/stripe/resources/invoice.rb +74 -0
  54. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +2 -1
  55. data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +1 -1
  56. data/lib/stripe/{issuing → resources/issuing}/authorization.rb +14 -5
  57. data/lib/stripe/{issuing → resources/issuing}/card.rb +8 -3
  58. data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
  59. data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +2 -1
  60. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  61. data/lib/stripe/{issuing → resources/issuing}/transaction.rb +2 -1
  62. data/lib/stripe/resources/line_item.rb +7 -0
  63. data/lib/stripe/resources/login_link.rb +14 -0
  64. data/lib/stripe/resources/mandate.rb +8 -0
  65. data/lib/stripe/resources/order.rb +33 -0
  66. data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
  67. data/lib/stripe/resources/payment_intent.rb +43 -0
  68. data/lib/stripe/{payment_method.rb → resources/payment_method.rb} +14 -5
  69. data/lib/stripe/resources/payout.rb +33 -0
  70. data/lib/stripe/{person.rb → resources/person.rb} +8 -3
  71. data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
  72. data/lib/stripe/resources/price.rb +12 -0
  73. data/lib/stripe/{product.rb → resources/product.rb} +2 -1
  74. data/lib/stripe/resources/promotion_code.rb +12 -0
  75. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  76. data/lib/stripe/{radar → resources/radar}/value_list.rb +2 -1
  77. data/lib/stripe/{radar → resources/radar}/value_list_item.rb +2 -1
  78. data/lib/stripe/{recipient.rb → resources/recipient.rb} +2 -5
  79. data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
  80. data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
  81. data/lib/stripe/{reporting → resources/reporting}/report_run.rb +2 -1
  82. data/lib/stripe/{reporting → resources/reporting}/report_type.rb +2 -1
  83. data/lib/stripe/resources/reversal.rb +29 -0
  84. data/lib/stripe/{review.rb → resources/review.rb} +8 -3
  85. data/lib/stripe/resources/setup_attempt.rb +10 -0
  86. data/lib/stripe/resources/setup_intent.rb +33 -0
  87. data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +2 -1
  88. data/lib/stripe/{sku.rb → resources/sku.rb} +2 -1
  89. data/lib/stripe/{source.rb → resources/source.rb} +22 -15
  90. data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
  91. data/lib/stripe/{subscription.rb → resources/subscription.rb} +12 -13
  92. data/lib/stripe/resources/subscription_item.rb +26 -0
  93. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  94. data/lib/stripe/resources/tax_id.rb +26 -0
  95. data/lib/stripe/{tax_rate.rb → resources/tax_rate.rb} +2 -1
  96. data/lib/stripe/{terminal → resources/terminal}/connection_token.rb +2 -1
  97. data/lib/stripe/{terminal → resources/terminal}/location.rb +2 -1
  98. data/lib/stripe/{terminal → resources/terminal}/reader.rb +2 -1
  99. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
  100. data/lib/stripe/{token.rb → resources/token.rb} +2 -1
  101. data/lib/stripe/{topup.rb → resources/topup.rb} +8 -3
  102. data/lib/stripe/resources/transfer.rb +27 -0
  103. data/lib/stripe/resources/usage_record.rb +7 -0
  104. data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +1 -1
  105. data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +2 -1
  106. data/lib/stripe/resources.rb +85 -0
  107. data/lib/stripe/singleton_api_resource.rb +3 -1
  108. data/lib/stripe/stripe_client.rb +576 -254
  109. data/lib/stripe/stripe_configuration.rb +194 -0
  110. data/lib/stripe/stripe_object.rb +80 -61
  111. data/lib/stripe/stripe_response.rb +53 -21
  112. data/lib/stripe/util.rb +76 -121
  113. data/lib/stripe/version.rb +1 -1
  114. data/lib/stripe/webhook.rb +43 -10
  115. data/lib/stripe.rb +42 -203
  116. data/stripe.gemspec +23 -7
  117. metadata +107 -284
  118. data/.gitattributes +0 -4
  119. data/.github/ISSUE_TEMPLATE.md +0 -5
  120. data/.gitignore +0 -8
  121. data/.rubocop.yml +0 -32
  122. data/.rubocop_todo.yml +0 -50
  123. data/.travis.yml +0 -42
  124. data/lib/stripe/alipay_account.rb +0 -27
  125. data/lib/stripe/application_fee.rb +0 -23
  126. data/lib/stripe/application_fee_refund.rb +0 -22
  127. data/lib/stripe/bank_account.rb +0 -32
  128. data/lib/stripe/charge.rb +0 -86
  129. data/lib/stripe/credit_note.rb +0 -18
  130. data/lib/stripe/customer.rb +0 -95
  131. data/lib/stripe/dispute.rb +0 -23
  132. data/lib/stripe/invoice.rb +0 -48
  133. data/lib/stripe/issuer_fraud_record.rb +0 -9
  134. data/lib/stripe/login_link.rb +0 -11
  135. data/lib/stripe/order.rb +0 -34
  136. data/lib/stripe/payment_intent.rb +0 -30
  137. data/lib/stripe/payout.rb +0 -24
  138. data/lib/stripe/reversal.rb +0 -22
  139. data/lib/stripe/subscription_item.rb +0 -17
  140. data/lib/stripe/subscription_schedule.rb +0 -35
  141. data/lib/stripe/subscription_schedule_revision.rb +0 -25
  142. data/lib/stripe/tax_id.rb +0 -22
  143. data/lib/stripe/transfer.rb +0 -25
  144. data/lib/stripe/usage_record.rb +0 -14
  145. data/test/api_stub_helpers.rb +0 -1
  146. data/test/openapi/README.md +0 -9
  147. data/test/stripe/account_link_test.rb +0 -18
  148. data/test/stripe/account_test.rb +0 -428
  149. data/test/stripe/alipay_account_test.rb +0 -37
  150. data/test/stripe/api_operations_test.rb +0 -81
  151. data/test/stripe/api_resource_test.rb +0 -526
  152. data/test/stripe/apple_pay_domain_test.rb +0 -46
  153. data/test/stripe/application_fee_refund_test.rb +0 -37
  154. data/test/stripe/application_fee_test.rb +0 -58
  155. data/test/stripe/balance_test.rb +0 -13
  156. data/test/stripe/bank_account_test.rb +0 -36
  157. data/test/stripe/capability_test.rb +0 -45
  158. data/test/stripe/charge_test.rb +0 -80
  159. data/test/stripe/checkout/session_test.rb +0 -41
  160. data/test/stripe/country_spec_test.rb +0 -20
  161. data/test/stripe/coupon_test.rb +0 -61
  162. data/test/stripe/credit_note_test.rb +0 -61
  163. data/test/stripe/customer_card_test.rb +0 -42
  164. data/test/stripe/customer_test.rb +0 -226
  165. data/test/stripe/dispute_test.rb +0 -51
  166. data/test/stripe/ephemeral_key_test.rb +0 -93
  167. data/test/stripe/errors_test.rb +0 -20
  168. data/test/stripe/exchange_rate_test.rb +0 -20
  169. data/test/stripe/file_link_test.rb +0 -41
  170. data/test/stripe/file_test.rb +0 -97
  171. data/test/stripe/file_upload_test.rb +0 -79
  172. data/test/stripe/invoice_item_test.rb +0 -66
  173. data/test/stripe/invoice_line_item_test.rb +0 -8
  174. data/test/stripe/invoice_test.rb +0 -213
  175. data/test/stripe/issuer_fraud_record_test.rb +0 -20
  176. data/test/stripe/issuing/authorization_test.rb +0 -72
  177. data/test/stripe/issuing/card_test.rb +0 -62
  178. data/test/stripe/issuing/cardholder_test.rb +0 -53
  179. data/test/stripe/issuing/dispute_test.rb +0 -45
  180. data/test/stripe/issuing/transaction_test.rb +0 -48
  181. data/test/stripe/list_object_test.rb +0 -156
  182. data/test/stripe/login_link_test.rb +0 -37
  183. data/test/stripe/oauth_test.rb +0 -88
  184. data/test/stripe/order_return_test.rb +0 -21
  185. data/test/stripe/order_test.rb +0 -75
  186. data/test/stripe/payment_intent_test.rb +0 -107
  187. data/test/stripe/payment_method_test.rb +0 -84
  188. data/test/stripe/payout_test.rb +0 -57
  189. data/test/stripe/person_test.rb +0 -46
  190. data/test/stripe/plan_test.rb +0 -98
  191. data/test/stripe/product_test.rb +0 -59
  192. data/test/stripe/radar/value_list_item_test.rb +0 -48
  193. data/test/stripe/radar/value_list_test.rb +0 -61
  194. data/test/stripe/recipient_test.rb +0 -62
  195. data/test/stripe/refund_test.rb +0 -39
  196. data/test/stripe/reporting/report_run_test.rb +0 -33
  197. data/test/stripe/reporting/report_type_test.rb +0 -22
  198. data/test/stripe/reversal_test.rb +0 -43
  199. data/test/stripe/review_test.rb +0 -27
  200. data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
  201. data/test/stripe/sku_test.rb +0 -60
  202. data/test/stripe/source_test.rb +0 -99
  203. data/test/stripe/source_transaction_test.rb +0 -19
  204. data/test/stripe/stripe_client_test.rb +0 -842
  205. data/test/stripe/stripe_object_test.rb +0 -525
  206. data/test/stripe/stripe_response_test.rb +0 -49
  207. data/test/stripe/subscription_item_test.rb +0 -63
  208. data/test/stripe/subscription_schedule_revision_test.rb +0 -37
  209. data/test/stripe/subscription_schedule_test.rb +0 -116
  210. data/test/stripe/subscription_test.rb +0 -80
  211. data/test/stripe/tax_id_test.rb +0 -31
  212. data/test/stripe/tax_rate_test.rb +0 -43
  213. data/test/stripe/terminal/connection_token_test.rb +0 -16
  214. data/test/stripe/terminal/location_test.rb +0 -68
  215. data/test/stripe/terminal/reader_test.rb +0 -62
  216. data/test/stripe/three_d_secure_test.rb +0 -23
  217. data/test/stripe/topup_test.rb +0 -62
  218. data/test/stripe/transfer_test.rb +0 -88
  219. data/test/stripe/usage_record_summary_test.rb +0 -19
  220. data/test/stripe/usage_record_test.rb +0 -28
  221. data/test/stripe/util_test.rb +0 -402
  222. data/test/stripe/webhook_endpoint_test.rb +0 -59
  223. data/test/stripe/webhook_test.rb +0 -96
  224. data/test/stripe_mock.rb +0 -77
  225. data/test/stripe_test.rb +0 -63
  226. data/test/test_data.rb +0 -61
  227. data/test/test_helper.rb +0 -73
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Dispute < APIResource
5
- extend Stripe::APIOperations::List
6
- include Stripe::APIOperations::Save
7
-
8
- OBJECT_NAME = "dispute".freeze
9
-
10
- custom_method :close, http_verb: :post
11
-
12
- def close(params = {}, opts = {})
13
- resp, opts = request(:post, resource_url + "/close", params, opts)
14
- initialize_from(resp.data, opts)
15
- end
16
-
17
- def close_url
18
- resource_url + "/close"
19
- end
20
- extend Gem::Deprecate
21
- deprecate :close_url, :none, 2019, 11
22
- end
23
- end
@@ -1,48 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Invoice < APIResource
5
- extend Stripe::APIOperations::Create
6
- include Stripe::APIOperations::Delete
7
- extend Stripe::APIOperations::List
8
- include Stripe::APIOperations::Save
9
-
10
- OBJECT_NAME = "invoice".freeze
11
-
12
- custom_method :finalize_invoice, http_verb: :post, http_path: "finalize"
13
- custom_method :mark_uncollectible, http_verb: :post
14
- custom_method :pay, http_verb: :post
15
- custom_method :send_invoice, http_verb: :post, http_path: "send"
16
- custom_method :void_invoice, http_verb: :post, http_path: "void"
17
-
18
- def finalize_invoice(params = {}, opts = {})
19
- resp, opts = request(:post, resource_url + "/finalize", params, opts)
20
- initialize_from(resp.data, opts)
21
- end
22
-
23
- def mark_uncollectible(params = {}, opts = {})
24
- resp, opts = request(:post, resource_url + "/mark_uncollectible", params, opts)
25
- initialize_from(resp.data, opts)
26
- end
27
-
28
- def pay(params = {}, opts = {})
29
- resp, opts = request(:post, resource_url + "/pay", params, opts)
30
- initialize_from(resp.data, opts)
31
- end
32
-
33
- def send_invoice(params = {}, opts = {})
34
- resp, opts = request(:post, resource_url + "/send", params, opts)
35
- initialize_from(resp.data, opts)
36
- end
37
-
38
- def void_invoice(params = {}, opts = {})
39
- resp, opts = request(:post, resource_url + "/void", params, opts)
40
- initialize_from(resp.data, opts)
41
- end
42
-
43
- def self.upcoming(params, opts = {})
44
- resp, opts = request(:get, resource_url + "/upcoming", params, opts)
45
- Util.convert_to_stripe_object(resp.data, opts)
46
- end
47
- end
48
- end
@@ -1,9 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class IssuerFraudRecord < APIResource
5
- extend Stripe::APIOperations::List
6
-
7
- OBJECT_NAME = "issuer_fraud_record".freeze
8
- end
9
- end
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class LoginLink < APIResource
5
- OBJECT_NAME = "login_link".freeze
6
-
7
- def self.retrieve(_id, _opts = nil)
8
- raise NotImplementedError, "Login links do not have IDs and cannot be retrieved. They can only be created using accounts.login_links.create"
9
- end
10
- end
11
- end
data/lib/stripe/order.rb DELETED
@@ -1,34 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Order < APIResource
5
- extend Stripe::APIOperations::Create
6
- extend Stripe::APIOperations::List
7
- include Stripe::APIOperations::Save
8
-
9
- OBJECT_NAME = "order".freeze
10
-
11
- custom_method :pay, http_verb: :post
12
- custom_method :return_order, http_verb: :post, http_path: "returns"
13
-
14
- def pay(params, opts = {})
15
- resp, opts = request(:post, pay_url, params, opts)
16
- initialize_from(resp.data, opts)
17
- end
18
-
19
- def return_order(params, opts = {})
20
- resp, opts = request(:post, returns_url, params, opts)
21
- Util.convert_to_stripe_object(resp.data, opts)
22
- end
23
-
24
- private
25
-
26
- def pay_url
27
- resource_url + "/pay"
28
- end
29
-
30
- def returns_url
31
- resource_url + "/returns"
32
- end
33
- end
34
- end
@@ -1,30 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class PaymentIntent < APIResource
5
- extend Stripe::APIOperations::Create
6
- extend Stripe::APIOperations::List
7
- include Stripe::APIOperations::Save
8
-
9
- OBJECT_NAME = "payment_intent".freeze
10
-
11
- custom_method :cancel, http_verb: :post
12
- custom_method :capture, http_verb: :post
13
- custom_method :confirm, http_verb: :post
14
-
15
- def cancel(params = {}, opts = {})
16
- resp, opts = request(:post, resource_url + "/cancel", params, opts)
17
- initialize_from(resp.data, opts)
18
- end
19
-
20
- def capture(params = {}, opts = {})
21
- resp, opts = request(:post, resource_url + "/capture", params, opts)
22
- initialize_from(resp.data, opts)
23
- end
24
-
25
- def confirm(params = {}, opts = {})
26
- resp, opts = request(:post, resource_url + "/confirm", params, opts)
27
- initialize_from(resp.data, opts)
28
- end
29
- end
30
- end
data/lib/stripe/payout.rb DELETED
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Payout < APIResource
5
- extend Stripe::APIOperations::Create
6
- extend Stripe::APIOperations::List
7
- include Stripe::APIOperations::Save
8
-
9
- OBJECT_NAME = "payout".freeze
10
-
11
- custom_method :cancel, http_verb: :post
12
-
13
- def cancel(params = {}, opts = {})
14
- resp, opts = request(:post, resource_url + "/cancel", params, opts)
15
- initialize_from(resp.data, opts)
16
- end
17
-
18
- def cancel_url
19
- resource_url + "/cancel"
20
- end
21
- extend Gem::Deprecate
22
- deprecate :cancel_url, :none, 2019, 11
23
- end
24
- end
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Reversal < APIResource
5
- extend Stripe::APIOperations::List
6
- include Stripe::APIOperations::Save
7
-
8
- OBJECT_NAME = "transfer_reversal".freeze
9
-
10
- def resource_url
11
- "#{Transfer.resource_url}/#{CGI.escape(transfer)}/reversals/#{CGI.escape(id)}"
12
- end
13
-
14
- def self.update(_id, _params = nil, _opts = nil)
15
- raise NotImplementedError, "Reversals cannot be updated without a transfer ID. Update a reversal using `r = transfer.reversals.retrieve('reversal_id'); r.save`"
16
- end
17
-
18
- def self.retrieve(_id, _opts = {})
19
- raise NotImplementedError, "Reversals cannot be retrieved without a transfer ID. Retrieve a reversal using transfer.reversals.retrieve('reversal_id')"
20
- end
21
- end
22
- end
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class SubscriptionItem < APIResource
5
- extend Stripe::APIOperations::Create
6
- include Stripe::APIOperations::Delete
7
- extend Stripe::APIOperations::List
8
- include Stripe::APIOperations::Save
9
-
10
- OBJECT_NAME = "subscription_item".freeze
11
-
12
- def usage_record_summaries(params = {}, opts = {})
13
- resp, opts = request(:get, resource_url + "/usage_record_summaries", params, opts)
14
- Util.convert_to_stripe_object(resp.data, opts)
15
- end
16
- end
17
- end
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class SubscriptionSchedule < APIResource
5
- extend Stripe::APIOperations::Create
6
- extend Stripe::APIOperations::List
7
- include Stripe::APIOperations::Save
8
- extend Stripe::APIOperations::NestedResource
9
-
10
- OBJECT_NAME = "subscription_schedule".freeze
11
-
12
- custom_method :cancel, http_verb: :post
13
- custom_method :release, http_verb: :post
14
-
15
- nested_resource_class_methods :revision,
16
- operations: %i[retrieve list]
17
-
18
- def cancel(params = {}, opts = {})
19
- url = resource_url + "/cancel"
20
- resp, opts = request(:post, url, params, opts)
21
- initialize_from(resp.data, opts)
22
- end
23
-
24
- def release(params = {}, opts = {})
25
- url = resource_url + "/release"
26
- resp, opts = request(:post, url, params, opts)
27
- initialize_from(resp.data, opts)
28
- end
29
-
30
- def revisions(params = {}, opts = {})
31
- resp, opts = request(:get, resource_url + "/revisions", params, opts)
32
- Util.convert_to_stripe_object(resp.data, opts)
33
- end
34
- end
35
- end
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class SubscriptionScheduleRevision < APIResource
5
- extend Stripe::APIOperations::List
6
-
7
- OBJECT_NAME = "subscription_schedule_revision".freeze
8
-
9
- def resource_url
10
- if !respond_to?(:schedule) || schedule.nil?
11
- raise NotImplementedError,
12
- "Subscription Schedule Revisions cannot be accessed without a Subscription Schedule ID."
13
- end
14
- "#{SubscriptionSchedule.resource_url}/#{CGI.escape(schedule)}/revisions/#{CGI.escape(id)}"
15
- end
16
-
17
- def self.retrieve(_id, _opts = {})
18
- raise NotImplementedError, "Subscription Schedule Revisions cannot be retrieved without a Subscription Schedule ID. Retrieve it using schedule.revisions.retrieve('revision_id')"
19
- end
20
-
21
- def self.list(_id, _opts = {})
22
- raise NotImplementedError, "Subscription Schedule Revisions cannot be listed without a Subscription Schedule ID. List those using schedule.revisions"
23
- end
24
- end
25
- end
data/lib/stripe/tax_id.rb DELETED
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class TaxId < APIResource
5
- include Stripe::APIOperations::Delete
6
- extend Stripe::APIOperations::List
7
-
8
- OBJECT_NAME = "tax_id".freeze
9
-
10
- def resource_url
11
- if !respond_to?(:customer) || customer.nil?
12
- raise NotImplementedError,
13
- "Tax Ids cannot be accessed without a customer ID."
14
- end
15
- "#{Customer.resource_url}/#{CGI.escape(customer)}/tax_ids/#{CGI.escape(id)}"
16
- end
17
-
18
- def self.retrieve(_id, _opts = {})
19
- raise NotImplementedError, "Tax Ids cannot be retrieved without a customer ID. Retrieve a tax id using Customer.retrieve_tax_id('tax_id')"
20
- end
21
- end
22
- end
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Transfer < APIResource
5
- extend Stripe::APIOperations::Create
6
- extend Stripe::APIOperations::List
7
- include Stripe::APIOperations::Save
8
- extend Stripe::APIOperations::NestedResource
9
-
10
- OBJECT_NAME = "transfer".freeze
11
-
12
- custom_method :cancel, http_verb: :post
13
-
14
- nested_resource_class_methods :reversal, operations: %i[create retrieve update list]
15
-
16
- def cancel
17
- resp, api_key = request(:post, cancel_url)
18
- initialize_from(resp.data, api_key)
19
- end
20
-
21
- def cancel_url
22
- resource_url + "/cancel"
23
- end
24
- end
25
- end
@@ -1,14 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class UsageRecord < APIResource
5
- OBJECT_NAME = "usage_record".freeze
6
-
7
- def self.create(params = {}, opts = {})
8
- raise(ArgumentError, "Params must have a subscription_item key") unless params.key?(:subscription_item)
9
- req_params = params.clone.delete_if { |key, _value| key == :subscription_item }
10
- resp, opts = request(:post, "/v1/subscription_items/#{params[:subscription_item]}/usage_records", req_params, opts)
11
- Util.convert_to_stripe_object(resp.data, opts)
12
- end
13
- end
14
- end
@@ -1 +0,0 @@
1
- # frozen_string_literal: true
@@ -1,9 +0,0 @@
1
- ## Using custom OpenAPI specification and fixtures files
2
-
3
- You can place custom OpenAPI specification and fixtures files in this
4
- directory. The files must be in JSON format, and must be named `spec3.json`
5
- and `fixtures3.json` respectively.
6
-
7
- If those files are present, the test suite will start its own stripe-mock
8
- process on a random available port. In order for this to work, `stripe-mock`
9
- must be on the `PATH` in the environment used to run the test suite.
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class AccountLinkTest < Test::Unit::TestCase
7
- should "be creatable" do
8
- link = Stripe::AccountLink.create(
9
- account: "acct_123",
10
- failure_url: "https://stripe.com/failure",
11
- success_url: "https://stripe.com/success",
12
- type: "custom_account_verification"
13
- )
14
- assert_requested :post, "#{Stripe.api_base}/v1/account_links"
15
- assert link.is_a?(Stripe::AccountLink)
16
- end
17
- end
18
- end
@@ -1,428 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class AccountTest < Test::Unit::TestCase
7
- should "be listable" do
8
- accounts = Stripe::Account.list
9
- assert_requested :get, "#{Stripe.api_base}/v1/accounts"
10
- assert accounts.data.is_a?(Array)
11
- assert accounts.data[0].is_a?(Stripe::Account)
12
- end
13
-
14
- should "be retrievable using singular endpoint" do
15
- account = Stripe::Account.retrieve
16
- assert_requested :get, "#{Stripe.api_base}/v1/account"
17
- assert account.is_a?(Stripe::Account)
18
- end
19
-
20
- should "be retrievable using plural endpoint" do
21
- account = Stripe::Account.retrieve("acct_123")
22
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123"
23
- assert account.is_a?(Stripe::Account)
24
- end
25
-
26
- should "be rejectable" do
27
- account = Stripe::Account.retrieve("acct_foo")
28
- account = account.reject(reason: "fraud")
29
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{account.id}/reject"
30
- assert account.is_a?(Stripe::Account)
31
- end
32
-
33
- context ".reject" do
34
- should "reject the account" do
35
- account = Stripe::Account.reject("acct_foo", reason: "fraud")
36
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{account.id}/reject"
37
- assert account.is_a?(Stripe::Account)
38
- end
39
- end
40
-
41
- should "be creatable" do
42
- account = Stripe::Account.create(metadata: {}, type: "standard")
43
- assert_requested :post, "#{Stripe.api_base}/v1/accounts"
44
- assert account.is_a?(Stripe::Account)
45
- end
46
-
47
- should "be saveable" do
48
- account = Stripe::Account.retrieve("acct_123")
49
- account.metadata["key"] = "value"
50
- account.save
51
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{account.id}"
52
- end
53
-
54
- should "be updateable" do
55
- account = Stripe::Account.update("acct_123", metadata: { foo: "bar" })
56
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123"
57
- assert account.is_a?(Stripe::Account)
58
- end
59
-
60
- context "#delete" do
61
- should "be deletable" do
62
- account = Stripe::Account.retrieve("acct_123")
63
- account = account.delete
64
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/#{account.id}"
65
- assert account.is_a?(Stripe::Account)
66
- end
67
- end
68
-
69
- context ".delete" do
70
- should "be deletable" do
71
- account = Stripe::Account.delete("acct_123")
72
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/acct_123"
73
- assert account.is_a?(Stripe::Account)
74
- end
75
- end
76
-
77
- should "be able to list Persons" do
78
- account = Stripe::Account.retrieve("acct_123")
79
- persons = account.persons
80
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/persons"
81
- assert persons.data.is_a?(Array)
82
- assert persons.data[0].is_a?(Stripe::Person)
83
- end
84
-
85
- context "#bank_account=" do
86
- should "warn that #bank_account= is deprecated" do
87
- old_stderr = $stderr
88
- $stderr = StringIO.new
89
- begin
90
- account = Stripe::Account.retrieve("acct_123")
91
- account.bank_account = "tok_123"
92
- message = "NOTE: Stripe::Account#bank_account= is " \
93
- "deprecated; use #external_account= instead"
94
- assert_match Regexp.new(message), $stderr.string
95
- ensure
96
- $stderr = old_stderr
97
- end
98
- end
99
- end
100
-
101
- context "#deauthorize" do
102
- should "deauthorize an account" do
103
- account = Stripe::Account.retrieve("acct_123")
104
-
105
- # Unfortunately, the OpenAPI spec doesn't yet cover anything under the
106
- # Connect endpoints, so for just stub this out with Webmock.
107
- stub_request(:post, "#{Stripe.connect_base}/oauth/deauthorize")
108
- .with(body: { "client_id" => "ca_1234", "stripe_user_id" => account.id })
109
- .to_return(body: JSON.generate("stripe_user_id" => account.id))
110
- account.deauthorize("ca_1234", "sk_test_1234")
111
- end
112
- end
113
-
114
- context "#legal_entity=" do
115
- should "disallow direct overrides" do
116
- account = Stripe::Account.construct_from(
117
- id: "acct_123",
118
- legal_entity: {
119
- first_name: "name",
120
- }
121
- )
122
-
123
- assert_raise NoMethodError do
124
- account.legal_entity = { first_name: "Blah" }
125
- end
126
-
127
- account.legal_entity.first_name = "Blah"
128
- end
129
- end
130
-
131
- context "#serialize_params" do
132
- should "serialize a new additional_owners" do
133
- obj = Stripe::Util.convert_to_stripe_object({
134
- object: "account",
135
- legal_entity: Stripe::StripeObject.construct_from({
136
- }),
137
- }, {})
138
- obj.legal_entity.additional_owners = [
139
- { first_name: "Joe" },
140
- { first_name: "Jane" },
141
- ]
142
-
143
- expected = {
144
- legal_entity: {
145
- additional_owners: {
146
- "0" => { first_name: "Joe" },
147
- "1" => { first_name: "Jane" },
148
- },
149
- },
150
- }
151
- assert_equal(expected, obj.serialize_params)
152
- end
153
-
154
- should "serialize on an partially changed additional_owners" do
155
- obj = Stripe::Util.convert_to_stripe_object({
156
- object: "account",
157
- legal_entity: {
158
- additional_owners: [
159
- Stripe::StripeObject.construct_from(first_name: "Joe"),
160
- Stripe::StripeObject.construct_from(first_name: "Jane"),
161
- ],
162
- },
163
- }, {})
164
- obj.legal_entity.additional_owners[1].first_name = "Stripe"
165
-
166
- expected = {
167
- legal_entity: {
168
- additional_owners: {
169
- "1" => { first_name: "Stripe" },
170
- },
171
- },
172
- }
173
- assert_equal(expected, obj.serialize_params)
174
- end
175
-
176
- should "serialize on an unchanged additional_owners" do
177
- obj = Stripe::Util.convert_to_stripe_object({
178
- object: "account",
179
- legal_entity: {
180
- additional_owners: [
181
- Stripe::StripeObject.construct_from(first_name: "Joe"),
182
- Stripe::StripeObject.construct_from(first_name: "Jane"),
183
- ],
184
- },
185
- }, {})
186
-
187
- expected = {
188
- legal_entity: {
189
- additional_owners: {},
190
- },
191
- }
192
- assert_equal(expected, obj.serialize_params)
193
- end
194
-
195
- # Note that the empty string that we send for this one has a special
196
- # meaning for the server, which interprets it as an array unset.
197
- should "serialize on an unset additional_owners" do
198
- obj = Stripe::Util.convert_to_stripe_object({
199
- object: "account",
200
- legal_entity: {
201
- additional_owners: [
202
- Stripe::StripeObject.construct_from(first_name: "Joe"),
203
- Stripe::StripeObject.construct_from(first_name: "Jane"),
204
- ],
205
- },
206
- }, {})
207
- obj.legal_entity.additional_owners = nil
208
-
209
- expected = {
210
- legal_entity: {
211
- additional_owners: "",
212
- },
213
- }
214
- assert_equal(expected, obj.serialize_params)
215
- end
216
-
217
- should "serialize on a new individual" do
218
- obj = Stripe::Util.convert_to_stripe_object({
219
- object: "account",
220
- }, {})
221
- obj.individual = { first_name: "Jane" }
222
-
223
- expected = { individual: { first_name: "Jane" } }
224
- assert_equal(expected, obj.serialize_params)
225
- end
226
-
227
- should "serialize on a partially changed individual" do
228
- obj = Stripe::Util.convert_to_stripe_object({
229
- object: "account",
230
- individual: Stripe::Util.convert_to_stripe_object({
231
- object: "person",
232
- first_name: "Jenny",
233
- }, {}),
234
- }, {})
235
- obj.individual = { first_name: "Jane" }
236
-
237
- expected = { individual: { first_name: "Jane" } }
238
- assert_equal(expected, obj.serialize_params)
239
- end
240
-
241
- should "serialize on an unchanged individual" do
242
- obj = Stripe::Util.convert_to_stripe_object({
243
- object: "account",
244
- individual: Stripe::Util.convert_to_stripe_object({
245
- object: "person",
246
- first_name: "Jenny",
247
- }, {}),
248
- }, {})
249
-
250
- expected = { individual: {} }
251
- assert_equal(expected, obj.serialize_params)
252
- end
253
-
254
- should "serialize on an unset individual" do
255
- obj = Stripe::Util.convert_to_stripe_object({
256
- object: "account",
257
- individual: Stripe::Util.convert_to_stripe_object({
258
- object: "person",
259
- first_name: "Jenny",
260
- }, {}),
261
- }, {})
262
- obj.individual = nil
263
-
264
- expected = { individual: "" }
265
- assert_equal(expected, obj.serialize_params)
266
- end
267
- end
268
-
269
- context "#retrieve_capability" do
270
- should "retrieve a capability" do
271
- capability = Stripe::Account.retrieve_capability(
272
- "acct_123",
273
- "acap_123"
274
- )
275
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/capabilities/acap_123"
276
- assert capability.is_a?(Stripe::Capability)
277
- end
278
- end
279
-
280
- context "#update_capability" do
281
- should "update a capability" do
282
- capability = Stripe::Account.update_capability(
283
- "acct_123",
284
- "acap_123",
285
- requested: true
286
- )
287
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/capabilities/acap_123"
288
- assert capability.is_a?(Stripe::Capability)
289
- end
290
- end
291
-
292
- context "#list_capabilities" do
293
- should "list the account's external accounts" do
294
- capabilities = Stripe::Account.list_capabilities(
295
- "acct_123"
296
- )
297
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/capabilities"
298
- assert capabilities.is_a?(Stripe::ListObject)
299
- assert capabilities.data.is_a?(Array)
300
- end
301
- end
302
-
303
- context "#create_external_account" do
304
- should "create an external account" do
305
- external_account = Stripe::Account.create_external_account(
306
- "acct_123",
307
- external_account: "btok_123"
308
- )
309
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts"
310
- assert external_account.is_a?(Stripe::BankAccount)
311
- end
312
- end
313
-
314
- context "#retrieve_external_account" do
315
- should "retrieve an external account" do
316
- external_account = Stripe::Account.retrieve_external_account(
317
- "acct_123",
318
- "ba_123"
319
- )
320
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts/ba_123"
321
- assert external_account.is_a?(Stripe::BankAccount)
322
- end
323
- end
324
-
325
- context "#update_external_account" do
326
- should "update an external account" do
327
- external_account = Stripe::Account.update_external_account(
328
- "acct_123",
329
- "ba_123",
330
- metadata: { foo: "bar" }
331
- )
332
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts/ba_123"
333
- assert external_account.is_a?(Stripe::BankAccount)
334
- end
335
- end
336
-
337
- context "#delete_external_account" do
338
- should "delete an external_account" do
339
- external_account = Stripe::Account.delete_external_account(
340
- "acct_123",
341
- "ba_123"
342
- )
343
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts/ba_123"
344
- assert external_account.deleted
345
- assert_equal "ba_123", external_account.id
346
- end
347
- end
348
-
349
- context "#list_external_accounts" do
350
- should "list the account's external accounts" do
351
- external_accounts = Stripe::Account.list_external_accounts(
352
- "acct_123"
353
- )
354
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts"
355
- assert external_accounts.is_a?(Stripe::ListObject)
356
- assert external_accounts.data.is_a?(Array)
357
- end
358
- end
359
-
360
- context "#create_login_link" do
361
- should "create a login link" do
362
- login_link = Stripe::Account.create_login_link(
363
- "acct_123"
364
- )
365
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/login_links"
366
- assert login_link.is_a?(Stripe::LoginLink)
367
- end
368
- end
369
-
370
- context "#create_person" do
371
- should "create a person" do
372
- person = Stripe::Account.create_person(
373
- "acct_123",
374
- first_name: "John",
375
- last_name: "Doe"
376
- )
377
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/persons"
378
- assert person.is_a?(Stripe::Person)
379
- end
380
- end
381
-
382
- context "#retrieve_person" do
383
- should "retrieve a person" do
384
- person = Stripe::Account.retrieve_person(
385
- "acct_123",
386
- "person_123"
387
- )
388
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/persons/person_123"
389
- assert person.is_a?(Stripe::Person)
390
- end
391
- end
392
-
393
- context "#update_person" do
394
- should "update a person" do
395
- person = Stripe::Account.update_person(
396
- "acct_123",
397
- "person_123",
398
- first_name: "John"
399
- )
400
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/persons/person_123"
401
- assert person.is_a?(Stripe::Person)
402
- end
403
- end
404
-
405
- context "#delete_person" do
406
- should "delete an person" do
407
- person = Stripe::Account.delete_person(
408
- "acct_123",
409
- "person_123"
410
- )
411
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/acct_123/persons/person_123"
412
- assert person.deleted
413
- assert_equal "person_123", person.id
414
- end
415
- end
416
-
417
- context "#list_persons" do
418
- should "list the account's external accounts" do
419
- persons = Stripe::Account.list_persons(
420
- "acct_123"
421
- )
422
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/persons"
423
- assert persons.is_a?(Stripe::ListObject)
424
- assert persons.data.is_a?(Array)
425
- end
426
- end
427
- end
428
- end