stripe 4.10.0 → 5.55.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +316 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -14
- data/Makefile +7 -0
- data/README.md +186 -62
- data/Rakefile +8 -7
- data/VERSION +1 -1
- 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 +81 -9
- data/lib/stripe/api_operations/save.rb +8 -7
- data/lib/stripe/api_operations/search.rb +19 -0
- data/lib/stripe/api_resource.rb +45 -3
- data/lib/stripe/api_resource_test_helpers.rb +47 -0
- data/lib/stripe/connection_manager.rb +200 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +31 -10
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +41 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +8 -6
- data/lib/stripe/object_types.rb +119 -0
- data/lib/stripe/{account.rb → resources/account.rb} +48 -30
- 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 +31 -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/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
- 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/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/resources/capability.rb +34 -0
- data/lib/stripe/{card.rb → resources/card.rb} +13 -4
- data/lib/stripe/resources/cash_balance.rb +22 -0
- data/lib/stripe/resources/charge.rb +32 -0
- data/lib/stripe/resources/checkout/session.rb +27 -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 +8 -0
- data/lib/stripe/resources/customer.rb +74 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/resources/discount.rb +8 -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/resources/file.rb +36 -0
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +3 -2
- data/lib/stripe/resources/financial_connections/account.rb +31 -0
- data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
- data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
- data/lib/stripe/resources/financial_connections/session.rb +12 -0
- data/lib/stripe/resources/funding_instructions.rb +16 -0
- data/lib/stripe/resources/identity/verification_report.rb +12 -0
- data/lib/stripe/resources/identity/verification_session.rb +35 -0
- data/lib/stripe/resources/invoice.rb +83 -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} +2 -1
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/resources/issuing/card_details.rb +10 -0
- 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 +8 -0
- data/lib/stripe/resources/login_link.rb +15 -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 +82 -0
- data/lib/stripe/resources/payment_link.rb +23 -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} +9 -3
- data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
- data/lib/stripe/resources/price.rb +21 -0
- data/lib/stripe/resources/product.rb +22 -0
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -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/resources/refund.rb +42 -0
- 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 +30 -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 +43 -0
- data/lib/stripe/{product.rb → resources/shipping_rate.rb} +4 -4
- 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} +2 -1
- data/lib/stripe/resources/subscription.rb +35 -0
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_code.rb +10 -0
- data/lib/stripe/resources/tax_id.rb +27 -0
- data/lib/stripe/{refund.rb → resources/tax_rate.rb} +3 -2
- data/lib/stripe/{terminal/reader.rb → resources/terminal/configuration.rb} +3 -2
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/{terminal → resources/terminal}/location.rb +3 -2
- data/lib/stripe/resources/terminal/reader.rb +75 -0
- data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
- 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 +8 -0
- data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +2 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +3 -2
- data/lib/stripe/resources.rb +100 -0
- data/lib/stripe/search_result_object.rb +86 -0
- data/lib/stripe/singleton_api_resource.rb +3 -1
- data/lib/stripe/stripe_client.rb +661 -266
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +80 -61
- data/lib/stripe/stripe_response.rb +87 -27
- data/lib/stripe/util.rb +128 -117
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +43 -10
- data/lib/stripe.rb +46 -197
- data/stripe.gemspec +24 -8
- metadata +123 -283
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -8
- data/.rubocop.yml +0 -32
- data/.rubocop_todo.yml +0 -50
- data/.travis.yml +0 -42
- 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/bitcoin_transaction.rb +0 -15
- 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/file.rb +0 -37
- 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/card_details.rb +0 -9
- 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/payment_method.rb +0 -23
- 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/openapi/README.md +0 -9
- data/test/stripe/account_external_accounts_operations_test.rb +0 -69
- data/test/stripe/account_link_test.rb +0 -18
- data/test/stripe/account_login_links_operations_test.rb +0 -21
- data/test/stripe/account_persons_operations_test.rb +0 -70
- data/test/stripe/account_test.rb +0 -256
- data/test/stripe/alipay_account_test.rb +0 -37
- data/test/stripe/api_operations_test.rb +0 -81
- data/test/stripe/api_resource_test.rb +0 -526
- data/test/stripe/apple_pay_domain_test.rb +0 -33
- data/test/stripe/application_fee_refund_test.rb +0 -37
- data/test/stripe/application_fee_refunds_operations_test.rb +0 -56
- data/test/stripe/application_fee_test.rb +0 -14
- data/test/stripe/balance_test.rb +0 -13
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/charge_test.rb +0 -59
- data/test/stripe/checkout/session_test.rb +0 -41
- data/test/stripe/country_spec_test.rb +0 -20
- data/test/stripe/coupon_test.rb +0 -51
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_sources_operations_test.rb +0 -64
- data/test/stripe/customer_test.rb +0 -115
- data/test/stripe/dispute_test.rb +0 -42
- data/test/stripe/ephemeral_key_test.rb +0 -86
- data/test/stripe/errors_test.rb +0 -20
- data/test/stripe/exchange_rate_test.rb +0 -20
- data/test/stripe/file_link_test.rb +0 -41
- data/test/stripe/file_test.rb +0 -73
- data/test/stripe/file_upload_test.rb +0 -76
- data/test/stripe/invoice_item_test.rb +0 -55
- data/test/stripe/invoice_line_item_test.rb +0 -8
- data/test/stripe/invoice_test.rb +0 -161
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/issuing/authorization_test.rb +0 -50
- data/test/stripe/issuing/card_test.rb +0 -53
- data/test/stripe/issuing/cardholder_test.rb +0 -53
- data/test/stripe/issuing/dispute_test.rb +0 -45
- data/test/stripe/issuing/transaction_test.rb +0 -48
- data/test/stripe/list_object_test.rb +0 -156
- data/test/stripe/login_link_test.rb +0 -37
- data/test/stripe/oauth_test.rb +0 -88
- data/test/stripe/order_return_test.rb +0 -21
- data/test/stripe/order_test.rb +0 -57
- data/test/stripe/payment_intent_test.rb +0 -80
- data/test/stripe/payment_method_test.rb +0 -66
- data/test/stripe/payout_test.rb +0 -50
- data/test/stripe/person_test.rb +0 -46
- data/test/stripe/plan_test.rb +0 -92
- data/test/stripe/product_test.rb +0 -49
- data/test/stripe/radar/value_list_item_test.rb +0 -38
- data/test/stripe/radar/value_list_test.rb +0 -51
- data/test/stripe/recipient_test.rb +0 -49
- data/test/stripe/refund_test.rb +0 -39
- data/test/stripe/reporting/report_run_test.rb +0 -33
- data/test/stripe/reporting/report_type_test.rb +0 -22
- data/test/stripe/reversal_test.rb +0 -43
- data/test/stripe/review_test.rb +0 -27
- data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
- data/test/stripe/sku_test.rb +0 -50
- data/test/stripe/source_test.rb +0 -86
- data/test/stripe/source_transaction_test.rb +0 -19
- data/test/stripe/stripe_client_test.rb +0 -823
- data/test/stripe/stripe_object_test.rb +0 -525
- data/test/stripe/stripe_response_test.rb +0 -49
- data/test/stripe/subscription_item_test.rb +0 -53
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_revisions_operations_test.rb +0 -35
- data/test/stripe/subscription_schedule_test.rb +0 -64
- data/test/stripe/subscription_test.rb +0 -60
- data/test/stripe/terminal/connection_token_test.rb +0 -16
- data/test/stripe/terminal/location_test.rb +0 -58
- data/test/stripe/terminal/reader_test.rb +0 -52
- data/test/stripe/three_d_secure_test.rb +0 -23
- data/test/stripe/topup_test.rb +0 -54
- data/test/stripe/transfer_reversals_operations_test.rb +0 -57
- data/test/stripe/transfer_test.rb +0 -43
- data/test/stripe/usage_record_summary_test.rb +0 -19
- data/test/stripe/usage_record_test.rb +0 -28
- data/test/stripe/util_test.rb +0 -402
- data/test/stripe/webhook_endpoint_test.rb +0 -42
- data/test/stripe/webhook_test.rb +0 -96
- data/test/stripe_mock.rb +0 -77
- data/test/stripe_test.rb +0 -63
- data/test/test_data.rb +0 -61
- data/test/test_helper.rb +0 -73
@@ -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
|
data/lib/stripe/bank_account.rb
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class BankAccount < APIResource
|
5
|
-
include Stripe::APIOperations::Save
|
6
|
-
include Stripe::APIOperations::Delete
|
7
|
-
extend Stripe::APIOperations::List
|
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
|
@@ -1,15 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class BitcoinTransaction < APIResource
|
5
|
-
# Directly retrieving BitcoinTransactions is deprecated. Please use the
|
6
|
-
# Sources API instead: https://stripe.com/docs/sources/bitcoin
|
7
|
-
extend Stripe::APIOperations::List
|
8
|
-
|
9
|
-
OBJECT_NAME = "bitcoin_transaction".freeze
|
10
|
-
|
11
|
-
def self.resource_url
|
12
|
-
"/v1/bitcoin/transactions"
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
data/lib/stripe/charge.rb
DELETED
@@ -1,84 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Charge < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
extend Stripe::APIOperations::Create
|
7
|
-
include Stripe::APIOperations::Save
|
8
|
-
|
9
|
-
OBJECT_NAME = "charge".freeze
|
10
|
-
|
11
|
-
def refund(params = {}, opts = {})
|
12
|
-
# Old versions of charge objects included a `refunds` field that was just
|
13
|
-
# a vanilla array instead of a Stripe list object.
|
14
|
-
#
|
15
|
-
# Where possible, we'd still like to use the new refund endpoint (thus
|
16
|
-
# `self.refunds.create`), but detect the old API version by looking for
|
17
|
-
# an `Array` and fall back to the old refund URL if necessary so as to
|
18
|
-
# maintain internal compatibility.
|
19
|
-
if refunds.is_a?(Array)
|
20
|
-
resp, opts = request(:post, refund_url, params, opts)
|
21
|
-
initialize_from(resp.data, opts)
|
22
|
-
else
|
23
|
-
refunds.create(params, opts)
|
24
|
-
|
25
|
-
# now that a refund has been created, we expect the state of this object
|
26
|
-
# to change as well (i.e. `refunded` will now be `true`) so refresh it
|
27
|
-
# from the server
|
28
|
-
refresh
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
def capture(params = {}, opts = {})
|
33
|
-
resp, opts = request(:post, capture_url, params, opts)
|
34
|
-
initialize_from(resp.data, opts)
|
35
|
-
end
|
36
|
-
|
37
|
-
def update_dispute(params = {}, opts = {})
|
38
|
-
resp, opts = request(:post, dispute_url, params, opts)
|
39
|
-
initialize_from({ dispute: resp.data }, opts, true)
|
40
|
-
dispute
|
41
|
-
end
|
42
|
-
|
43
|
-
def close_dispute(params = {}, opts = {})
|
44
|
-
resp, opts = request(:post, close_dispute_url, params, opts)
|
45
|
-
initialize_from(resp.data, opts)
|
46
|
-
end
|
47
|
-
|
48
|
-
def mark_as_fraudulent
|
49
|
-
params = {
|
50
|
-
fraud_details: { user_report: "fraudulent" },
|
51
|
-
}
|
52
|
-
resp, opts = request(:post, resource_url, params)
|
53
|
-
initialize_from(resp.data, opts)
|
54
|
-
end
|
55
|
-
|
56
|
-
def mark_as_safe
|
57
|
-
params = {
|
58
|
-
fraud_details: { user_report: "safe" },
|
59
|
-
}
|
60
|
-
resp, opts = request(:post, resource_url, params)
|
61
|
-
initialize_from(resp.data, opts)
|
62
|
-
end
|
63
|
-
|
64
|
-
private
|
65
|
-
|
66
|
-
def capture_url
|
67
|
-
resource_url + "/capture"
|
68
|
-
end
|
69
|
-
|
70
|
-
def dispute_url
|
71
|
-
resource_url + "/dispute"
|
72
|
-
end
|
73
|
-
|
74
|
-
def close_dispute_url
|
75
|
-
resource_url + "/dispute/close"
|
76
|
-
end
|
77
|
-
|
78
|
-
# Note that this is actually the *old* refund URL and its use is no longer
|
79
|
-
# preferred.
|
80
|
-
def refund_url
|
81
|
-
resource_url + "/refund"
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
data/lib/stripe/customer.rb
DELETED
@@ -1,90 +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
|
-
save_nested_resource :source
|
14
|
-
nested_resource_class_methods :source,
|
15
|
-
operations: %i[create retrieve update delete list]
|
16
|
-
|
17
|
-
# The API request for deleting a card or bank account and for detaching a
|
18
|
-
# source object are the same.
|
19
|
-
class << self
|
20
|
-
alias detach_source delete_source
|
21
|
-
end
|
22
|
-
|
23
|
-
def add_invoice_item(params, opts = {})
|
24
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
25
|
-
InvoiceItem.create(params.merge(customer: id), opts)
|
26
|
-
end
|
27
|
-
|
28
|
-
def invoices(params = {}, opts = {})
|
29
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
30
|
-
Invoice.all(params.merge(customer: id), opts)
|
31
|
-
end
|
32
|
-
|
33
|
-
def invoice_items(params = {}, opts = {})
|
34
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
35
|
-
InvoiceItem.all(params.merge(customer: id), opts)
|
36
|
-
end
|
37
|
-
|
38
|
-
def upcoming_invoice(params = {}, opts = {})
|
39
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
40
|
-
Invoice.upcoming(params.merge(customer: id), opts)
|
41
|
-
end
|
42
|
-
|
43
|
-
def charges(params = {}, opts = {})
|
44
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
45
|
-
Charge.all(params.merge(customer: id), opts)
|
46
|
-
end
|
47
|
-
|
48
|
-
def create_upcoming_invoice(params = {}, opts = {})
|
49
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
50
|
-
Invoice.create(params.merge(customer: id), opts)
|
51
|
-
end
|
52
|
-
|
53
|
-
def cancel_subscription(params = {}, opts = {})
|
54
|
-
resp, opts = request(:delete, subscription_url, params, opts)
|
55
|
-
initialize_from({ subscription: resp.data }, opts, true)
|
56
|
-
subscription
|
57
|
-
end
|
58
|
-
|
59
|
-
def update_subscription(params = {}, opts = {})
|
60
|
-
resp, opts = request(:post, subscription_url, params, opts)
|
61
|
-
initialize_from({ subscription: resp.data }, opts, true)
|
62
|
-
subscription
|
63
|
-
end
|
64
|
-
|
65
|
-
def create_subscription(params = {}, opts = {})
|
66
|
-
resp, opts = request(:post, subscriptions_url, params, opts)
|
67
|
-
initialize_from({ subscription: resp.data }, opts, true)
|
68
|
-
subscription
|
69
|
-
end
|
70
|
-
|
71
|
-
def delete_discount
|
72
|
-
_, opts = request(:delete, discount_url)
|
73
|
-
initialize_from({ discount: nil }, opts, true)
|
74
|
-
end
|
75
|
-
|
76
|
-
private
|
77
|
-
|
78
|
-
def discount_url
|
79
|
-
resource_url + "/discount"
|
80
|
-
end
|
81
|
-
|
82
|
-
def subscription_url
|
83
|
-
resource_url + "/subscription"
|
84
|
-
end
|
85
|
-
|
86
|
-
def subscriptions_url
|
87
|
-
resource_url + "/subscriptions"
|
88
|
-
end
|
89
|
-
end
|
90
|
-
end
|
data/lib/stripe/dispute.rb
DELETED
@@ -1,19 +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
|
-
def close(params = {}, opts = {})
|
11
|
-
resp, opts = request(:post, close_url, params, opts)
|
12
|
-
initialize_from(resp.data, opts)
|
13
|
-
end
|
14
|
-
|
15
|
-
def close_url
|
16
|
-
resource_url + "/close"
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
data/lib/stripe/file.rb
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class File < APIResource
|
5
|
-
extend Stripe::APIOperations::Create
|
6
|
-
extend Stripe::APIOperations::List
|
7
|
-
|
8
|
-
# This resource can have two different object names. In latter API
|
9
|
-
# versions, only `file` is used, but since stripe-ruby may be used with
|
10
|
-
# any API version, we need to support deserializing the older
|
11
|
-
# `file_upload` object into the same class.
|
12
|
-
OBJECT_NAME = "file".freeze
|
13
|
-
OBJECT_NAME_ALT = "file_upload".freeze
|
14
|
-
|
15
|
-
def self.resource_url
|
16
|
-
"/v1/files"
|
17
|
-
end
|
18
|
-
|
19
|
-
def self.create(params = {}, opts = {})
|
20
|
-
# rest-client would accept a vanilla `File` for upload, but Faraday does
|
21
|
-
# not. Support the old API by wrapping a `File`-like object with an
|
22
|
-
# `UploadIO` object if we're given one.
|
23
|
-
if params[:file] && params[:file].respond_to?(:path) && params[:file].respond_to?(:read)
|
24
|
-
params[:file] = Faraday::UploadIO.new(params[:file], nil)
|
25
|
-
end
|
26
|
-
|
27
|
-
opts = {
|
28
|
-
api_base: Stripe.uploads_base,
|
29
|
-
content_type: "multipart/form-data",
|
30
|
-
}.merge(Util.normalize_opts(opts))
|
31
|
-
super
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
# For backwards compatibility, the `File` class is aliased to `FileUpload`.
|
36
|
-
FileUpload = File
|
37
|
-
end
|
data/lib/stripe/invoice.rb
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class Invoice < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
include Stripe::APIOperations::Save
|
7
|
-
include Stripe::APIOperations::Delete
|
8
|
-
extend Stripe::APIOperations::Create
|
9
|
-
|
10
|
-
OBJECT_NAME = "invoice".freeze
|
11
|
-
|
12
|
-
def finalize_invoice(params = {}, opts = {})
|
13
|
-
url = resource_url + "/finalize"
|
14
|
-
resp, opts = request(:post, url, params, opts)
|
15
|
-
initialize_from(resp.data, opts)
|
16
|
-
end
|
17
|
-
|
18
|
-
def mark_uncollectible(params = {}, opts = {})
|
19
|
-
url = resource_url + "/mark_uncollectible"
|
20
|
-
resp, opts = request(:post, url, params, opts)
|
21
|
-
initialize_from(resp.data, opts)
|
22
|
-
end
|
23
|
-
|
24
|
-
def pay(params = {}, opts = {})
|
25
|
-
url = resource_url + "/pay"
|
26
|
-
resp, opts = request(:post, url, params, opts)
|
27
|
-
initialize_from(resp.data, opts)
|
28
|
-
end
|
29
|
-
|
30
|
-
def send_invoice(params = {}, opts = {})
|
31
|
-
url = resource_url + "/send"
|
32
|
-
resp, opts = request(:post, url, params, opts)
|
33
|
-
initialize_from(resp.data, opts)
|
34
|
-
end
|
35
|
-
|
36
|
-
def self.upcoming(params, opts = {})
|
37
|
-
url = resource_url + "/upcoming"
|
38
|
-
resp, opts = request(:get, url, params, opts)
|
39
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
40
|
-
end
|
41
|
-
|
42
|
-
def void_invoice(params = {}, opts = {})
|
43
|
-
url = resource_url + "/void"
|
44
|
-
resp, opts = request(:post, url, params, opts)
|
45
|
-
initialize_from(resp.data, opts)
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
module Issuing
|
5
|
-
class Authorization < Stripe::APIResource
|
6
|
-
extend Stripe::APIOperations::List
|
7
|
-
include Stripe::APIOperations::Save
|
8
|
-
|
9
|
-
OBJECT_NAME = "issuing.authorization".freeze
|
10
|
-
|
11
|
-
def approve(params = {}, opts = {})
|
12
|
-
resp, opts = request(:post, resource_url + "/approve", params, opts)
|
13
|
-
initialize_from(resp.data, opts)
|
14
|
-
end
|
15
|
-
|
16
|
-
def decline(params = {}, opts = {})
|
17
|
-
resp, opts = request(:post, resource_url + "/decline", params, opts)
|
18
|
-
initialize_from(resp.data, opts)
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
data/lib/stripe/issuing/card.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
module Issuing
|
5
|
-
class Card < Stripe::APIResource
|
6
|
-
extend Stripe::APIOperations::Create
|
7
|
-
extend Stripe::APIOperations::List
|
8
|
-
include Stripe::APIOperations::Save
|
9
|
-
|
10
|
-
OBJECT_NAME = "issuing.card".freeze
|
11
|
-
|
12
|
-
def details(params = {}, opts = {})
|
13
|
-
resp, opts = request(:get, resource_url + "/details", params, opts)
|
14
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
data/lib/stripe/login_link.rb
DELETED
@@ -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,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
|
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class PaymentMethod < APIResource
|
5
|
-
extend Stripe::APIOperations::Create
|
6
|
-
include Stripe::APIOperations::Save
|
7
|
-
extend Stripe::APIOperations::List
|
8
|
-
|
9
|
-
OBJECT_NAME = "payment_method".freeze
|
10
|
-
|
11
|
-
def attach(params = {}, opts = {})
|
12
|
-
url = resource_url + "/attach"
|
13
|
-
resp, opts = request(:post, url, params, opts)
|
14
|
-
initialize_from(resp.data, opts)
|
15
|
-
end
|
16
|
-
|
17
|
-
def detach(params = {}, opts = {})
|
18
|
-
url = resource_url + "/detach"
|
19
|
-
resp, opts = request(:post, url, params, opts)
|
20
|
-
initialize_from(resp.data, opts)
|
21
|
-
end
|
22
|
-
end
|
23
|
-
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
|