stripe 4.9.0 → 5.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.editorconfig +10 -0
- data/.rubocop.yml +56 -8
- data/.rubocop_todo.yml +8 -25
- data/.travis.yml +4 -8
- data/.vscode/extensions.json +7 -0
- data/.vscode/settings.json +8 -0
- data/CHANGELOG.md +206 -2
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -13
- data/README.md +178 -58
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe.rb +41 -195
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +28 -2
- data/lib/stripe/api_operations/list.rb +1 -12
- data/lib/stripe/api_operations/nested_resource.rb +38 -28
- data/lib/stripe/api_operations/request.rb +47 -8
- data/lib/stripe/api_operations/save.rb +8 -7
- data/lib/stripe/api_resource.rb +52 -3
- data/lib/stripe/connection_manager.rb +162 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +31 -10
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +41 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +4 -3
- data/lib/stripe/object_types.rb +101 -0
- data/lib/stripe/resources.rb +84 -0
- data/lib/stripe/{account.rb → resources/account.rb} +50 -27
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -3
- data/lib/stripe/{bitcoin_transaction.rb → resources/bitcoin_transaction.rb} +1 -1
- data/lib/stripe/resources/capability.rb +33 -0
- data/lib/stripe/{card.rb → resources/card.rb} +13 -4
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +3 -2
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +36 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
- data/lib/stripe/resources/discount.rb +7 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
- data/lib/stripe/{event.rb → resources/event.rb} +2 -1
- data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
- data/lib/stripe/{file.rb → resources/file.rb} +9 -11
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +3 -2
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +3 -2
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +1 -1
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +3 -2
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +3 -2
- data/lib/stripe/resources/line_item.rb +7 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/{person.rb → resources/person.rb} +8 -3
- data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +4 -3
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/{radar → resources/radar}/value_list.rb +3 -2
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +3 -2
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +3 -6
- data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
- data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_run.rb +3 -2
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +3 -2
- data/lib/stripe/resources/reversal.rb +29 -0
- data/lib/stripe/resources/review.rb +21 -0
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +3 -2
- data/lib/stripe/{sku.rb → resources/sku.rb} +4 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
- data/lib/stripe/resources/subscription.rb +26 -0
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_id.rb +26 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/{terminal → resources/terminal}/location.rb +4 -2
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +4 -2
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
- data/lib/stripe/{token.rb → resources/token.rb} +2 -1
- data/lib/stripe/resources/topup.rb +23 -0
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +7 -0
- data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +1 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +3 -2
- data/lib/stripe/singleton_api_resource.rb +3 -1
- data/lib/stripe/stripe_client.rb +493 -236
- data/lib/stripe/stripe_configuration.rb +178 -0
- data/lib/stripe/stripe_object.rb +75 -61
- data/lib/stripe/stripe_response.rb +53 -21
- data/lib/stripe/util.rb +66 -109
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +43 -10
- data/stripe.gemspec +14 -5
- data/test/stripe/account_link_test.rb +4 -4
- data/test/stripe/account_test.rb +193 -32
- data/test/stripe/alipay_account_test.rb +1 -1
- data/test/stripe/api_operations_test.rb +3 -4
- data/test/stripe/api_resource_test.rb +159 -37
- data/test/stripe/apple_pay_domain_test.rb +18 -5
- data/test/stripe/application_fee_refund_test.rb +1 -1
- data/test/stripe/application_fee_test.rb +45 -1
- data/test/stripe/balance_test.rb +1 -1
- data/test/stripe/balance_transaction_test.rb +20 -0
- data/test/stripe/bank_account_test.rb +1 -1
- data/test/stripe/billing_portal/session_test.rb +18 -0
- data/test/stripe/capability_test.rb +45 -0
- data/test/stripe/charge_test.rb +13 -8
- data/test/stripe/checkout/session_test.rb +19 -1
- data/test/stripe/connection_manager_test.rb +167 -0
- data/test/stripe/country_spec_test.rb +1 -1
- data/test/stripe/coupon_test.rb +16 -6
- data/test/stripe/credit_note_test.rb +90 -0
- data/test/stripe/customer_balance_transaction_test.rb +37 -0
- data/test/stripe/customer_card_test.rb +7 -1
- data/test/stripe/customer_test.rb +151 -40
- data/test/stripe/dispute_test.rb +10 -1
- data/test/stripe/ephemeral_key_test.rb +8 -1
- data/test/stripe/errors_test.rb +42 -9
- data/test/stripe/exchange_rate_test.rb +1 -1
- data/test/stripe/file_link_test.rb +1 -1
- data/test/stripe/file_test.rb +19 -5
- data/test/stripe/instrumentation_test.rb +74 -0
- data/test/stripe/invoice_item_test.rb +18 -7
- data/test/stripe/invoice_line_item_test.rb +1 -1
- data/test/stripe/invoice_test.rb +77 -9
- data/test/stripe/issuing/authorization_test.rb +33 -11
- data/test/stripe/issuing/card_test.rb +27 -6
- data/test/stripe/issuing/cardholder_test.rb +1 -1
- data/test/stripe/issuing/dispute_test.rb +23 -14
- data/test/stripe/issuing/transaction_test.rb +1 -1
- data/test/stripe/list_object_test.rb +70 -24
- data/test/stripe/login_link_test.rb +2 -2
- data/test/stripe/mandate_test.rb +14 -0
- data/test/stripe/multipart_encoder_test.rb +130 -0
- data/test/stripe/oauth_test.rb +17 -1
- data/test/stripe/order_return_test.rb +1 -1
- data/test/stripe/order_test.rb +28 -3
- data/test/stripe/payment_intent_test.rb +31 -4
- data/test/stripe/payment_method_test.rb +84 -0
- data/test/stripe/payout_test.rb +23 -1
- data/test/stripe/person_test.rb +1 -1
- data/test/stripe/plan_test.rb +26 -20
- data/test/stripe/price_test.rb +48 -0
- data/test/stripe/product_test.rb +17 -8
- data/test/stripe/promotion_code_test.rb +42 -0
- data/test/stripe/radar/early_fraud_warning_test.rb +22 -0
- data/test/stripe/radar/value_list_item_test.rb +16 -6
- data/test/stripe/radar/value_list_test.rb +16 -6
- data/test/stripe/recipient_test.rb +18 -5
- data/test/stripe/refund_test.rb +1 -1
- data/test/stripe/reporting/report_run_test.rb +1 -1
- data/test/stripe/reporting/report_type_test.rb +1 -1
- data/test/stripe/reversal_test.rb +1 -1
- data/test/stripe/review_test.rb +1 -1
- data/test/stripe/setup_attempt_test.rb +16 -0
- data/test/stripe/setup_intent_test.rb +84 -0
- data/test/stripe/sigma/scheduled_query_run_test.rb +1 -1
- data/test/stripe/sku_test.rb +16 -6
- data/test/stripe/source_test.rb +52 -19
- data/test/stripe/stripe_client_test.rb +546 -78
- data/test/stripe/stripe_configuration_test.rb +131 -0
- data/test/stripe/stripe_object_test.rb +16 -41
- data/test/stripe/stripe_response_test.rb +71 -25
- data/test/stripe/subscription_item_test.rb +38 -7
- data/test/stripe/subscription_schedule_test.rb +19 -1
- data/test/stripe/subscription_test.rb +29 -9
- data/test/stripe/tax_id_test.rb +31 -0
- data/test/stripe/tax_rate_test.rb +43 -0
- data/test/stripe/terminal/connection_token_test.rb +1 -1
- data/test/stripe/terminal/location_test.rb +18 -1
- data/test/stripe/terminal/reader_test.rb +18 -1
- data/test/stripe/three_d_secure_test.rb +1 -1
- data/test/stripe/topup_test.rb +9 -1
- data/test/stripe/transfer_test.rb +46 -1
- data/test/stripe/usage_record_summary_test.rb +15 -5
- data/test/stripe/util_test.rb +1 -1
- data/test/stripe/webhook_endpoint_test.rb +18 -1
- data/test/stripe/webhook_test.rb +48 -9
- data/test/stripe_mock.rb +4 -3
- data/test/stripe_test.rb +102 -33
- data/test/test_helper.rb +16 -12
- metadata +141 -129
- data/lib/stripe/alipay_account.rb +0 -27
- data/lib/stripe/application_fee.rb +0 -23
- data/lib/stripe/application_fee_refund.rb +0 -22
- data/lib/stripe/bank_account.rb +0 -32
- data/lib/stripe/charge.rb +0 -84
- data/lib/stripe/checkout/session.rb +0 -11
- data/lib/stripe/customer.rb +0 -90
- data/lib/stripe/dispute.rb +0 -19
- data/lib/stripe/invoice.rb +0 -48
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/issuing/authorization.rb +0 -22
- data/lib/stripe/issuing/card.rb +0 -18
- data/lib/stripe/issuing/dispute.rb +0 -13
- data/lib/stripe/login_link.rb +0 -11
- data/lib/stripe/order.rb +0 -31
- data/lib/stripe/payment_intent.rb +0 -26
- data/lib/stripe/payout.rb +0 -20
- data/lib/stripe/reversal.rb +0 -22
- data/lib/stripe/review.rb +0 -14
- data/lib/stripe/source.rb +0 -38
- data/lib/stripe/subscription.rb +0 -25
- data/lib/stripe/subscription_item.rb +0 -17
- data/lib/stripe/subscription_schedule.rb +0 -32
- data/lib/stripe/subscription_schedule_revision.rb +0 -25
- data/lib/stripe/terminal/connection_token.rb +0 -11
- data/lib/stripe/topup.rb +0 -16
- data/lib/stripe/transfer.rb +0 -23
- data/lib/stripe/usage_record.rb +0 -14
- data/test/api_stub_helpers.rb +0 -1
- data/test/stripe/account_external_accounts_operations_test.rb +0 -69
- data/test/stripe/account_login_links_operations_test.rb +0 -21
- data/test/stripe/account_persons_operations_test.rb +0 -70
- data/test/stripe/application_fee_refunds_operations_test.rb +0 -56
- data/test/stripe/customer_sources_operations_test.rb +0 -64
- data/test/stripe/file_upload_test.rb +0 -76
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/source_transaction_test.rb +0 -19
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_revisions_operations_test.rb +0 -35
- data/test/stripe/transfer_reversals_operations_test.rb +0 -57
- data/test/stripe/usage_record_test.rb +0 -28
data/lib/stripe/order.rb
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Order < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
extend Stripe::APIOperations::Create
|
7
|
-
include Stripe::APIOperations::Save
|
8
|
-
|
9
|
-
OBJECT_NAME = "order".freeze
|
10
|
-
|
11
|
-
def pay(params, opts = {})
|
12
|
-
resp, opts = request(:post, pay_url, params, opts)
|
13
|
-
initialize_from(resp.data, opts)
|
14
|
-
end
|
15
|
-
|
16
|
-
def return_order(params, opts = {})
|
17
|
-
resp, opts = request(:post, returns_url, params, opts)
|
18
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
19
|
-
end
|
20
|
-
|
21
|
-
private
|
22
|
-
|
23
|
-
def pay_url
|
24
|
-
resource_url + "/pay"
|
25
|
-
end
|
26
|
-
|
27
|
-
def returns_url
|
28
|
-
resource_url + "/returns"
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
@@ -1,26 +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
|
-
def cancel(params = {}, opts = {})
|
12
|
-
resp, opts = request(:post, resource_url + "/cancel", params, opts)
|
13
|
-
initialize_from(resp.data, opts)
|
14
|
-
end
|
15
|
-
|
16
|
-
def capture(params = {}, opts = {})
|
17
|
-
resp, opts = request(:post, resource_url + "/capture", params, opts)
|
18
|
-
initialize_from(resp.data, opts)
|
19
|
-
end
|
20
|
-
|
21
|
-
def confirm(params = {}, opts = {})
|
22
|
-
resp, opts = request(:post, resource_url + "/confirm", params, opts)
|
23
|
-
initialize_from(resp.data, opts)
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
data/lib/stripe/payout.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Payout < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
extend Stripe::APIOperations::Create
|
7
|
-
include Stripe::APIOperations::Save
|
8
|
-
|
9
|
-
OBJECT_NAME = "payout".freeze
|
10
|
-
|
11
|
-
def cancel
|
12
|
-
resp, api_key = request(:post, cancel_url)
|
13
|
-
initialize_from(resp.data, api_key)
|
14
|
-
end
|
15
|
-
|
16
|
-
def cancel_url
|
17
|
-
resource_url + "/cancel"
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
data/lib/stripe/reversal.rb
DELETED
@@ -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
|
data/lib/stripe/review.rb
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Review < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
|
7
|
-
OBJECT_NAME = "review".freeze
|
8
|
-
|
9
|
-
def approve(params = {}, opts = {})
|
10
|
-
resp, opts = request(:post, resource_url + "/approve", params, opts)
|
11
|
-
initialize_from(resp.data, opts)
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
data/lib/stripe/source.rb
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Source < APIResource
|
5
|
-
extend Stripe::APIOperations::Create
|
6
|
-
include Stripe::APIOperations::Save
|
7
|
-
|
8
|
-
OBJECT_NAME = "source".freeze
|
9
|
-
|
10
|
-
def detach(params = {}, opts = {})
|
11
|
-
if !respond_to?(:customer) || customer.nil? || customer.empty?
|
12
|
-
raise NotImplementedError,
|
13
|
-
"This source object does not appear to be currently attached " \
|
14
|
-
"to a customer object."
|
15
|
-
end
|
16
|
-
|
17
|
-
url = "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
|
18
|
-
resp, opts = request(:delete, url, params, Util.normalize_opts(opts))
|
19
|
-
initialize_from(resp.data, opts)
|
20
|
-
end
|
21
|
-
|
22
|
-
def delete(params = {}, opts = {})
|
23
|
-
detach(params, opts)
|
24
|
-
end
|
25
|
-
extend Gem::Deprecate
|
26
|
-
deprecate :delete, "#detach", 2017, 10
|
27
|
-
|
28
|
-
def source_transactions(params = {}, opts = {})
|
29
|
-
resp, opts = request(:get, resource_url + "/source_transactions", params, Util.normalize_opts(opts))
|
30
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
31
|
-
end
|
32
|
-
|
33
|
-
def verify(params = {}, opts = {})
|
34
|
-
resp, opts = request(:post, resource_url + "/verify", params, Util.normalize_opts(opts))
|
35
|
-
initialize_from(resp.data, opts)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
data/lib/stripe/subscription.rb
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Subscription < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
extend Stripe::APIOperations::Create
|
7
|
-
include Stripe::APIOperations::Save
|
8
|
-
include Stripe::APIOperations::Delete
|
9
|
-
|
10
|
-
OBJECT_NAME = "subscription".freeze
|
11
|
-
|
12
|
-
save_nested_resource :source
|
13
|
-
|
14
|
-
def delete_discount
|
15
|
-
_, opts = request(:delete, discount_url)
|
16
|
-
initialize_from({ discount: nil }, opts, true)
|
17
|
-
end
|
18
|
-
|
19
|
-
private
|
20
|
-
|
21
|
-
def discount_url
|
22
|
-
resource_url + "/discount"
|
23
|
-
end
|
24
|
-
end
|
25
|
-
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, Util.normalize_opts(opts))
|
14
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
@@ -1,32 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class SubscriptionSchedule < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
extend Stripe::APIOperations::Create
|
7
|
-
include Stripe::APIOperations::Save
|
8
|
-
extend Stripe::APIOperations::NestedResource
|
9
|
-
|
10
|
-
OBJECT_NAME = "subscription_schedule".freeze
|
11
|
-
|
12
|
-
nested_resource_class_methods :revision,
|
13
|
-
operations: %i[retrieve list]
|
14
|
-
|
15
|
-
def cancel(params = {}, opts = {})
|
16
|
-
url = resource_url + "/cancel"
|
17
|
-
resp, opts = request(:post, url, params, opts)
|
18
|
-
initialize_from(resp.data, opts)
|
19
|
-
end
|
20
|
-
|
21
|
-
def release(params = {}, opts = {})
|
22
|
-
url = resource_url + "/release"
|
23
|
-
resp, opts = request(:post, url, params, opts)
|
24
|
-
initialize_from(resp.data, opts)
|
25
|
-
end
|
26
|
-
|
27
|
-
def revisions(params = {}, opts = {})
|
28
|
-
resp, opts = request(:get, resource_url + "/revisions", params, Util.normalize_opts(opts))
|
29
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
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/topup.rb
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Topup < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
extend Stripe::APIOperations::Create
|
7
|
-
include Stripe::APIOperations::Save
|
8
|
-
|
9
|
-
OBJECT_NAME = "topup".freeze
|
10
|
-
|
11
|
-
def cancel
|
12
|
-
resp, api_key = request(:post, resource_url + "/cancel")
|
13
|
-
initialize_from(resp.data, api_key)
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
data/lib/stripe/transfer.rb
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Transfer < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
extend Stripe::APIOperations::Create
|
7
|
-
include Stripe::APIOperations::Save
|
8
|
-
extend Stripe::APIOperations::NestedResource
|
9
|
-
|
10
|
-
OBJECT_NAME = "transfer".freeze
|
11
|
-
|
12
|
-
nested_resource_class_methods :reversal, operations: %i[create retrieve update list]
|
13
|
-
|
14
|
-
def cancel
|
15
|
-
resp, api_key = request(:post, cancel_url)
|
16
|
-
initialize_from(resp.data, api_key)
|
17
|
-
end
|
18
|
-
|
19
|
-
def cancel_url
|
20
|
-
resource_url + "/cancel"
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
data/lib/stripe/usage_record.rb
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class UsageRecord < APIResource
|
5
|
-
def self.create(params = {}, opts = {})
|
6
|
-
raise(ArgumentError, "Params must have a subscription_item key") unless params.key?(:subscription_item)
|
7
|
-
req_params = params.clone.delete_if { |key, _value| key == :subscription_item }
|
8
|
-
resp, opts = request(:post, "/v1/subscription_items/#{params[:subscription_item]}/usage_records", req_params, opts)
|
9
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
10
|
-
end
|
11
|
-
|
12
|
-
OBJECT_NAME = "usage_record".freeze
|
13
|
-
end
|
14
|
-
end
|
data/test/api_stub_helpers.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
@@ -1,69 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class AccountExternalAccountsOperationsTest < Test::Unit::TestCase
|
7
|
-
setup do
|
8
|
-
@account_id = "acct_123"
|
9
|
-
@external_account_id = "ba_123"
|
10
|
-
end
|
11
|
-
|
12
|
-
context "#create_external_account" do
|
13
|
-
should "create an external account" do
|
14
|
-
external_account = Stripe::Account.create_external_account(
|
15
|
-
@account_id,
|
16
|
-
external_account: "btok_123"
|
17
|
-
)
|
18
|
-
assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts"
|
19
|
-
assert external_account.is_a?(Stripe::BankAccount)
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
context "#retrieve_external_account" do
|
24
|
-
should "retrieve an external account" do
|
25
|
-
external_account = Stripe::Account.retrieve_external_account(
|
26
|
-
@account_id,
|
27
|
-
@external_account_id
|
28
|
-
)
|
29
|
-
assert_requested :get, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts/#{@external_account_id}"
|
30
|
-
assert external_account.is_a?(Stripe::BankAccount)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
context "#update_external_account" do
|
35
|
-
should "update an external account" do
|
36
|
-
external_account = Stripe::Account.update_external_account(
|
37
|
-
@account_id,
|
38
|
-
@external_account_id,
|
39
|
-
metadata: { foo: "bar" }
|
40
|
-
)
|
41
|
-
assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts/#{@external_account_id}"
|
42
|
-
assert external_account.is_a?(Stripe::BankAccount)
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
context "#delete_external_account" do
|
47
|
-
should "delete an external_account" do
|
48
|
-
external_account = Stripe::Account.delete_external_account(
|
49
|
-
@account_id,
|
50
|
-
@external_account_id
|
51
|
-
)
|
52
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts/#{@external_account_id}"
|
53
|
-
assert external_account.deleted
|
54
|
-
assert_equal @external_account_id, external_account.id
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
context "#list_external_accounts" do
|
59
|
-
should "list the account's external accounts" do
|
60
|
-
external_accounts = Stripe::Account.list_external_accounts(
|
61
|
-
@account_id
|
62
|
-
)
|
63
|
-
assert_requested :get, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts"
|
64
|
-
assert external_accounts.is_a?(Stripe::ListObject)
|
65
|
-
assert external_accounts.data.is_a?(Array)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class AccountLoginLinksOperationsTest < Test::Unit::TestCase
|
7
|
-
setup do
|
8
|
-
@account_id = "acct_123"
|
9
|
-
end
|
10
|
-
|
11
|
-
context "#create_login_link" do
|
12
|
-
should "create a login link" do
|
13
|
-
login_link = Stripe::Account.create_login_link(
|
14
|
-
@account_id
|
15
|
-
)
|
16
|
-
assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/login_links"
|
17
|
-
assert login_link.is_a?(Stripe::LoginLink)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,70 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class AccountPersonsOperationsTest < Test::Unit::TestCase
|
7
|
-
setup do
|
8
|
-
@account_id = "acct_123"
|
9
|
-
@person_id = "person_123"
|
10
|
-
end
|
11
|
-
|
12
|
-
context "#create_person" do
|
13
|
-
should "create a person" do
|
14
|
-
person = Stripe::Account.create_person(
|
15
|
-
@account_id,
|
16
|
-
first_name: "John",
|
17
|
-
last_name: "Doe"
|
18
|
-
)
|
19
|
-
assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons"
|
20
|
-
assert person.is_a?(Stripe::Person)
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
context "#retrieve_person" do
|
25
|
-
should "retrieve a person" do
|
26
|
-
person = Stripe::Account.retrieve_person(
|
27
|
-
@account_id,
|
28
|
-
@person_id
|
29
|
-
)
|
30
|
-
assert_requested :get, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons/#{@person_id}"
|
31
|
-
assert person.is_a?(Stripe::Person)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
context "#update_person" do
|
36
|
-
should "update a person" do
|
37
|
-
person = Stripe::Account.update_person(
|
38
|
-
@account_id,
|
39
|
-
@person_id,
|
40
|
-
first_name: "John"
|
41
|
-
)
|
42
|
-
assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons/#{@person_id}"
|
43
|
-
assert person.is_a?(Stripe::Person)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
context "#delete_person" do
|
48
|
-
should "delete an person" do
|
49
|
-
person = Stripe::Account.delete_person(
|
50
|
-
@account_id,
|
51
|
-
@person_id
|
52
|
-
)
|
53
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons/#{@person_id}"
|
54
|
-
assert person.deleted
|
55
|
-
assert_equal @person_id, person.id
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
context "#list_persons" do
|
60
|
-
should "list the account's external accounts" do
|
61
|
-
persons = Stripe::Account.list_persons(
|
62
|
-
@account_id
|
63
|
-
)
|
64
|
-
assert_requested :get, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons"
|
65
|
-
assert persons.is_a?(Stripe::ListObject)
|
66
|
-
assert persons.data.is_a?(Array)
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|