stripe 3.2.0 → 5.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.editorconfig +10 -0
- data/.gitignore +3 -0
- data/.rubocop.yml +80 -0
- data/.rubocop_todo.yml +33 -0
- data/.travis.yml +9 -7
- data/.vscode/extensions.json +7 -0
- data/.vscode/settings.json +8 -0
- data/CHANGELOG.md +876 -0
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +21 -21
- data/History.txt +1 -678
- data/README.md +195 -53
- data/Rakefile +18 -12
- data/VERSION +1 -1
- data/bin/stripe-console +5 -3
- data/lib/stripe/api_operations/create.rb +3 -1
- data/lib/stripe/api_operations/delete.rb +26 -2
- data/lib/stripe/api_operations/list.rb +3 -12
- data/lib/stripe/api_operations/nested_resource.rb +72 -0
- data/lib/stripe/api_operations/request.rb +33 -15
- data/lib/stripe/api_operations/save.rb +18 -9
- data/lib/stripe/api_resource.rb +60 -10
- data/lib/stripe/connection_manager.rb +159 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +39 -19
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +54 -22
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +22 -14
- data/lib/stripe/object_types.rb +96 -0
- data/lib/stripe/{account.rb → resources/account.rb} +72 -34
- data/lib/stripe/resources/account_link.rb +9 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +4 -2
- data/lib/stripe/resources/application_fee.rb +13 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/{balance.rb → resources/balance.rb} +3 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +3 -5
- data/lib/stripe/resources/bank_account.rb +42 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +6 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +15 -0
- data/lib/stripe/resources/capability.rb +33 -0
- data/lib/stripe/resources/card.rb +37 -0
- data/lib/stripe/resources/charge.rb +22 -0
- data/lib/stripe/resources/checkout/session.rb +12 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +3 -5
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +4 -2
- data/lib/stripe/resources/credit_note.rb +32 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +35 -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 +21 -0
- data/lib/stripe/resources/ephemeral_key.rb +19 -0
- data/lib/stripe/{event.rb → resources/event.rb} +3 -1
- data/lib/stripe/resources/exchange_rate.rb +9 -0
- data/lib/stripe/resources/file.rb +34 -0
- data/lib/stripe/resources/file_link.rb +11 -0
- data/lib/stripe/resources/invoice.rb +73 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +4 -2
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +3 -1
- data/lib/stripe/resources/issuing/authorization.rb +33 -0
- data/lib/stripe/resources/issuing/card.rb +24 -0
- data/lib/stripe/resources/issuing/card_details.rb +9 -0
- data/lib/stripe/resources/issuing/cardholder.rb +13 -0
- data/lib/stripe/resources/issuing/dispute.rb +13 -0
- data/lib/stripe/resources/issuing/transaction.rb +12 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +7 -0
- data/lib/stripe/resources/order.rb +32 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +3 -5
- data/lib/stripe/resources/payment_intent.rb +42 -0
- data/lib/stripe/resources/payment_method.rb +32 -0
- data/lib/stripe/resources/payout.rb +22 -0
- data/lib/stripe/resources/person.rb +31 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +3 -1
- data/lib/stripe/{product.rb → resources/product.rb} +5 -3
- data/lib/stripe/resources/radar/early_fraud_warning.rb +11 -0
- data/lib/stripe/resources/radar/value_list.rb +14 -0
- data/lib/stripe/resources/radar/value_list_item.rb +13 -0
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +5 -6
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/{refund.rb → resources/refund.rb} +3 -1
- data/lib/stripe/resources/reporting/report_run.rb +12 -0
- data/lib/stripe/resources/reporting/report_type.rb +12 -0
- data/lib/stripe/resources/reversal.rb +29 -0
- data/lib/stripe/resources/review.rb +20 -0
- data/lib/stripe/resources/setup_intent.rb +32 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +15 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +5 -3
- data/lib/stripe/resources/source.rb +46 -0
- data/lib/stripe/resources/source_transaction.rb +7 -0
- data/lib/stripe/resources/subscription.rb +25 -0
- data/lib/stripe/resources/subscription_item.rb +25 -0
- data/lib/stripe/resources/subscription_schedule.rb +32 -0
- data/lib/stripe/resources/tax_id.rb +26 -0
- data/lib/stripe/resources/tax_rate.rb +11 -0
- data/lib/stripe/resources/terminal/connection_token.rb +11 -0
- data/lib/stripe/resources/terminal/location.rb +14 -0
- data/lib/stripe/resources/terminal/reader.rb +14 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +3 -1
- data/lib/stripe/{token.rb → resources/token.rb} +3 -1
- data/lib/stripe/resources/topup.rb +22 -0
- data/lib/stripe/resources/transfer.rb +26 -0
- data/lib/stripe/resources/usage_record.rb +7 -0
- data/lib/stripe/resources/usage_record_summary.rb +7 -0
- data/lib/stripe/resources/webhook_endpoint.rb +12 -0
- data/lib/stripe/resources.rb +79 -0
- data/lib/stripe/singleton_api_resource.rb +10 -4
- data/lib/stripe/stripe_client.rb +658 -337
- data/lib/stripe/stripe_object.rb +248 -126
- data/lib/stripe/stripe_response.rb +55 -21
- data/lib/stripe/util.rb +145 -187
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +27 -16
- data/lib/stripe.rb +139 -90
- data/stripe.gemspec +26 -14
- data/test/openapi/README.md +9 -0
- data/test/stripe/account_link_test.rb +18 -0
- data/test/stripe/account_test.rb +311 -101
- data/test/stripe/alipay_account_test.rb +21 -1
- data/test/stripe/api_operations_test.rb +57 -8
- data/test/stripe/api_resource_test.rb +359 -271
- data/test/stripe/apple_pay_domain_test.rb +26 -11
- data/test/stripe/application_fee_refund_test.rb +10 -8
- data/test/stripe/application_fee_test.rb +49 -3
- data/test/stripe/balance_test.rb +4 -2
- data/test/stripe/balance_transaction_test.rb +20 -0
- data/test/stripe/bank_account_test.rb +11 -11
- data/test/stripe/capability_test.rb +45 -0
- data/test/stripe/charge_test.rb +25 -18
- data/test/stripe/checkout/session_test.rb +41 -0
- data/test/stripe/connection_manager_test.rb +163 -0
- data/test/stripe/country_spec_test.rb +6 -4
- data/test/stripe/coupon_test.rb +29 -10
- 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 +13 -17
- data/test/stripe/customer_test.rb +161 -49
- data/test/stripe/dispute_test.rb +19 -8
- data/test/stripe/ephemeral_key_test.rb +23 -14
- data/test/stripe/errors_test.rb +32 -9
- data/test/stripe/exchange_rate_test.rb +20 -0
- data/test/stripe/file_link_test.rb +41 -0
- data/test/stripe/file_test.rb +87 -0
- data/test/stripe/instrumentation_test.rb +74 -0
- data/test/stripe/invoice_item_test.rb +31 -18
- data/test/stripe/invoice_line_item_test.rb +3 -1
- data/test/stripe/invoice_test.rb +158 -39
- data/test/stripe/issuing/authorization_test.rb +72 -0
- data/test/stripe/issuing/card_test.rb +62 -0
- data/test/stripe/issuing/cardholder_test.rb +53 -0
- data/test/stripe/issuing/dispute_test.rb +45 -0
- data/test/stripe/issuing/transaction_test.rb +48 -0
- data/test/stripe/list_object_test.rb +120 -88
- data/test/stripe/login_link_test.rb +16 -14
- data/test/stripe/mandate_test.rb +14 -0
- data/test/stripe/multipart_encoder_test.rb +130 -0
- data/test/stripe/oauth_test.rb +69 -50
- data/test/stripe/order_return_test.rb +7 -5
- data/test/stripe/order_test.rb +39 -14
- data/test/stripe/payment_intent_test.rb +107 -0
- data/test/stripe/payment_method_test.rb +84 -0
- data/test/stripe/payout_test.rb +18 -9
- data/test/stripe/person_test.rb +46 -0
- data/test/stripe/plan_test.rb +67 -19
- data/test/stripe/product_test.rb +28 -14
- data/test/stripe/radar/early_fraud_warning_test.rb +22 -0
- data/test/stripe/radar/value_list_item_test.rb +48 -0
- data/test/stripe/radar/value_list_test.rb +61 -0
- data/test/stripe/recipient_test.rb +27 -13
- data/test/stripe/refund_test.rb +11 -9
- data/test/stripe/reporting/report_run_test.rb +33 -0
- data/test/stripe/reporting/report_type_test.rb +22 -0
- data/test/stripe/reversal_test.rb +12 -10
- data/test/stripe/review_test.rb +27 -0
- data/test/stripe/setup_intent_test.rb +84 -0
- data/test/stripe/sigma/scheduled_query_run_test.rb +22 -0
- data/test/stripe/sku_test.rb +24 -12
- data/test/stripe/source_test.rb +70 -19
- data/test/stripe/stripe_client_test.rb +867 -326
- data/test/stripe/stripe_object_test.rb +284 -182
- data/test/stripe/stripe_response_test.rb +73 -24
- data/test/stripe/subscription_item_test.rb +47 -15
- data/test/stripe/subscription_schedule_test.rb +82 -0
- data/test/stripe/subscription_test.rb +41 -19
- 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 +16 -0
- data/test/stripe/terminal/location_test.rb +68 -0
- data/test/stripe/terminal/reader_test.rb +62 -0
- data/test/stripe/three_d_secure_test.rb +4 -2
- data/test/stripe/topup_test.rb +62 -0
- data/test/stripe/transfer_test.rb +55 -8
- data/test/stripe/usage_record_summary_test.rb +29 -0
- data/test/stripe/util_test.rb +173 -84
- data/test/stripe/webhook_endpoint_test.rb +59 -0
- data/test/stripe/webhook_test.rb +21 -17
- data/test/stripe_mock.rb +78 -0
- data/test/stripe_test.rb +6 -15
- data/test/test_data.rb +28 -26
- data/test/test_helper.rb +48 -29
- metadata +183 -70
- data/lib/stripe/alipay_account.rb +0 -22
- data/lib/stripe/application_fee.rb +0 -22
- data/lib/stripe/application_fee_refund.rb +0 -20
- data/lib/stripe/bank_account.rb +0 -30
- data/lib/stripe/bitcoin_transaction.rb +0 -11
- data/lib/stripe/card.rb +0 -27
- data/lib/stripe/charge.rb +0 -82
- data/lib/stripe/customer.rb +0 -79
- data/lib/stripe/dispute.rb +0 -17
- data/lib/stripe/ephemeral_key.rb +0 -18
- data/lib/stripe/file_upload.rb +0 -33
- data/lib/stripe/invoice.rb +0 -29
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -29
- data/lib/stripe/payout.rb +0 -18
- data/lib/stripe/recipient_transfer.rb +0 -6
- data/lib/stripe/reversal.rb +0 -20
- data/lib/stripe/source.rb +0 -23
- data/lib/stripe/subscription.rb +0 -33
- data/lib/stripe/subscription_item.rb +0 -14
- data/lib/stripe/transfer.rb +0 -18
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/bitcoin_receiver_test.rb +0 -67
- data/test/stripe/bitcoin_transaction_test.rb +0 -19
- data/test/stripe/file_upload_test.rb +0 -66
- data/test/stripe/recipient_card_test.rb +0 -44
data/lib/stripe/customer.rb
DELETED
@@ -1,79 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Customer < APIResource
|
3
|
-
extend Stripe::APIOperations::Create
|
4
|
-
include Stripe::APIOperations::Delete
|
5
|
-
include Stripe::APIOperations::Save
|
6
|
-
extend Stripe::APIOperations::List
|
7
|
-
|
8
|
-
OBJECT_NAME = 'customer'
|
9
|
-
|
10
|
-
save_nested_resource :source
|
11
|
-
|
12
|
-
def add_invoice_item(params, opts={})
|
13
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
14
|
-
InvoiceItem.create(params.merge(:customer => id), opts)
|
15
|
-
end
|
16
|
-
|
17
|
-
def invoices(params={}, opts={})
|
18
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
19
|
-
Invoice.all(params.merge(:customer => id), opts)
|
20
|
-
end
|
21
|
-
|
22
|
-
def invoice_items(params={}, opts={})
|
23
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
24
|
-
InvoiceItem.all(params.merge(:customer => id), opts)
|
25
|
-
end
|
26
|
-
|
27
|
-
def upcoming_invoice(params={}, opts={})
|
28
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
29
|
-
Invoice.upcoming(params.merge(:customer => id), opts)
|
30
|
-
end
|
31
|
-
|
32
|
-
def charges(params={}, opts={})
|
33
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
34
|
-
Charge.all(params.merge(:customer => id), opts)
|
35
|
-
end
|
36
|
-
|
37
|
-
def create_upcoming_invoice(params={}, opts={})
|
38
|
-
opts = @opts.merge(Util.normalize_opts(opts))
|
39
|
-
Invoice.create(params.merge(:customer => id), opts)
|
40
|
-
end
|
41
|
-
|
42
|
-
def cancel_subscription(params={}, opts={})
|
43
|
-
resp, opts = request(:delete, subscription_url, params, opts)
|
44
|
-
initialize_from({ :subscription => resp.data }, opts, true)
|
45
|
-
subscription
|
46
|
-
end
|
47
|
-
|
48
|
-
def update_subscription(params={}, opts={})
|
49
|
-
resp, opts = request(:post, subscription_url, params, opts)
|
50
|
-
initialize_from({ :subscription => resp.data }, opts, true)
|
51
|
-
subscription
|
52
|
-
end
|
53
|
-
|
54
|
-
def create_subscription(params={}, opts={})
|
55
|
-
resp, opts = request(:post, subscriptions_url, params, opts)
|
56
|
-
initialize_from({ :subscription => resp.data }, opts, true)
|
57
|
-
subscription
|
58
|
-
end
|
59
|
-
|
60
|
-
def delete_discount
|
61
|
-
_, opts = request(:delete, discount_url)
|
62
|
-
initialize_from({ :discount => nil }, opts, true)
|
63
|
-
end
|
64
|
-
|
65
|
-
private
|
66
|
-
|
67
|
-
def discount_url
|
68
|
-
resource_url + '/discount'
|
69
|
-
end
|
70
|
-
|
71
|
-
def subscription_url
|
72
|
-
resource_url + '/subscription'
|
73
|
-
end
|
74
|
-
|
75
|
-
def subscriptions_url
|
76
|
-
resource_url + '/subscriptions'
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
data/lib/stripe/dispute.rb
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Dispute < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
include Stripe::APIOperations::Save
|
5
|
-
|
6
|
-
OBJECT_NAME = 'dispute'
|
7
|
-
|
8
|
-
def close(params={}, opts={})
|
9
|
-
resp, opts = request(:post, close_url, params, opts)
|
10
|
-
initialize_from(resp.data, opts)
|
11
|
-
end
|
12
|
-
|
13
|
-
def close_url
|
14
|
-
resource_url + '/close'
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
data/lib/stripe/ephemeral_key.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class EphemeralKey < APIResource
|
3
|
-
extend Stripe::APIOperations::Create
|
4
|
-
include Stripe::APIOperations::Delete
|
5
|
-
|
6
|
-
OBJECT_NAME = 'ephemeral_key'
|
7
|
-
|
8
|
-
def self.resource_url
|
9
|
-
'/v1/ephemeral_keys'
|
10
|
-
end
|
11
|
-
|
12
|
-
def self.create(params={}, opts={})
|
13
|
-
opts = Util.normalize_opts(opts)
|
14
|
-
raise ArgumentError.new('stripe_version must be specified to create an ephemeral key') if !opts[:stripe_version]
|
15
|
-
super
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
data/lib/stripe/file_upload.rb
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class FileUpload < APIResource
|
3
|
-
extend Stripe::APIOperations::Create
|
4
|
-
extend Stripe::APIOperations::List
|
5
|
-
|
6
|
-
OBJECT_NAME = 'file_upload'
|
7
|
-
|
8
|
-
def self.resource_url
|
9
|
-
"/v1/files"
|
10
|
-
end
|
11
|
-
|
12
|
-
def self.request(method, url, params={}, opts={})
|
13
|
-
opts = {
|
14
|
-
:api_base => Stripe::uploads_base
|
15
|
-
}.merge(Util.normalize_opts(opts))
|
16
|
-
super
|
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` with an `UploadIO` object
|
22
|
-
# if we're given one.
|
23
|
-
if params[:file] && params[:file].is_a?(File)
|
24
|
-
params[:file] = Faraday::UploadIO.new(params[:file], nil)
|
25
|
-
end
|
26
|
-
|
27
|
-
opts = {
|
28
|
-
:content_type => 'multipart/form-data',
|
29
|
-
}.merge(Util.normalize_opts(opts))
|
30
|
-
super
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
data/lib/stripe/invoice.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Invoice < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
include Stripe::APIOperations::Save
|
5
|
-
extend Stripe::APIOperations::Create
|
6
|
-
|
7
|
-
OBJECT_NAME = 'invoice'
|
8
|
-
|
9
|
-
def self.upcoming(params, opts={})
|
10
|
-
resp, opts = request(:get, upcoming_url, params, opts)
|
11
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
12
|
-
end
|
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
|
-
private
|
20
|
-
|
21
|
-
def self.upcoming_url
|
22
|
-
resource_url + '/upcoming'
|
23
|
-
end
|
24
|
-
|
25
|
-
def pay_url
|
26
|
-
resource_url + '/pay'
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
data/lib/stripe/login_link.rb
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class LoginLink < APIResource
|
3
|
-
OBJECT_NAME = 'login_link'
|
4
|
-
|
5
|
-
def self.retrieve(id, opts=nil)
|
6
|
-
raise NotImplementedError.new("Login links do not have IDs and cannot be retrieved. They can only be created using accounts.login_links.create")
|
7
|
-
end
|
8
|
-
end
|
9
|
-
end
|
data/lib/stripe/order.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Order < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
extend Stripe::APIOperations::Create
|
5
|
-
include Stripe::APIOperations::Save
|
6
|
-
|
7
|
-
OBJECT_NAME = 'order'
|
8
|
-
|
9
|
-
def pay(params, opts={})
|
10
|
-
resp, opts = request(:post, pay_url, params, opts)
|
11
|
-
initialize_from(resp.data, opts)
|
12
|
-
end
|
13
|
-
|
14
|
-
def return_order(params, opts={})
|
15
|
-
resp, opts = request(:post, returns_url, params, opts)
|
16
|
-
Util.convert_to_stripe_object(resp.data, opts)
|
17
|
-
end
|
18
|
-
|
19
|
-
private
|
20
|
-
|
21
|
-
def pay_url
|
22
|
-
resource_url + '/pay'
|
23
|
-
end
|
24
|
-
|
25
|
-
def returns_url
|
26
|
-
resource_url + '/returns'
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
data/lib/stripe/payout.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Payout < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
extend Stripe::APIOperations::Create
|
5
|
-
include Stripe::APIOperations::Save
|
6
|
-
|
7
|
-
OBJECT_NAME = 'payout'
|
8
|
-
|
9
|
-
def cancel
|
10
|
-
resp, api_key = self.request(:post, cancel_url)
|
11
|
-
initialize_from(resp.data, api_key)
|
12
|
-
end
|
13
|
-
|
14
|
-
def cancel_url
|
15
|
-
resource_url + '/cancel'
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
data/lib/stripe/reversal.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Reversal < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
include Stripe::APIOperations::Save
|
5
|
-
|
6
|
-
OBJECT_NAME = 'transfer_reversal'
|
7
|
-
|
8
|
-
def resource_url
|
9
|
-
"#{Transfer.resource_url}/#{CGI.escape(transfer)}/reversals/#{CGI.escape(id)}"
|
10
|
-
end
|
11
|
-
|
12
|
-
def self.update(id, params=nil, opts=nil)
|
13
|
-
raise NotImplementedError.new("Reversals cannot be updated without a transfer ID. Update a reversal using `r = transfer.reversals.retrieve('reversal_id'); r.save`")
|
14
|
-
end
|
15
|
-
|
16
|
-
def self.retrieve(id, opts={})
|
17
|
-
raise NotImplementedError.new("Reversals cannot be retrieved without a transfer ID. Retrieve a reversal using transfer.reversals.retrieve('reversal_id')")
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
data/lib/stripe/source.rb
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Source < APIResource
|
3
|
-
extend Stripe::APIOperations::Create
|
4
|
-
include Stripe::APIOperations::Save
|
5
|
-
|
6
|
-
OBJECT_NAME = 'source'
|
7
|
-
|
8
|
-
def delete(params={}, opts={})
|
9
|
-
if respond_to?(:customer) && !customer.nil? && !customer.empty?
|
10
|
-
url = "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
|
11
|
-
resp, opts = request(:delete, url, params, Util.normalize_opts(opts))
|
12
|
-
initialize_from(resp.data, opts)
|
13
|
-
else
|
14
|
-
raise NotImplementedError.new("Source objects cannot be deleted, they can only be detached from customer objects. This source object does not appear to be currently attached to a customer object.")
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
def verify(params={}, opts={})
|
19
|
-
resp, opts = request(:post, resource_url + '/verify', params, Util.normalize_opts(opts))
|
20
|
-
initialize_from(resp.data, opts)
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
data/lib/stripe/subscription.rb
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Subscription < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
extend Stripe::APIOperations::Create
|
5
|
-
include Stripe::APIOperations::Save
|
6
|
-
include Stripe::APIOperations::Delete
|
7
|
-
|
8
|
-
OBJECT_NAME = 'subscription'
|
9
|
-
|
10
|
-
save_nested_resource :source
|
11
|
-
|
12
|
-
def delete_discount
|
13
|
-
_, opts = request(:delete, discount_url)
|
14
|
-
initialize_from({ :discount => nil }, opts, true)
|
15
|
-
end
|
16
|
-
|
17
|
-
def self.update(id, params={}, opts={})
|
18
|
-
params[:items] = Util.array_to_hash(params[:items]) if params[:items]
|
19
|
-
super(id, params, opts)
|
20
|
-
end
|
21
|
-
|
22
|
-
def self.create(params={}, opts={})
|
23
|
-
params[:items] = Util.array_to_hash(params[:items]) if params[:items]
|
24
|
-
super(params, opts)
|
25
|
-
end
|
26
|
-
|
27
|
-
private
|
28
|
-
|
29
|
-
def discount_url
|
30
|
-
resource_url + '/discount'
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class SubscriptionItem < APIResource
|
3
|
-
extend Stripe::APIOperations::Create
|
4
|
-
include Stripe::APIOperations::Delete
|
5
|
-
extend Stripe::APIOperations::List
|
6
|
-
include Stripe::APIOperations::Save
|
7
|
-
|
8
|
-
OBJECT_NAME = 'subscription_item'
|
9
|
-
|
10
|
-
def self.resource_url
|
11
|
-
'/v1/subscription_items'
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
data/lib/stripe/transfer.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
module Stripe
|
2
|
-
class Transfer < APIResource
|
3
|
-
extend Stripe::APIOperations::List
|
4
|
-
extend Stripe::APIOperations::Create
|
5
|
-
include Stripe::APIOperations::Save
|
6
|
-
|
7
|
-
OBJECT_NAME = 'transfer'
|
8
|
-
|
9
|
-
def cancel
|
10
|
-
resp, api_key = self.request(:post, cancel_url)
|
11
|
-
initialize_from(resp.data, api_key)
|
12
|
-
end
|
13
|
-
|
14
|
-
def cancel_url
|
15
|
-
resource_url + '/cancel'
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
data/test/api_stub_helpers.rb
DELETED
File without changes
|
@@ -1,67 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class BitcoinReceiverTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
receivers = Stripe::BitcoinReceiver.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/bitcoin/receivers"
|
8
|
-
assert receivers.data.kind_of?(Array)
|
9
|
-
assert receivers.first.kind_of?(Stripe::BitcoinReceiver)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
receiver = Stripe::BitcoinReceiver.retrieve("btcrcv_123")
|
14
|
-
assert_requested :get,
|
15
|
-
"#{Stripe.api_base}/v1/bitcoin/receivers/btcrcv_123"
|
16
|
-
assert receiver.kind_of?(Stripe::BitcoinReceiver)
|
17
|
-
end
|
18
|
-
|
19
|
-
should "be creatable" do
|
20
|
-
receiver = Stripe::BitcoinReceiver.create(amount: 100, currency: "USD")
|
21
|
-
assert_requested :post, "#{Stripe.api_base}/v1/bitcoin/receivers"
|
22
|
-
assert receiver.kind_of?(Stripe::BitcoinReceiver)
|
23
|
-
end
|
24
|
-
|
25
|
-
should "be saveable" do
|
26
|
-
receiver = Stripe::BitcoinReceiver.retrieve("btcrcv_123")
|
27
|
-
receiver.metadata['key'] = 'value'
|
28
|
-
receiver.save
|
29
|
-
assert_requested :post,
|
30
|
-
"#{Stripe.api_base}/v1/bitcoin/receivers/#{receiver.id}"
|
31
|
-
end
|
32
|
-
|
33
|
-
should "be updateable" do
|
34
|
-
receiver = Stripe::BitcoinReceiver.update("btcrcv_123", metadata: { key: 'value' })
|
35
|
-
assert_requested :post,
|
36
|
-
"#{Stripe.api_base}/v1/bitcoin/receivers/btcrcv_123"
|
37
|
-
assert receiver.kind_of?(Stripe::BitcoinReceiver)
|
38
|
-
end
|
39
|
-
|
40
|
-
should "be deletable" do
|
41
|
-
receiver = Stripe::BitcoinReceiver.retrieve("btcrcv_123")
|
42
|
-
receiver = receiver.delete
|
43
|
-
assert_requested :delete,
|
44
|
-
"#{Stripe.api_base}/v1/bitcoin/receivers/#{receiver.id}"
|
45
|
-
assert receiver.kind_of?(Stripe::BitcoinReceiver)
|
46
|
-
end
|
47
|
-
|
48
|
-
context "#resource_url" do
|
49
|
-
should "return a customer URL" do
|
50
|
-
receiver = Stripe::BitcoinReceiver.construct_from(
|
51
|
-
customer: "cus_123",
|
52
|
-
id: "btcrcv_123",
|
53
|
-
)
|
54
|
-
assert_equal "/v1/customers/cus_123/sources/btcrcv_123",
|
55
|
-
receiver.resource_url
|
56
|
-
end
|
57
|
-
|
58
|
-
should "return an absolute URL" do
|
59
|
-
receiver = Stripe::BitcoinReceiver.construct_from(
|
60
|
-
id: "btcrcv_123",
|
61
|
-
)
|
62
|
-
assert_equal "/v1/bitcoin/receivers/btcrcv_123",
|
63
|
-
receiver.resource_url
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
67
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class BitcoinTransactionTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
transactions = Stripe::BitcoinTransaction.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/bitcoin/transactions"
|
8
|
-
assert transactions.data.kind_of?(Array)
|
9
|
-
assert transactions.first.kind_of?(Stripe::BitcoinTransaction)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
transaction = Stripe::BitcoinTransaction.retrieve("btctxn_123")
|
14
|
-
assert_requested :get,
|
15
|
-
"#{Stripe.api_base}/v1/bitcoin/transactions/btctxn_123"
|
16
|
-
assert transaction.kind_of?(Stripe::BitcoinTransaction)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,66 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class FileUploadTest < Test::Unit::TestCase
|
5
|
-
# Note that these tests are written different from others because we
|
6
|
-
# don't have anything on the uploads service in our OpenAPI spec. This is
|
7
|
-
# something that should be looked into at some point. We may need to ship
|
8
|
-
# a separate spec for it though, so it's high effort with low reward for
|
9
|
-
# the time being.
|
10
|
-
FIXTURE = {
|
11
|
-
id: "file_123",
|
12
|
-
object: "file_upload",
|
13
|
-
}.freeze
|
14
|
-
|
15
|
-
should "be listable" do
|
16
|
-
stub_request(:get, "#{Stripe.uploads_base}/v1/files").
|
17
|
-
to_return(body: JSON.generate({
|
18
|
-
data: [FIXTURE],
|
19
|
-
object: 'list',
|
20
|
-
resource_url: '/v1/files'
|
21
|
-
}))
|
22
|
-
|
23
|
-
files = Stripe::FileUpload.list
|
24
|
-
assert files.data.kind_of?(Array)
|
25
|
-
assert files.data[0].kind_of?(Stripe::FileUpload)
|
26
|
-
end
|
27
|
-
|
28
|
-
should "be retrievable" do
|
29
|
-
stub_request(:get, "#{Stripe.uploads_base}/v1/files/file_123").
|
30
|
-
to_return(body: JSON.generate(FIXTURE))
|
31
|
-
|
32
|
-
file = Stripe::FileUpload.retrieve("file_123")
|
33
|
-
assert file.kind_of?(Stripe::FileUpload)
|
34
|
-
end
|
35
|
-
|
36
|
-
should "be creatable" do
|
37
|
-
stub_request(:post, "#{Stripe.uploads_base}/v1/files").
|
38
|
-
with(:headers => {
|
39
|
-
"Content-Type" => %r|\A#{Faraday::Request::Multipart.mime_type}|
|
40
|
-
}) { |request|
|
41
|
-
request.body =~ /FileUploadTest/
|
42
|
-
}.to_return(body: JSON.generate(FIXTURE))
|
43
|
-
|
44
|
-
file = Stripe::FileUpload.create(
|
45
|
-
purpose: "dispute_evidence",
|
46
|
-
file: File.new(__FILE__),
|
47
|
-
)
|
48
|
-
assert file.kind_of?(Stripe::FileUpload)
|
49
|
-
end
|
50
|
-
|
51
|
-
should "be creatable with Faraday::UploadIO" do
|
52
|
-
stub_request(:post, "#{Stripe.uploads_base}/v1/files").
|
53
|
-
with(:headers => {
|
54
|
-
"Content-Type" => %r|\A#{Faraday::Request::Multipart.mime_type}|
|
55
|
-
}) { |request|
|
56
|
-
request.body =~ /FileUploadTest/
|
57
|
-
}.to_return(body: JSON.generate(FIXTURE))
|
58
|
-
|
59
|
-
file = Stripe::FileUpload.create(
|
60
|
-
purpose: "dispute_evidence",
|
61
|
-
file: Faraday::UploadIO.new(File.new(__FILE__), nil),
|
62
|
-
)
|
63
|
-
assert file.kind_of?(Stripe::FileUpload)
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
@@ -1,44 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class RecipientCardTest < Test::Unit::TestCase
|
5
|
-
setup do
|
6
|
-
@recipient = Stripe::Recipient.retrieve("rp_123")
|
7
|
-
end
|
8
|
-
|
9
|
-
should "be listable" do
|
10
|
-
cards = @recipient.cards.list
|
11
|
-
assert cards.data.kind_of?(Array)
|
12
|
-
assert cards.data[0].kind_of?(Stripe::Card)
|
13
|
-
end
|
14
|
-
|
15
|
-
should "be creatable" do
|
16
|
-
card = @recipient.cards.create(
|
17
|
-
card: "tok_123"
|
18
|
-
)
|
19
|
-
assert_requested :post, "#{Stripe.api_base}/v1/recipients/#{@recipient.id}/cards"
|
20
|
-
assert card.kind_of?(Stripe::Card)
|
21
|
-
end
|
22
|
-
|
23
|
-
should "be deletable" do
|
24
|
-
card = Stripe::Card.construct_from({
|
25
|
-
id: "card_123",
|
26
|
-
recipient: @recipient.id
|
27
|
-
})
|
28
|
-
card = card.delete
|
29
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/recipients/#{@recipient.id}/cards/card_123"
|
30
|
-
assert card.kind_of?(Stripe::Card)
|
31
|
-
end
|
32
|
-
|
33
|
-
should "be saveable" do
|
34
|
-
card = Stripe::Card.construct_from({
|
35
|
-
id: "card_123",
|
36
|
-
metadata: {},
|
37
|
-
recipient: @recipient.id
|
38
|
-
})
|
39
|
-
card.metadata['key'] = 'value'
|
40
|
-
card.save
|
41
|
-
assert_requested :post, "#{Stripe.api_base}/v1/recipients/#{@recipient.id}/cards/card_123"
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|