stripe 2.0.3 → 5.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1036 -0
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +24 -23
  5. data/History.txt +1 -593
  6. data/Makefile +7 -0
  7. data/README.md +252 -53
  8. data/Rakefile +18 -24
  9. data/VERSION +1 -1
  10. data/bin/stripe-console +5 -3
  11. data/lib/stripe/api_operations/create.rb +4 -2
  12. data/lib/stripe/api_operations/delete.rb +31 -3
  13. data/lib/stripe/api_operations/list.rb +4 -13
  14. data/lib/stripe/api_operations/nested_resource.rb +73 -0
  15. data/lib/stripe/api_operations/request.rb +92 -10
  16. data/lib/stripe/api_operations/save.rb +25 -13
  17. data/lib/stripe/api_operations/search.rb +19 -0
  18. data/lib/stripe/api_resource.rb +55 -11
  19. data/lib/stripe/api_resource_test_helpers.rb +47 -0
  20. data/lib/stripe/connection_manager.rb +200 -0
  21. data/lib/stripe/error_object.rb +93 -0
  22. data/lib/stripe/errors.rb +98 -13
  23. data/lib/stripe/instrumentation.rb +84 -0
  24. data/lib/stripe/list_object.rb +55 -21
  25. data/lib/stripe/multipart_encoder.rb +131 -0
  26. data/lib/stripe/oauth.rb +65 -0
  27. data/lib/stripe/object_types.rb +119 -0
  28. data/lib/stripe/{account.rb → resources/account.rb} +75 -38
  29. data/lib/stripe/resources/account_link.rb +10 -0
  30. data/lib/stripe/resources/alipay_account.rb +34 -0
  31. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +6 -1
  32. data/lib/stripe/resources/application_fee.rb +14 -0
  33. data/lib/stripe/resources/application_fee_refund.rb +31 -0
  34. data/lib/stripe/resources/balance.rb +8 -0
  35. data/lib/stripe/resources/balance_transaction.rb +10 -0
  36. data/lib/stripe/resources/bank_account.rb +43 -0
  37. data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
  38. data/lib/stripe/resources/billing_portal/session.rb +12 -0
  39. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +8 -4
  40. data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
  41. data/lib/stripe/resources/capability.rb +34 -0
  42. data/lib/stripe/resources/card.rb +38 -0
  43. data/lib/stripe/resources/cash_balance.rb +22 -0
  44. data/lib/stripe/resources/charge.rb +32 -0
  45. data/lib/stripe/resources/checkout/session.rb +27 -0
  46. data/lib/stripe/resources/country_spec.rb +10 -0
  47. data/lib/stripe/{coupon.rb → resources/coupon.rb} +6 -1
  48. data/lib/stripe/resources/credit_note.rb +33 -0
  49. data/lib/stripe/resources/credit_note_line_item.rb +8 -0
  50. data/lib/stripe/resources/customer.rb +74 -0
  51. data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
  52. data/lib/stripe/resources/discount.rb +8 -0
  53. data/lib/stripe/resources/dispute.rb +22 -0
  54. data/lib/stripe/resources/ephemeral_key.rb +20 -0
  55. data/lib/stripe/resources/event.rb +10 -0
  56. data/lib/stripe/resources/exchange_rate.rb +10 -0
  57. data/lib/stripe/resources/file.rb +36 -0
  58. data/lib/stripe/resources/file_link.rb +12 -0
  59. data/lib/stripe/resources/financial_connections/account.rb +31 -0
  60. data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
  61. data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
  62. data/lib/stripe/resources/financial_connections/session.rb +12 -0
  63. data/lib/stripe/resources/funding_instructions.rb +16 -0
  64. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  65. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  66. data/lib/stripe/resources/invoice.rb +83 -0
  67. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +6 -1
  68. data/lib/stripe/resources/invoice_line_item.rb +8 -0
  69. data/lib/stripe/resources/issuing/authorization.rb +34 -0
  70. data/lib/stripe/resources/issuing/card.rb +25 -0
  71. data/lib/stripe/resources/issuing/card_details.rb +10 -0
  72. data/lib/stripe/resources/issuing/cardholder.rb +14 -0
  73. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  74. data/lib/stripe/resources/issuing/transaction.rb +13 -0
  75. data/lib/stripe/resources/line_item.rb +8 -0
  76. data/lib/stripe/resources/login_link.rb +15 -0
  77. data/lib/stripe/resources/mandate.rb +8 -0
  78. data/lib/stripe/resources/order.rb +33 -0
  79. data/lib/stripe/resources/order_return.rb +10 -0
  80. data/lib/stripe/resources/payment_intent.rb +82 -0
  81. data/lib/stripe/resources/payment_link.rb +23 -0
  82. data/lib/stripe/resources/payment_method.rb +33 -0
  83. data/lib/stripe/resources/payout.rb +33 -0
  84. data/lib/stripe/resources/person.rb +32 -0
  85. data/lib/stripe/{plan.rb → resources/plan.rb} +5 -0
  86. data/lib/stripe/resources/price.rb +21 -0
  87. data/lib/stripe/resources/product.rb +22 -0
  88. data/lib/stripe/resources/promotion_code.rb +12 -0
  89. data/lib/stripe/resources/quote.rb +105 -0
  90. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  91. data/lib/stripe/resources/radar/value_list.rb +15 -0
  92. data/lib/stripe/resources/radar/value_list_item.rb +14 -0
  93. data/lib/stripe/resources/recipient.rb +14 -0
  94. data/lib/stripe/resources/recipient_transfer.rb +7 -0
  95. data/lib/stripe/resources/refund.rb +42 -0
  96. data/lib/stripe/resources/reporting/report_run.rb +13 -0
  97. data/lib/stripe/resources/reporting/report_type.rb +13 -0
  98. data/lib/stripe/resources/reversal.rb +30 -0
  99. data/lib/stripe/resources/review.rb +21 -0
  100. data/lib/stripe/resources/setup_attempt.rb +10 -0
  101. data/lib/stripe/resources/setup_intent.rb +43 -0
  102. data/lib/stripe/resources/shipping_rate.rb +12 -0
  103. data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
  104. data/lib/stripe/{sku.rb → resources/sku.rb} +7 -2
  105. data/lib/stripe/resources/source.rb +47 -0
  106. data/lib/stripe/resources/source_transaction.rb +8 -0
  107. data/lib/stripe/resources/subscription.rb +35 -0
  108. data/lib/stripe/resources/subscription_item.rb +26 -0
  109. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  110. data/lib/stripe/resources/tax_code.rb +10 -0
  111. data/lib/stripe/resources/tax_id.rb +27 -0
  112. data/lib/stripe/{product.rb → resources/tax_rate.rb} +7 -3
  113. data/lib/stripe/resources/terminal/configuration.rb +15 -0
  114. data/lib/stripe/resources/terminal/connection_token.rb +12 -0
  115. data/lib/stripe/resources/terminal/location.rb +15 -0
  116. data/lib/stripe/resources/terminal/reader.rb +75 -0
  117. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  118. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +5 -0
  119. data/lib/stripe/resources/token.rb +10 -0
  120. data/lib/stripe/resources/topup.rb +23 -0
  121. data/lib/stripe/resources/transfer.rb +27 -0
  122. data/lib/stripe/resources/usage_record.rb +8 -0
  123. data/lib/stripe/resources/usage_record_summary.rb +8 -0
  124. data/lib/stripe/{recipient.rb → resources/webhook_endpoint.rb} +6 -5
  125. data/lib/stripe/resources.rb +100 -0
  126. data/lib/stripe/search_result_object.rb +86 -0
  127. data/lib/stripe/singleton_api_resource.rb +10 -4
  128. data/lib/stripe/stripe_client.rb +886 -223
  129. data/lib/stripe/stripe_configuration.rb +194 -0
  130. data/lib/stripe/stripe_object.rb +301 -132
  131. data/lib/stripe/stripe_response.rb +89 -27
  132. data/lib/stripe/util.rb +272 -122
  133. data/lib/stripe/version.rb +3 -1
  134. data/lib/stripe/webhook.rb +121 -0
  135. data/lib/stripe.rb +94 -116
  136. data/stripe.gemspec +35 -16
  137. metadata +127 -156
  138. data/.gitattributes +0 -4
  139. data/.github/ISSUE_TEMPLATE.md +0 -5
  140. data/.gitignore +0 -5
  141. data/.travis.yml +0 -15
  142. data/lib/stripe/alipay_account.rb +0 -20
  143. data/lib/stripe/application_fee.rb +0 -20
  144. data/lib/stripe/application_fee_refund.rb +0 -18
  145. data/lib/stripe/balance.rb +0 -4
  146. data/lib/stripe/balance_transaction.rb +0 -9
  147. data/lib/stripe/bank_account.rb +0 -28
  148. data/lib/stripe/bitcoin_transaction.rb +0 -9
  149. data/lib/stripe/card.rb +0 -25
  150. data/lib/stripe/charge.rb +0 -80
  151. data/lib/stripe/country_spec.rb +0 -9
  152. data/lib/stripe/customer.rb +0 -77
  153. data/lib/stripe/dispute.rb +0 -15
  154. data/lib/stripe/event.rb +0 -5
  155. data/lib/stripe/file_upload.rb +0 -31
  156. data/lib/stripe/invoice.rb +0 -27
  157. data/lib/stripe/order.rb +0 -27
  158. data/lib/stripe/order_return.rb +0 -9
  159. data/lib/stripe/refund.rb +0 -7
  160. data/lib/stripe/reversal.rb +0 -18
  161. data/lib/stripe/source.rb +0 -11
  162. data/lib/stripe/subscription.rb +0 -31
  163. data/lib/stripe/subscription_item.rb +0 -12
  164. data/lib/stripe/token.rb +0 -5
  165. data/lib/stripe/transfer.rb +0 -16
  166. data/openapi/fixtures.json +0 -1383
  167. data/openapi/fixtures.yaml +0 -1130
  168. data/openapi/spec.json +0 -19749
  169. data/openapi/spec.yaml +0 -15359
  170. data/test/api_fixtures.rb +0 -29
  171. data/test/api_stub_helpers.rb +0 -125
  172. data/test/stripe/account_test.rb +0 -204
  173. data/test/stripe/alipay_account_test.rb +0 -19
  174. data/test/stripe/api_operations_test.rb +0 -31
  175. data/test/stripe/api_resource_test.rb +0 -496
  176. data/test/stripe/apple_pay_domain_test.rb +0 -33
  177. data/test/stripe/application_fee_refund_test.rb +0 -38
  178. data/test/stripe/application_fee_test.rb +0 -14
  179. data/test/stripe/balance_test.rb +0 -11
  180. data/test/stripe/bank_account_test.rb +0 -41
  181. data/test/stripe/bitcoin_receiver_test.rb +0 -70
  182. data/test/stripe/bitcoin_transaction_test.rb +0 -21
  183. data/test/stripe/charge_test.rb +0 -59
  184. data/test/stripe/country_spec_test.rb +0 -20
  185. data/test/stripe/coupon_test.rb +0 -44
  186. data/test/stripe/customer_card_test.rb +0 -42
  187. data/test/stripe/customer_test.rb +0 -116
  188. data/test/stripe/dispute_test.rb +0 -42
  189. data/test/stripe/errors_test.rb +0 -18
  190. data/test/stripe/file_upload_test.rb +0 -66
  191. data/test/stripe/invoice_item_test.rb +0 -55
  192. data/test/stripe/invoice_test.rb +0 -66
  193. data/test/stripe/list_object_test.rb +0 -170
  194. data/test/stripe/order_return_test.rb +0 -21
  195. data/test/stripe/order_test.rb +0 -59
  196. data/test/stripe/plan_test.rb +0 -52
  197. data/test/stripe/product_test.rb +0 -47
  198. data/test/stripe/recipient_card_test.rb +0 -40
  199. data/test/stripe/recipient_test.rb +0 -50
  200. data/test/stripe/refund_test.rb +0 -39
  201. data/test/stripe/reversal_test.rb +0 -43
  202. data/test/stripe/sku_test.rb +0 -50
  203. data/test/stripe/source_test.rb +0 -43
  204. data/test/stripe/stripe_client_test.rb +0 -440
  205. data/test/stripe/stripe_object_test.rb +0 -361
  206. data/test/stripe/stripe_response_test.rb +0 -46
  207. data/test/stripe/subscription_item_test.rb +0 -54
  208. data/test/stripe/subscription_test.rb +0 -60
  209. data/test/stripe/three_d_secure_test.rb +0 -23
  210. data/test/stripe/transfer_test.rb +0 -50
  211. data/test/stripe/util_test.rb +0 -149
  212. data/test/stripe_test.rb +0 -41
  213. data/test/test_data.rb +0 -59
  214. data/test/test_helper.rb +0 -41
