stripe 3.3.1 → 5.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +962 -0
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +24 -22
- data/History.txt +1 -689
- data/README.md +202 -55
- data/Rakefile +18 -12
- data/VERSION +1 -1
- data/bin/stripe-console +5 -3
- data/lib/stripe/api_operations/create.rb +4 -2
- data/lib/stripe/api_operations/delete.rb +31 -3
- data/lib/stripe/api_operations/list.rb +4 -13
- data/lib/stripe/api_operations/nested_resource.rb +73 -0
- data/lib/stripe/api_operations/request.rb +84 -17
- data/lib/stripe/api_operations/save.rb +25 -13
- data/lib/stripe/api_resource.rb +70 -11
- data/lib/stripe/connection_manager.rb +179 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +47 -19
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +54 -22
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +29 -20
- data/lib/stripe/object_types.rb +107 -0
- data/lib/stripe/{account.rb → resources/account.rb} +70 -36
- data/lib/stripe/resources/account_link.rb +10 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +5 -2
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +31 -0
- data/lib/stripe/resources/balance.rb +8 -0
- data/lib/stripe/resources/balance_transaction.rb +10 -0
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +7 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/resources/capability.rb +34 -0
- data/lib/stripe/resources/card.rb +38 -0
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/resources/country_spec.rb +10 -0
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +5 -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 +41 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/resources/discount.rb +7 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/resources/ephemeral_key.rb +20 -0
- data/lib/stripe/resources/event.rb +10 -0
- data/lib/stripe/resources/exchange_rate.rb +10 -0
- data/lib/stripe/resources/file.rb +36 -0
- data/lib/stripe/resources/file_link.rb +12 -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 +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +5 -2
- data/lib/stripe/resources/invoice_line_item.rb +8 -0
- 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 +9 -0
- data/lib/stripe/resources/issuing/cardholder.rb +14 -0
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/resources/issuing/transaction.rb +13 -0
- 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/resources/order_return.rb +10 -0
- 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/resources/person.rb +32 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +4 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +6 -3
- 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/resources/radar/value_list.rb +15 -0
- data/lib/stripe/resources/radar/value_list_item.rb +14 -0
- data/lib/stripe/resources/recipient.rb +14 -0
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/{refund.rb → resources/refund.rb} +4 -1
- data/lib/stripe/resources/reporting/report_run.rb +13 -0
- data/lib/stripe/resources/reporting/report_type.rb +13 -0
- 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 +33 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +6 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/resources/source_transaction.rb +7 -0
- 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_code.rb +10 -0
- data/lib/stripe/resources/tax_id.rb +27 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/resources/terminal/location.rb +15 -0
- data/lib/stripe/resources/terminal/reader.rb +15 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +4 -1
- data/lib/stripe/resources/token.rb +10 -0
- 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/resources/usage_record_summary.rb +8 -0
- data/lib/stripe/{recipient.rb → resources/webhook_endpoint.rb} +6 -7
- data/lib/stripe/resources.rb +90 -0
- data/lib/stripe/singleton_api_resource.rb +10 -4
- data/lib/stripe/stripe_client.rb +798 -346
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +271 -126
- data/lib/stripe/stripe_response.rb +89 -27
- data/lib/stripe/util.rb +134 -194
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +57 -18
- data/lib/stripe.rb +74 -186
- data/stripe.gemspec +35 -16
- metadata +110 -165
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -5
- data/.travis.yml +0 -38
- 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/balance.rb +0 -5
- data/lib/stripe/balance_transaction.rb +0 -11
- 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/country_spec.rb +0 -11
- 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/event.rb +0 -7
- data/lib/stripe/file_upload.rb +0 -33
- data/lib/stripe/invoice.rb +0 -29
- data/lib/stripe/invoice_line_item.rb +0 -5
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -29
- data/lib/stripe/order_return.rb +0 -11
- 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/token.rb +0 -7
- data/lib/stripe/transfer.rb +0 -18
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/account_test.rb +0 -202
- data/test/stripe/alipay_account_test.rb +0 -17
- data/test/stripe/api_operations_test.rb +0 -31
- data/test/stripe/api_resource_test.rb +0 -558
- data/test/stripe/apple_pay_domain_test.rb +0 -31
- data/test/stripe/application_fee_refund_test.rb +0 -35
- data/test/stripe/application_fee_test.rb +0 -12
- data/test/stripe/balance_test.rb +0 -11
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/bitcoin_receiver_test.rb +0 -67
- data/test/stripe/bitcoin_transaction_test.rb +0 -19
- data/test/stripe/charge_test.rb +0 -57
- data/test/stripe/country_spec_test.rb +0 -18
- data/test/stripe/coupon_test.rb +0 -42
- data/test/stripe/customer_card_test.rb +0 -46
- data/test/stripe/customer_test.rb +0 -114
- data/test/stripe/dispute_test.rb +0 -40
- data/test/stripe/ephemeral_key_test.rb +0 -84
- data/test/stripe/errors_test.rb +0 -18
- data/test/stripe/file_upload_test.rb +0 -66
- data/test/stripe/invoice_item_test.rb +0 -53
- data/test/stripe/invoice_line_item_test.rb +0 -6
- data/test/stripe/invoice_test.rb +0 -110
- data/test/stripe/list_object_test.rb +0 -170
- data/test/stripe/login_link_test.rb +0 -35
- data/test/stripe/oauth_test.rb +0 -85
- data/test/stripe/order_return_test.rb +0 -19
- data/test/stripe/order_test.rb +0 -57
- data/test/stripe/payout_test.rb +0 -48
- data/test/stripe/plan_test.rb +0 -50
- data/test/stripe/product_test.rb +0 -45
- data/test/stripe/recipient_card_test.rb +0 -44
- data/test/stripe/recipient_test.rb +0 -48
- data/test/stripe/refund_test.rb +0 -37
- data/test/stripe/reversal_test.rb +0 -41
- data/test/stripe/sku_test.rb +0 -48
- data/test/stripe/source_test.rb +0 -68
- data/test/stripe/stripe_client_test.rb +0 -750
- data/test/stripe/stripe_object_test.rb +0 -398
- data/test/stripe/stripe_response_test.rb +0 -46
- data/test/stripe/subscription_item_test.rb +0 -52
- data/test/stripe/subscription_test.rb +0 -58
- data/test/stripe/three_d_secure_test.rb +0 -21
- data/test/stripe/transfer_test.rb +0 -41
- data/test/stripe/util_test.rb +0 -414
- data/test/stripe/webhook_test.rb +0 -92
- data/test/stripe_test.rb +0 -59
- data/test/test_data.rb +0 -59
- data/test/test_helper.rb +0 -56
data/lib/stripe/webhook.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Stripe
|
2
4
|
module Webhook
|
3
5
|
DEFAULT_TOLERANCE = 300
|
@@ -6,7 +8,8 @@ module Stripe
|
|
6
8
|
#
|
7
9
|
# This may raise JSON::ParserError if the payload is not valid JSON, or
|
8
10
|
# SignatureVerificationError if the signature verification fails.
|
9
|
-
def self.construct_event(payload, sig_header, secret,
|
11
|
+
def self.construct_event(payload, sig_header, secret,
|
12
|
+
tolerance: DEFAULT_TOLERANCE)
|
10
13
|
Signature.verify_header(payload, sig_header, secret, tolerance: tolerance)
|
11
14
|
|
12
15
|
# It's a good idea to parse the payload only after verifying it. We use
|
@@ -19,20 +22,47 @@ module Stripe
|
|
19
22
|
end
|
20
23
|
|
21
24
|
module Signature
|
22
|
-
EXPECTED_SCHEME =
|
25
|
+
EXPECTED_SCHEME = "v1"
|
26
|
+
|
27
|
+
# Computes a webhook signature given a time (probably the current time),
|
28
|
+
# a payload, and a signing secret.
|
29
|
+
def self.compute_signature(timestamp, payload, secret)
|
30
|
+
raise ArgumentError, "timestamp should be an instance of Time" \
|
31
|
+
unless timestamp.is_a?(Time)
|
32
|
+
raise ArgumentError, "payload should be a string" \
|
33
|
+
unless payload.is_a?(String)
|
34
|
+
raise ArgumentError, "secret should be a string" \
|
35
|
+
unless secret.is_a?(String)
|
23
36
|
|
24
|
-
|
25
|
-
OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new(
|
37
|
+
timestamped_payload = "#{timestamp.to_i}.#{payload}"
|
38
|
+
OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new("sha256"), secret,
|
39
|
+
timestamped_payload)
|
40
|
+
end
|
41
|
+
|
42
|
+
# Generates a value that would be added to a `Stripe-Signature` for a
|
43
|
+
# given webhook payload.
|
44
|
+
#
|
45
|
+
# Note that this isn't needed to verify webhooks in any way, and is
|
46
|
+
# mainly here for use in test cases (those that are both within this
|
47
|
+
# project and without).
|
48
|
+
def self.generate_header(timestamp, signature, scheme: EXPECTED_SCHEME)
|
49
|
+
raise ArgumentError, "timestamp should be an instance of Time" \
|
50
|
+
unless timestamp.is_a?(Time)
|
51
|
+
raise ArgumentError, "signature should be a string" \
|
52
|
+
unless signature.is_a?(String)
|
53
|
+
raise ArgumentError, "scheme should be a string" \
|
54
|
+
unless scheme.is_a?(String)
|
55
|
+
|
56
|
+
"t=#{timestamp.to_i},#{scheme}=#{signature}"
|
26
57
|
end
|
27
|
-
private_class_method :compute_signature
|
28
58
|
|
29
59
|
# Extracts the timestamp and the signature(s) with the desired scheme
|
30
60
|
# from the header
|
31
61
|
def self.get_timestamp_and_signatures(header, scheme)
|
32
|
-
list_items = header.split(/,\s*/).map { |i| i.split(
|
33
|
-
timestamp = Integer(list_items.select { |i| i[0] ==
|
62
|
+
list_items = header.split(/,\s*/).map { |i| i.split("=", 2) }
|
63
|
+
timestamp = Integer(list_items.select { |i| i[0] == "t" }[0][1])
|
34
64
|
signatures = list_items.select { |i| i[0] == scheme }.map { |i| i[1] }
|
35
|
-
[timestamp, signatures]
|
65
|
+
[Time.at(timestamp), signatures]
|
36
66
|
end
|
37
67
|
private_class_method :get_timestamp_and_signatures
|
38
68
|
|
@@ -48,31 +78,40 @@ module Stripe
|
|
48
78
|
# Returns true otherwise
|
49
79
|
def self.verify_header(payload, header, secret, tolerance: nil)
|
50
80
|
begin
|
51
|
-
timestamp, signatures =
|
52
|
-
|
81
|
+
timestamp, signatures =
|
82
|
+
get_timestamp_and_signatures(header, EXPECTED_SCHEME)
|
83
|
+
|
84
|
+
# TODO: Try to knock over this blanket rescue as it can unintentionally
|
85
|
+
# swallow many valid errors. Instead, try to validate an incoming
|
86
|
+
# header one piece at a time, and error with a known exception class if
|
87
|
+
# any part is found to be invalid. Rescue that class here.
|
88
|
+
rescue StandardError
|
53
89
|
raise SignatureVerificationError.new(
|
54
90
|
"Unable to extract timestamp and signatures from header",
|
55
|
-
header, http_body: payload
|
91
|
+
header, http_body: payload
|
92
|
+
)
|
56
93
|
end
|
57
94
|
|
58
95
|
if signatures.empty?
|
59
96
|
raise SignatureVerificationError.new(
|
60
97
|
"No signatures found with expected scheme #{EXPECTED_SCHEME}",
|
61
|
-
header, http_body: payload
|
98
|
+
header, http_body: payload
|
99
|
+
)
|
62
100
|
end
|
63
101
|
|
64
|
-
|
65
|
-
|
66
|
-
unless signatures.any? {|s| Util.secure_compare(expected_sig, s)}
|
102
|
+
expected_sig = compute_signature(timestamp, payload, secret)
|
103
|
+
unless signatures.any? { |s| Util.secure_compare(expected_sig, s) }
|
67
104
|
raise SignatureVerificationError.new(
|
68
105
|
"No signatures found matching the expected signature for payload",
|
69
|
-
header, http_body: payload
|
106
|
+
header, http_body: payload
|
107
|
+
)
|
70
108
|
end
|
71
109
|
|
72
|
-
if tolerance && timestamp < Time.now
|
110
|
+
if tolerance && timestamp < Time.now - tolerance
|
73
111
|
raise SignatureVerificationError.new(
|
74
112
|
"Timestamp outside the tolerance zone (#{Time.at(timestamp)})",
|
75
|
-
header, http_body: payload
|
113
|
+
header, http_body: payload
|
114
|
+
)
|
76
115
|
end
|
77
116
|
|
78
117
|
true
|
data/lib/stripe.rb
CHANGED
@@ -1,108 +1,92 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Stripe Ruby bindings
|
2
4
|
# API spec at https://stripe.com/docs/api
|
3
|
-
require
|
4
|
-
require
|
5
|
-
require
|
6
|
-
require
|
7
|
-
require
|
8
|
-
require
|
9
|
-
|
10
|
-
require
|
11
|
-
require
|
5
|
+
require "cgi"
|
6
|
+
require "json"
|
7
|
+
require "logger"
|
8
|
+
require "net/http"
|
9
|
+
require "openssl"
|
10
|
+
require "rbconfig"
|
11
|
+
require "securerandom"
|
12
|
+
require "set"
|
13
|
+
require "socket"
|
14
|
+
require "uri"
|
15
|
+
require "forwardable"
|
12
16
|
|
13
17
|
# Version
|
14
|
-
require
|
18
|
+
require "stripe/version"
|
15
19
|
|
16
20
|
# API operations
|
17
|
-
require
|
18
|
-
require
|
19
|
-
require
|
20
|
-
require
|
21
|
-
require
|
21
|
+
require "stripe/api_operations/create"
|
22
|
+
require "stripe/api_operations/delete"
|
23
|
+
require "stripe/api_operations/list"
|
24
|
+
require "stripe/api_operations/nested_resource"
|
25
|
+
require "stripe/api_operations/request"
|
26
|
+
require "stripe/api_operations/save"
|
22
27
|
|
23
28
|
# API resource support classes
|
24
|
-
require
|
25
|
-
require
|
26
|
-
require
|
27
|
-
require
|
28
|
-
require
|
29
|
-
require
|
30
|
-
require
|
31
|
-
require
|
32
|
-
require
|
29
|
+
require "stripe/errors"
|
30
|
+
require "stripe/object_types"
|
31
|
+
require "stripe/util"
|
32
|
+
require "stripe/connection_manager"
|
33
|
+
require "stripe/multipart_encoder"
|
34
|
+
require "stripe/stripe_client"
|
35
|
+
require "stripe/stripe_object"
|
36
|
+
require "stripe/stripe_response"
|
37
|
+
require "stripe/list_object"
|
38
|
+
require "stripe/error_object"
|
39
|
+
require "stripe/api_resource"
|
40
|
+
require "stripe/singleton_api_resource"
|
41
|
+
require "stripe/webhook"
|
42
|
+
require "stripe/stripe_configuration"
|
33
43
|
|
34
44
|
# Named API resources
|
35
|
-
require
|
36
|
-
require 'stripe/alipay_account'
|
37
|
-
require 'stripe/apple_pay_domain'
|
38
|
-
require 'stripe/application_fee'
|
39
|
-
require 'stripe/application_fee_refund'
|
40
|
-
require 'stripe/balance'
|
41
|
-
require 'stripe/balance_transaction'
|
42
|
-
require 'stripe/bank_account'
|
43
|
-
require 'stripe/bitcoin_receiver'
|
44
|
-
require 'stripe/bitcoin_transaction'
|
45
|
-
require 'stripe/card'
|
46
|
-
require 'stripe/charge'
|
47
|
-
require 'stripe/country_spec'
|
48
|
-
require 'stripe/coupon'
|
49
|
-
require 'stripe/customer'
|
50
|
-
require 'stripe/dispute'
|
51
|
-
require 'stripe/ephemeral_key'
|
52
|
-
require 'stripe/event'
|
53
|
-
require 'stripe/file_upload'
|
54
|
-
require 'stripe/invoice'
|
55
|
-
require 'stripe/invoice_item'
|
56
|
-
require 'stripe/invoice_line_item'
|
57
|
-
require 'stripe/login_link'
|
58
|
-
require 'stripe/order'
|
59
|
-
require 'stripe/order_return'
|
60
|
-
require 'stripe/payout'
|
61
|
-
require 'stripe/plan'
|
62
|
-
require 'stripe/product'
|
63
|
-
require 'stripe/recipient'
|
64
|
-
require 'stripe/recipient_transfer'
|
65
|
-
require 'stripe/refund'
|
66
|
-
require 'stripe/reversal'
|
67
|
-
require 'stripe/sku'
|
68
|
-
require 'stripe/source'
|
69
|
-
require 'stripe/subscription'
|
70
|
-
require 'stripe/subscription_item'
|
71
|
-
require 'stripe/three_d_secure'
|
72
|
-
require 'stripe/token'
|
73
|
-
require 'stripe/transfer'
|
45
|
+
require "stripe/resources"
|
74
46
|
|
75
47
|
# OAuth
|
76
|
-
require
|
48
|
+
require "stripe/oauth"
|
77
49
|
|
78
50
|
module Stripe
|
79
|
-
DEFAULT_CA_BUNDLE_PATH =
|
80
|
-
|
81
|
-
@app_info = nil
|
82
|
-
|
83
|
-
@api_base = 'https://api.stripe.com'
|
84
|
-
@connect_base = 'https://connect.stripe.com'
|
85
|
-
@uploads_base = 'https://uploads.stripe.com'
|
86
|
-
|
87
|
-
@log_level = nil
|
88
|
-
@logger = nil
|
51
|
+
DEFAULT_CA_BUNDLE_PATH = __dir__ + "/data/ca-certificates.crt"
|
89
52
|
|
90
|
-
|
91
|
-
|
92
|
-
|
53
|
+
# map to the same values as the standard library's logger
|
54
|
+
LEVEL_DEBUG = Logger::DEBUG
|
55
|
+
LEVEL_ERROR = Logger::ERROR
|
56
|
+
LEVEL_INFO = Logger::INFO
|
93
57
|
|
94
|
-
@
|
95
|
-
@ca_store = nil
|
96
|
-
@verify_ssl_certs = true
|
58
|
+
@app_info = nil
|
97
59
|
|
98
|
-
@
|
99
|
-
@read_timeout = 80
|
60
|
+
@config = Stripe::StripeConfiguration.setup
|
100
61
|
|
101
62
|
class << self
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
63
|
+
extend Forwardable
|
64
|
+
|
65
|
+
attr_reader :config
|
66
|
+
|
67
|
+
# User configurable options
|
68
|
+
def_delegators :@config, :api_key, :api_key=
|
69
|
+
def_delegators :@config, :api_version, :api_version=
|
70
|
+
def_delegators :@config, :stripe_account, :stripe_account=
|
71
|
+
def_delegators :@config, :api_base, :api_base=
|
72
|
+
def_delegators :@config, :uploads_base, :uploads_base=
|
73
|
+
def_delegators :@config, :connect_base, :connect_base=
|
74
|
+
def_delegators :@config, :open_timeout, :open_timeout=
|
75
|
+
def_delegators :@config, :read_timeout, :read_timeout=
|
76
|
+
def_delegators :@config, :write_timeout, :write_timeout=
|
77
|
+
def_delegators :@config, :proxy, :proxy=
|
78
|
+
def_delegators :@config, :verify_ssl_certs, :verify_ssl_certs=
|
79
|
+
def_delegators :@config, :ca_bundle_path, :ca_bundle_path=
|
80
|
+
def_delegators :@config, :log_level, :log_level=
|
81
|
+
def_delegators :@config, :logger, :logger=
|
82
|
+
def_delegators :@config, :max_network_retries, :max_network_retries=
|
83
|
+
def_delegators :@config, :enable_telemetry=, :enable_telemetry?
|
84
|
+
def_delegators :@config, :client_id=, :client_id
|
85
|
+
|
86
|
+
# Internal configurations
|
87
|
+
def_delegators :@config, :max_network_retry_delay
|
88
|
+
def_delegators :@config, :initial_network_retry_delay
|
89
|
+
def_delegators :@config, :ca_store
|
106
90
|
end
|
107
91
|
|
108
92
|
# Gets the application for a plugin that's identified some. See
|
@@ -115,115 +99,19 @@ module Stripe
|
|
115
99
|
@app_info = info
|
116
100
|
end
|
117
101
|
|
118
|
-
# The location of a file containing a bundle of CA certificates. By default
|
119
|
-
# the library will use an included bundle that can successfully validate
|
120
|
-
# Stripe certificates.
|
121
|
-
def self.ca_bundle_path
|
122
|
-
@ca_bundle_path
|
123
|
-
end
|
124
|
-
|
125
|
-
def self.ca_bundle_path=(path)
|
126
|
-
@ca_bundle_path = path
|
127
|
-
|
128
|
-
# empty this field so a new store is initialized
|
129
|
-
@ca_store = nil
|
130
|
-
end
|
131
|
-
|
132
|
-
# A certificate store initialized from the the bundle in #ca_bundle_path and
|
133
|
-
# which is used to validate TLS on every request.
|
134
|
-
#
|
135
|
-
# This was added to the give the gem "pseudo thread safety" in that it seems
|
136
|
-
# when initiating many parallel requests marshaling the certificate store is
|
137
|
-
# the most likely point of failure (see issue #382). Any program attempting
|
138
|
-
# to leverage this pseudo safety should make a call to this method (i.e.
|
139
|
-
# `Stripe.ca_store`) in their initialization code because it marshals lazily
|
140
|
-
# and is itself not thread safe.
|
141
|
-
def self.ca_store
|
142
|
-
@ca_store ||= begin
|
143
|
-
store = OpenSSL::X509::Store.new
|
144
|
-
store.add_file(ca_bundle_path)
|
145
|
-
store
|
146
|
-
end
|
147
|
-
end
|
148
|
-
|
149
|
-
# map to the same values as the standard library's logger
|
150
|
-
LEVEL_DEBUG = Logger::DEBUG
|
151
|
-
LEVEL_ERROR = Logger::ERROR
|
152
|
-
LEVEL_INFO = Logger::INFO
|
153
|
-
|
154
|
-
# When set prompts the library to log some extra information to $stdout and
|
155
|
-
# $stderr about what it's doing. For example, it'll produce information about
|
156
|
-
# requests, responses, and errors that are received. Valid log levels are
|
157
|
-
# `debug` and `info`, with `debug` being a little more verbose in places.
|
158
|
-
#
|
159
|
-
# Use of this configuration is only useful when `.logger` is _not_ set. When
|
160
|
-
# it is, the decision what levels to print is entirely deferred to the logger.
|
161
|
-
def self.log_level
|
162
|
-
@log_level
|
163
|
-
end
|
164
|
-
|
165
|
-
def self.log_level=(val)
|
166
|
-
# Backwards compatibility for values that we briefly allowed
|
167
|
-
if val == "debug"
|
168
|
-
val = LEVEL_DEBUG
|
169
|
-
elsif val == "info"
|
170
|
-
val = LEVEL_INFO
|
171
|
-
end
|
172
|
-
|
173
|
-
if val != nil && ![LEVEL_DEBUG, LEVEL_ERROR, LEVEL_INFO].include?(val)
|
174
|
-
raise ArgumentError, "log_level should only be set to `nil`, `debug` or `info`"
|
175
|
-
end
|
176
|
-
@log_level = val
|
177
|
-
end
|
178
|
-
|
179
|
-
# Sets a logger to which logging output will be sent. The logger should
|
180
|
-
# support the same interface as the `Logger` class that's part of Ruby's
|
181
|
-
# standard library (hint, anything in `Rails.logger` will likely be
|
182
|
-
# suitable).
|
183
|
-
#
|
184
|
-
# If `.logger` is set, the value of `.log_level` is ignored. The decision on
|
185
|
-
# what levels to print is entirely deferred to the logger.
|
186
|
-
def self.logger
|
187
|
-
@logger
|
188
|
-
end
|
189
|
-
|
190
|
-
def self.logger=(val)
|
191
|
-
@logger = val
|
192
|
-
end
|
193
|
-
|
194
|
-
def self.max_network_retries
|
195
|
-
@max_network_retries
|
196
|
-
end
|
197
|
-
|
198
|
-
def self.max_network_retries=(val)
|
199
|
-
@max_network_retries = val.to_i
|
200
|
-
end
|
201
|
-
|
202
102
|
# Sets some basic information about the running application that's sent along
|
203
103
|
# with API requests. Useful for plugin authors to identify their plugin when
|
204
104
|
# communicating with Stripe.
|
205
105
|
#
|
206
|
-
# Takes a name and optional
|
207
|
-
def self.set_app_info(name,
|
106
|
+
# Takes a name and optional partner program ID, plugin URL, and version.
|
107
|
+
def self.set_app_info(name, partner_id: nil, url: nil, version: nil)
|
208
108
|
@app_info = {
|
209
109
|
name: name,
|
110
|
+
partner_id: partner_id,
|
210
111
|
url: url,
|
211
112
|
version: version,
|
212
113
|
}
|
213
114
|
end
|
214
|
-
|
215
|
-
private
|
216
|
-
|
217
|
-
# DEPRECATED. Use `Util#encode_parameters` instead.
|
218
|
-
def self.uri_encode(params)
|
219
|
-
Util.encode_parameters(params)
|
220
|
-
end
|
221
|
-
class << self
|
222
|
-
extend Gem::Deprecate
|
223
|
-
deprecate :uri_encode, "Stripe::Util#encode_parameters", 2016, 01
|
224
|
-
end
|
225
115
|
end
|
226
116
|
|
227
|
-
unless ENV["STRIPE_LOG"].nil?
|
228
|
-
Stripe.log_level = ENV["STRIPE_LOG"]
|
229
|
-
end
|
117
|
+
Stripe.log_level = ENV["STRIPE_LOG"] unless ENV["STRIPE_LOG"].nil?
|
data/stripe.gemspec
CHANGED
@@ -1,22 +1,41 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
$LOAD_PATH.unshift(::File.join(::File.dirname(__FILE__), "lib"))
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
require "stripe/version"
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "stripe"
|
7
9
|
s.version = Stripe::VERSION
|
8
|
-
s.required_ruby_version =
|
9
|
-
s.summary =
|
10
|
-
s.description =
|
11
|
-
|
12
|
-
s.
|
13
|
-
s.
|
14
|
-
s.
|
10
|
+
s.required_ruby_version = ">= 2.3.0"
|
11
|
+
s.summary = "Ruby bindings for the Stripe API"
|
12
|
+
s.description = "Stripe is the easiest way to accept payments online. " \
|
13
|
+
"See https://stripe.com for details."
|
14
|
+
s.author = "Stripe"
|
15
|
+
s.email = "support@stripe.com"
|
16
|
+
s.homepage = "https://stripe.com/docs/api/ruby"
|
17
|
+
s.license = "MIT"
|
15
18
|
|
16
|
-
s.
|
19
|
+
s.metadata = {
|
20
|
+
"bug_tracker_uri" => "https://github.com/stripe/stripe-ruby/issues",
|
21
|
+
"changelog_uri" =>
|
22
|
+
"https://github.com/stripe/stripe-ruby/blob/master/CHANGELOG.md",
|
23
|
+
"documentation_uri" => "https://stripe.com/docs/api/ruby",
|
24
|
+
"github_repo" => "ssh://github.com/stripe/stripe-ruby",
|
25
|
+
"homepage_uri" => "https://stripe.com/docs/api/ruby",
|
26
|
+
"source_code_uri" => "https://github.com/stripe/stripe-ruby",
|
27
|
+
}
|
17
28
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
29
|
+
ignored = Regexp.union(
|
30
|
+
/\A\.editorconfig/,
|
31
|
+
/\A\.git/,
|
32
|
+
/\A\.rubocop/,
|
33
|
+
/\A\.travis.yml/,
|
34
|
+
/\A\.vscode/,
|
35
|
+
/\Atest/
|
36
|
+
)
|
37
|
+
s.files = `git ls-files`.split("\n").reject { |f| ignored.match(f) }
|
38
|
+
s.executables = `git ls-files -- bin/*`.split("\n")
|
39
|
+
.map { |f| ::File.basename(f) }
|
40
|
+
s.require_paths = ["lib"]
|
22
41
|
end
|