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
data/.gitattributes DELETED
@@ -1,4 +0,0 @@
1
- # may be useful in hiding large schema changes in pull request diffs (but not
2
- # using it for now)
3
- spec/*.json binary
4
- spec/*.yaml binary
@@ -1,5 +0,0 @@
1
- Please only file issues here that you believe represent actual bugs or feature requests for the Stripe Ruby library.
2
-
3
- If you're having general trouble with your Stripe integration, please reach out to support using the form at https://support.stripe.com/ (preferred) or via email to support@stripe.com.
4
-
5
- If you are reporting a bug, please include your Ruby version and the version of the Stripe Ruby library you're using, as well as any other details that may be helpful in reproducing the problem.
data/.gitignore DELETED
@@ -1,8 +0,0 @@
1
- /stripe-*.gem
2
- /Gemfile.lock
3
- .rvmrc
4
- Gemfile.lock
5
- tags
6
- /.bundle/
7
- coverage/
8
- .idea/
data/.rubocop.yml DELETED
@@ -1,32 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
- AllCops:
4
- DisplayCopNames: true
5
- TargetRubyVersion: 2.1
6
-
7
- Layout/CaseIndentation:
8
- EnforcedStyle: end
9
-
10
- Layout/IndentArray:
11
- EnforcedStyle: consistent
12
-
13
- Layout/IndentHash:
14
- EnforcedStyle: consistent
15
-
16
- Metrics/MethodLength:
17
- # There's ~2 long methods in `StripeClient`. If we want to truncate those a
18
- # little, we could move this to be closer to ~30 (but the default of 10 is
19
- # probably too short).
20
- Max: 50
21
-
22
- Metrics/ModuleLength:
23
- Enabled: false
24
-
25
- Style/FrozenStringLiteralComment:
26
- EnforcedStyle: always
27
-
28
- Style/StringLiterals:
29
- EnforcedStyle: double_quotes
30
-
31
- Style/TrailingCommaInLiteral:
32
- EnforcedStyleForMultiline: consistent_comma
data/.rubocop_todo.yml DELETED
@@ -1,50 +0,0 @@
1
- # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2019-03-25 18:32:26 -0700 using RuboCop version 0.50.0.
4
- # The point is for the user to remove these configuration records
5
- # one by one as the offenses are removed from the code base.
6
- # Note that changes in the inspected code, or installation of new
7
- # versions of RuboCop, may require this file to be generated again.
8
-
9
- # Offense count: 20
10
- Metrics/AbcSize:
11
- Max: 53
12
-
13
- # Offense count: 31
14
- # Configuration parameters: CountComments, ExcludedMethods.
15
- Metrics/BlockLength:
16
- Max: 498
17
-
18
- # Offense count: 9
19
- # Configuration parameters: CountComments.
20
- Metrics/ClassLength:
21
- Max: 673
22
-
23
- # Offense count: 12
24
- Metrics/CyclomaticComplexity:
25
- Max: 15
26
-
27
- # Offense count: 364
28
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
29
- # URISchemes: http, https
30
- Metrics/LineLength:
31
- Max: 310
32
-
33
- # Offense count: 6
34
- # Configuration parameters: CountKeywordArgs.
35
- Metrics/ParameterLists:
36
- Max: 7
37
-
38
- # Offense count: 7
39
- Metrics/PerceivedComplexity:
40
- Max: 17
41
-
42
- # Offense count: 2
43
- Style/ClassVars:
44
- Exclude:
45
- - 'lib/stripe/stripe_object.rb'
46
- - 'test/stripe/api_resource_test.rb'
47
-
48
- # Offense count: 78
49
- Style/Documentation:
50
- Enabled: false
data/.travis.yml DELETED
@@ -1,42 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - 2.1
5
- - 2.2
6
- - 2.3
7
- - 2.4
8
- - 2.5
9
- - jruby-9.0.5.0
10
-
11
- notifications:
12
- email:
13
- on_success: never
14
-
15
- sudo: false
16
-
17
- env:
18
- global:
19
- # If changing this number, please also change it in `test/test_helper.rb`.
20
- - STRIPE_MOCK_VERSION=0.56.0
21
-
22
- cache:
23
- directories:
24
- - stripe-mock
25
-
26
- before_install:
27
- # Install bundler 1.x, because we need to support Ruby 2.1 for now
28
- - gem install bundler -v "~> 1.0"
29
- # Unpack and start stripe-mock so that the test suite can talk to it
30
- - |
31
- if [ ! -d "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}" ]; then
32
- mkdir -p stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/
33
- curl -L "https://github.com/stripe/stripe-mock/releases/download/v${STRIPE_MOCK_VERSION}/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -o "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz"
34
- tar -zxf "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -C "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/"
35
- fi
36
- - |
37
- stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/stripe-mock > /dev/null &
38
- STRIPE_MOCK_PID=$!
39
- - export PATH="${PATH}:${PWD}/stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}"
40
-
41
- script:
42
- - bundle exec rake
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class AlipayAccount < APIResource
5
- include Stripe::APIOperations::Save
6
- include Stripe::APIOperations::Delete
7
-
8
- OBJECT_NAME = "alipay_account".freeze
9
-
10
- def resource_url
11
- if !respond_to?(:customer) || customer.nil?
12
- raise NotImplementedError,
13
- "Alipay accounts cannot be accessed without a customer ID."
14
- end
15
-
16
- "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
17
- end
18
-
19
- def self.update(_id, _params = nil, _opts = nil)
20
- raise NotImplementedError, "Alipay accounts cannot be updated without a customer ID. Update an Alipay account by `a = customer.sources.retrieve('alipay_account_id'); a.save`"
21
- end
22
-
23
- def self.retrieve(_id, _opts = nil)
24
- raise NotImplementedError, "Alipay accounts cannot be retrieved without a customer ID. Retrieve an Alipay account using customer.sources.retrieve('alipay_account_id')"
25
- end
26
- end
27
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class ApplicationFee < APIResource
5
- extend Stripe::APIOperations::List
6
- extend Stripe::APIOperations::NestedResource
7
-
8
- OBJECT_NAME = "application_fee".freeze
9
-
10
- nested_resource_class_methods :refund, operations: %i[create retrieve update list]
11
-
12
- # If you don't need access to an updated fee object after the refund, it's
13
- # more performant to just call `fee.refunds.create` directly.
14
- def refund(params = {}, opts = {})
15
- refunds.create(params, opts)
16
-
17
- # now that a refund has been created, we expect the state of this object
18
- # to change as well (i.e. `refunded` will now be `true`) so refresh it
19
- # from the server
20
- refresh
21
- end
22
- end
23
- end
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class ApplicationFeeRefund < APIResource
5
- include Stripe::APIOperations::Save
6
- extend Stripe::APIOperations::List
7
-
8
- OBJECT_NAME = "fee_refund".freeze
9
-
10
- def resource_url
11
- "#{ApplicationFee.resource_url}/#{CGI.escape(fee)}/refunds/#{CGI.escape(id)}"
12
- end
13
-
14
- def self.update(_id, _params = nil, _opts = nil)
15
- raise NotImplementedError, "Refunds cannot be updated without an application fee ID. Update a refund by using `a = appfee.refunds.retrieve('refund_id'); a.save`"
16
- end
17
-
18
- def self.retrieve(_id, _api_key = nil)
19
- raise NotImplementedError, "Refunds cannot be retrieved without an application fee ID. Retrieve a refund using appfee.refunds.retrieve('refund_id')"
20
- end
21
- end
22
- end
@@ -1,32 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class BankAccount < APIResource
5
- include Stripe::APIOperations::Delete
6
- extend Stripe::APIOperations::List
7
- include Stripe::APIOperations::Save
8
-
9
- OBJECT_NAME = "bank_account".freeze
10
-
11
- def verify(params = {}, opts = {})
12
- resp, opts = request(:post, resource_url + "/verify", params, opts)
13
- initialize_from(resp.data, opts)
14
- end
15
-
16
- def resource_url
17
- if respond_to?(:customer)
18
- "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
19
- elsif respond_to?(:account)
20
- "#{Account.resource_url}/#{CGI.escape(account)}/external_accounts/#{CGI.escape(id)}"
21
- end
22
- end
23
-
24
- def self.update(_id, _params = nil, _opts = nil)
25
- raise NotImplementedError, "Bank accounts cannot be updated without an account ID. Update a bank account by using `a = account.external_accounts.retrieve('card_id'); a.save`"
26
- end
27
-
28
- def self.retrieve(_id, _opts = nil)
29
- raise NotImplementedError, "Bank accounts cannot be retrieved without an account ID. Retrieve a bank account using account.external_accounts.retrieve('card_id')"
30
- end
31
- end
32
- end
data/lib/stripe/charge.rb DELETED
@@ -1,86 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Charge < APIResource
5
- extend Stripe::APIOperations::Create
6
- extend Stripe::APIOperations::List
7
- include Stripe::APIOperations::Save
8
-
9
- OBJECT_NAME = "charge".freeze
10
-
11
- custom_method :capture, http_verb: :post
12
-
13
- def refund(params = {}, opts = {})
14
- # Old versions of charge objects included a `refunds` field that was just
15
- # a vanilla array instead of a Stripe list object.
16
- #
17
- # Where possible, we'd still like to use the new refund endpoint (thus
18
- # `self.refunds.create`), but detect the old API version by looking for
19
- # an `Array` and fall back to the old refund URL if necessary so as to
20
- # maintain internal compatibility.
21
- if refunds.is_a?(Array)
22
- resp, opts = request(:post, refund_url, params, opts)
23
- initialize_from(resp.data, opts)
24
- else
25
- refunds.create(params, opts)
26
-
27
- # now that a refund has been created, we expect the state of this object
28
- # to change as well (i.e. `refunded` will now be `true`) so refresh it
29
- # from the server
30
- refresh
31
- end
32
- end
33
-
34
- def capture(params = {}, opts = {})
35
- resp, opts = request(:post, capture_url, params, opts)
36
- initialize_from(resp.data, opts)
37
- end
38
-
39
- def update_dispute(params = {}, opts = {})
40
- resp, opts = request(:post, dispute_url, params, opts)
41
- initialize_from({ dispute: resp.data }, opts, true)
42
- dispute
43
- end
44
-
45
- def close_dispute(params = {}, opts = {})
46
- resp, opts = request(:post, close_dispute_url, params, opts)
47
- initialize_from(resp.data, opts)
48
- end
49
-
50
- def mark_as_fraudulent
51
- params = {
52
- fraud_details: { user_report: "fraudulent" },
53
- }
54
- resp, opts = request(:post, resource_url, params)
55
- initialize_from(resp.data, opts)
56
- end
57
-
58
- def mark_as_safe
59
- params = {
60
- fraud_details: { user_report: "safe" },
61
- }
62
- resp, opts = request(:post, resource_url, params)
63
- initialize_from(resp.data, opts)
64
- end
65
-
66
- private
67
-
68
- def capture_url
69
- resource_url + "/capture"
70
- end
71
-
72
- def dispute_url
73
- resource_url + "/dispute"
74
- end
75
-
76
- def close_dispute_url
77
- resource_url + "/dispute/close"
78
- end
79
-
80
- # Note that this is actually the *old* refund URL and its use is no longer
81
- # preferred.
82
- def refund_url
83
- resource_url + "/refund"
84
- end
85
- end
86
- end
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class CreditNote < APIResource
5
- extend Stripe::APIOperations::Create
6
- extend Stripe::APIOperations::List
7
- include Stripe::APIOperations::Save
8
-
9
- OBJECT_NAME = "credit_note".freeze
10
-
11
- custom_method :void_credit_note, http_verb: :post, http_path: "void"
12
-
13
- def void_credit_note(params = {}, opts = {})
14
- resp, opts = request(:post, resource_url + "/void", params, opts)
15
- initialize_from(resp.data, opts)
16
- end
17
- end
18
- end
@@ -1,95 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Customer < APIResource
5
- extend Stripe::APIOperations::Create
6
- include Stripe::APIOperations::Delete
7
- include Stripe::APIOperations::Save
8
- extend Stripe::APIOperations::List
9
- extend Stripe::APIOperations::NestedResource
10
-
11
- OBJECT_NAME = "customer".freeze
12
-
13
- custom_method :delete_discount, http_verb: :delete, http_path: "discount"
14
-
15
- save_nested_resource :source
16
- nested_resource_class_methods :source,
17
- operations: %i[create retrieve update delete list]
18
-
19
- nested_resource_class_methods :tax_id,
20
- operations: %i[create retrieve delete list]
21
-
22
- # The API request for deleting a card or bank account and for detaching a
23
- # source object are the same.
24
- class << self
25
- alias detach_source delete_source
26
- end
27
-
28
- def add_invoice_item(params, opts = {})
29
- opts = @opts.merge(Util.normalize_opts(opts))
30
- InvoiceItem.create(params.merge(customer: id), opts)
31
- end
32
-
33
- def invoices(params = {}, opts = {})
34
- opts = @opts.merge(Util.normalize_opts(opts))
35
- Invoice.all(params.merge(customer: id), opts)
36
- end
37
-
38
- def invoice_items(params = {}, opts = {})
39
- opts = @opts.merge(Util.normalize_opts(opts))
40
- InvoiceItem.all(params.merge(customer: id), opts)
41
- end
42
-
43
- def upcoming_invoice(params = {}, opts = {})
44
- opts = @opts.merge(Util.normalize_opts(opts))
45
- Invoice.upcoming(params.merge(customer: id), opts)
46
- end
47
-
48
- def charges(params = {}, opts = {})
49
- opts = @opts.merge(Util.normalize_opts(opts))
50
- Charge.all(params.merge(customer: id), opts)
51
- end
52
-
53
- def create_upcoming_invoice(params = {}, opts = {})
54
- opts = @opts.merge(Util.normalize_opts(opts))
55
- Invoice.create(params.merge(customer: id), opts)
56
- end
57
-
58
- def cancel_subscription(params = {}, opts = {})
59
- resp, opts = request(:delete, subscription_url, params, opts)
60
- initialize_from({ subscription: resp.data }, opts, true)
61
- subscription
62
- end
63
-
64
- def update_subscription(params = {}, opts = {})
65
- resp, opts = request(:post, subscription_url, params, opts)
66
- initialize_from({ subscription: resp.data }, opts, true)
67
- subscription
68
- end
69
-
70
- def create_subscription(params = {}, opts = {})
71
- resp, opts = request(:post, subscriptions_url, params, opts)
72
- initialize_from({ subscription: resp.data }, opts, true)
73
- subscription
74
- end
75
-
76
- def delete_discount
77
- _, opts = request(:delete, discount_url)
78
- initialize_from({ discount: nil }, opts, true)
79
- end
80
-
81
- private
82
-
83
- def discount_url
84
- resource_url + "/discount"
85
- end
86
-
87
- def subscription_url
88
- resource_url + "/subscription"
89
- end
90
-
91
- def subscriptions_url
92
- resource_url + "/subscriptions"
93
- end
94
- end
95
- end