@@ -0,0 +1,121 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Stripe
4
+ module Webhook
5
+ DEFAULT_TOLERANCE = 300
6
+
7
+ # Initializes an Event object from a JSON payload.
8
+ #
9
+ # This may raise JSON::ParserError if the payload is not valid JSON, or
10
+ # SignatureVerificationError if the signature verification fails.
11
+ def self.construct_event(payload, sig_header, secret,
12
+ tolerance: DEFAULT_TOLERANCE)
13
+ Signature.verify_header(payload, sig_header, secret, tolerance: tolerance)
14
+
15
+ # It's a good idea to parse the payload only after verifying it. We use
16
+ # `symbolize_names` so it would otherwise be technically possible to
17
+ # flood a target's memory if they were on an older version of Ruby that
18
+ # doesn't GC symbols. It also decreases the likelihood that we receive a
19
+ # bad payload that fails to parse and throws an exception.
20
+ data = JSON.parse(payload, symbolize_names: true)
21
+ Event.construct_from(data)
22
+ end
23
+
24
+ module Signature
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)
36
+
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}"
57
+ end
58
+
59
+ # Extracts the timestamp and the signature(s) with the desired scheme
60
+ # from the header
61
+ def self.get_timestamp_and_signatures(header, scheme)
62
+ list_items = header.split(/,\s*/).map { |i| i.split("=", 2) }
63
+ timestamp = Integer(list_items.select { |i| i[0] == "t" }[0][1])
64
+ signatures = list_items.select { |i| i[0] == scheme }.map { |i| i[1] }
65
+ [Time.at(timestamp), signatures]
66
+ end
67
+ private_class_method :get_timestamp_and_signatures
68
+
69
+ # Verifies the signature header for a given payload.
70
+ #
71
+ # Raises a SignatureVerificationError in the following cases:
72
+ # - the header does not match the expected format
73
+ # - no signatures found with the expected scheme
74
+ # - no signatures matching the expected signature
75
+ # - a tolerance is provided and the timestamp is not within the
76
+ # tolerance
77
+ #
78
+ # Returns true otherwise
79
+ def self.verify_header(payload, header, secret, tolerance: nil)
80
+ begin
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
89
+ raise SignatureVerificationError.new(
90
+ "Unable to extract timestamp and signatures from header",
91
+ header, http_body: payload
92
+ )
93
+ end
94
+
95
+ if signatures.empty?
96
+ raise SignatureVerificationError.new(
97
+ "No signatures found with expected scheme #{EXPECTED_SCHEME}",
98
+ header, http_body: payload
99
+ )
100
+ end
101
+
102
+ expected_sig = compute_signature(timestamp, payload, secret)
103
+ unless signatures.any? { |s| Util.secure_compare(expected_sig, s) }
104
+ raise SignatureVerificationError.new(
105
+ "No signatures found matching the expected signature for payload",
106
+ header, http_body: payload
107
+ )
108
+ end
109
+
110
+ if tolerance && timestamp < Time.now - tolerance
111
+ raise SignatureVerificationError.new(
112
+ "Timestamp outside the tolerance zone (#{Time.at(timestamp)})",
113
+ header, http_body: payload
114
+ )
115
+ end
116
+
117
+ true
118
+ end
119
+ end
120
+ end
121
+ end
data/lib/stripe.rb CHANGED
@@ -1,142 +1,120 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Stripe Ruby bindings
2
4
  # API spec at https://stripe.com/docs/api
3
- require 'cgi'
4
- require 'openssl'
5
- require 'rbconfig'
6
- require 'set'
7
- require 'socket'
8
-
9
- require 'faraday'
10
- require 'json'
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"
11
16
 
12
17
  # Version
13
- require 'stripe/version'
18
+ require "stripe/version"
14
19
 
15
20
  # API operations
16
- require 'stripe/api_operations/create'
17
- require 'stripe/api_operations/save'
18
- require 'stripe/api_operations/delete'
19
- require 'stripe/api_operations/list'
20
- require 'stripe/api_operations/request'
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"
27
+ require "stripe/api_operations/search"
21
28
 
22
29
  # API resource support classes
23
- require 'stripe/errors'
24
- require 'stripe/util'
25
- require 'stripe/stripe_client'
26
- require 'stripe/stripe_object'
27
- require 'stripe/stripe_response'
28
- require 'stripe/list_object'
29
- require 'stripe/api_resource'
30
- require 'stripe/singleton_api_resource'
30
+ require "stripe/errors"
31
+ require "stripe/object_types"
32
+ require "stripe/util"
33
+ require "stripe/connection_manager"
34
+ require "stripe/multipart_encoder"
35
+ require "stripe/stripe_client"
36
+ require "stripe/stripe_object"
37
+ require "stripe/stripe_response"
38
+ require "stripe/list_object"
39
+ require "stripe/search_result_object"
40
+ require "stripe/error_object"
41
+ require "stripe/api_resource"
42
+ require "stripe/api_resource_test_helpers"
43
+ require "stripe/singleton_api_resource"
44
+ require "stripe/webhook"
45
+ require "stripe/stripe_configuration"
31
46
 
32
47
  # Named API resources
33
- require 'stripe/account'
34
- require 'stripe/alipay_account'
35
- require 'stripe/apple_pay_domain'
36
- require 'stripe/application_fee'
37
- require 'stripe/application_fee_refund'
38
- require 'stripe/balance'
39
- require 'stripe/balance_transaction'
40
- require 'stripe/bank_account'
41
- require 'stripe/bitcoin_receiver'
42
- require 'stripe/bitcoin_transaction'
43
- require 'stripe/card'
44
- require 'stripe/charge'
45
- require 'stripe/country_spec'
46
- require 'stripe/coupon'
47
- require 'stripe/customer'
48
- require 'stripe/dispute'
49
- require 'stripe/event'
50
- require 'stripe/file_upload'
51
- require 'stripe/invoice'
52
- require 'stripe/invoice_item'
53
- require 'stripe/order'
54
- require 'stripe/order_return'
55
- require 'stripe/plan'
56
- require 'stripe/product'
57
- require 'stripe/recipient'
58
- require 'stripe/refund'
59
- require 'stripe/reversal'
60
- require 'stripe/sku'
61
- require 'stripe/source'
62
- require 'stripe/subscription'
63
- require 'stripe/subscription_item'
64
- require 'stripe/three_d_secure'
65
- require 'stripe/token'
66
- require 'stripe/transfer'
48
+ require "stripe/resources"
67
49
 
68
- module Stripe
69
- DEFAULT_CA_BUNDLE_PATH = File.dirname(__FILE__) + '/data/ca-certificates.crt'
50
+ # OAuth
51
+ require "stripe/oauth"
70
52
 
71
- @api_base = 'https://api.stripe.com'
72
- @connect_base = 'https://connect.stripe.com'
73
- @uploads_base = 'https://uploads.stripe.com'
53
+ module Stripe
54
+ DEFAULT_CA_BUNDLE_PATH = __dir__ + "/data/ca-certificates.crt"
74
55
 
75
- @max_network_retries = 0
76
- @max_network_retry_delay = 2
77
- @initial_network_retry_delay = 0.5
56
+ # map to the same values as the standard library's logger
57
+ LEVEL_DEBUG = Logger::DEBUG
58
+ LEVEL_ERROR = Logger::ERROR
59
+ LEVEL_INFO = Logger::INFO
78
60
 
79
- @ca_bundle_path = DEFAULT_CA_BUNDLE_PATH
80
- @ca_store = nil
81
- @verify_ssl_certs = true
61
+ @app_info = nil
82
62
 
83
- @open_timeout = 30
84
- @read_timeout = 80
63
+ @config = Stripe::StripeConfiguration.setup
85
64
 
86
65
  class << self
87
- attr_accessor :stripe_account, :api_key, :api_base, :verify_ssl_certs, :api_version, :connect_base, :uploads_base,
88
- :open_timeout, :read_timeout
89
-
90
- attr_reader :max_network_retry_delay, :initial_network_retry_delay
66
+ extend Forwardable
67
+
68
+ attr_reader :config
69
+
70
+ # User configurable options
71
+ def_delegators :@config, :api_key, :api_key=
72
+ def_delegators :@config, :api_version, :api_version=
73
+ def_delegators :@config, :stripe_account, :stripe_account=
74
+ def_delegators :@config, :api_base, :api_base=
75
+ def_delegators :@config, :uploads_base, :uploads_base=
76
+ def_delegators :@config, :connect_base, :connect_base=
77
+ def_delegators :@config, :open_timeout, :open_timeout=
78
+ def_delegators :@config, :read_timeout, :read_timeout=
79
+ def_delegators :@config, :write_timeout, :write_timeout=
80
+ def_delegators :@config, :proxy, :proxy=
81
+ def_delegators :@config, :verify_ssl_certs, :verify_ssl_certs=
82
+ def_delegators :@config, :ca_bundle_path, :ca_bundle_path=
83
+ def_delegators :@config, :log_level, :log_level=
84
+ def_delegators :@config, :logger, :logger=
85
+ def_delegators :@config, :max_network_retries, :max_network_retries=
86
+ def_delegators :@config, :enable_telemetry=, :enable_telemetry?
87
+ def_delegators :@config, :client_id=, :client_id
88
+
89
+ # Internal configurations
90
+ def_delegators :@config, :max_network_retry_delay
91
+ def_delegators :@config, :initial_network_retry_delay
92
+ def_delegators :@config, :ca_store
91
93
  end
92
94
 
93
- # The location of a file containing a bundle of CA certificates. By default
94
- # the library will use an included bundle that can successfully validate
95
- # Stripe certificates.
96
- def self.ca_bundle_path
97
- @ca_bundle_path
95
+ # Gets the application for a plugin that's identified some. See
96
+ # #set_app_info.
97
+ def self.app_info
98
+ @app_info
98
99
  end
99
100
 
100
- def self.ca_bundle_path=(path)
101
- @ca_bundle_path = path
102
-
103
- # empty this field so a new store is initialized
104
- @ca_store = nil
101
+ def self.app_info=(info)
102
+ @app_info = info
105
103
  end
106
104
 
107
- # A certificate store initialized from the the bundle in #ca_bundle_path and
108
- # which is used to validate TLS on every request.
105
+ # Sets some basic information about the running application that's sent along
106
+ # with API requests. Useful for plugin authors to identify their plugin when
107
+ # communicating with Stripe.
109
108
  #
110
- # This was added to the give the gem "pseudo thread safety" in that it seems
111
- # when initiating many parallel requests marshaling the certificate store is
112
- # the most likely point of failure (see issue #382). Any program attempting
113
- # to leverage this pseudo safety should make a call to this method (i.e.
114
- # `Stripe.ca_store`) in their initialization code because it marshals lazily
115
- # and is itself not thread safe.
116
- def self.ca_store
117
- @ca_store ||= begin
118
- store = OpenSSL::X509::Store.new
119
- store.add_file(ca_bundle_path)
120
- store
121
- end
122
- end
123
-
124
- def self.max_network_retries
125
- @max_network_retries
126
- end
127
-
128
- def self.max_network_retries=(val)
129
- @max_network_retries = val.to_i
130
- end
131
-
132
- private
133
-
134
- # DEPRECATED. Use `Util#encode_parameters` instead.
135
- def self.uri_encode(params)
136
- Util.encode_parameters(params)
137
- end
138
- class << self
139
- extend Gem::Deprecate
140
- deprecate :uri_encode, "Stripe::Util#encode_parameters", 2016, 01
109
+ # Takes a name and optional partner program ID, plugin URL, and version.
110
+ def self.set_app_info(name, partner_id: nil, url: nil, version: nil)
111
+ @app_info = {
112
+ name: name,
113
+ partner_id: partner_id,
114
+ url: url,
115
+ version: version,
116
+ }
141
117
  end
142
118
  end
119
+
120
+ Stripe.log_level = ENV["STRIPE_LOG"] unless ENV["STRIPE_LOG"].nil?
data/stripe.gemspec CHANGED
@@ -1,22 +1,41 @@
1
- $:.unshift(File.join(File.dirname(__FILE__), 'lib'))
1
+ # frozen_string_literal: true
2
2
 
3
- require 'stripe/version'
3
+ $LOAD_PATH.unshift(::File.join(::File.dirname(__FILE__), "lib"))
4
4
 
5
- spec = Gem::Specification.new do |s|
6
- s.name = 'stripe'
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 = '>= 1.9.3'
9
- s.summary = 'Ruby bindings for the Stripe API'
10
- s.description = 'Stripe is the easiest way to accept payments online. See https://stripe.com for details.'
11
- s.author = 'Stripe'
12
- s.email = 'support@stripe.com'
13
- s.homepage = 'https://stripe.com/docs/api/ruby'
14
- s.license = 'MIT'
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?lang=ruby"
17
+ s.license = "MIT"
15
18
 
16
- s.add_dependency('faraday', '~> 0')
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?lang=ruby",
24
+ "github_repo" => "ssh://github.com/stripe/stripe-ruby",
25
+ "homepage_uri" => "https://stripe.com/docs/api?lang=ruby",
26
+ "source_code_uri" => "https://github.com/stripe/stripe-ruby",
27
+ }
17
28
 
18
- s.files = `git ls-files`.split("\n")
19
- s.test_files = `git ls-files -- test/*`.split("\n")
20
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
21
- s.require_paths = ['lib']
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