stripe 4.17.0 → 5.32.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +193 -1
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +10 -14
  5. data/README.md +167 -63
  6. data/Rakefile +8 -7
  7. data/VERSION +1 -1
  8. data/lib/stripe/api_operations/create.rb +1 -1
  9. data/lib/stripe/api_operations/delete.rb +7 -3
  10. data/lib/stripe/api_operations/list.rb +1 -12
  11. data/lib/stripe/api_operations/nested_resource.rb +36 -27
  12. data/lib/stripe/api_operations/request.rb +47 -8
  13. data/lib/stripe/api_operations/save.rb +8 -7
  14. data/lib/stripe/api_resource.rb +30 -5
  15. data/lib/stripe/connection_manager.rb +164 -0
  16. data/lib/stripe/error_object.rb +94 -0
  17. data/lib/stripe/errors.rb +31 -10
  18. data/lib/stripe/instrumentation.rb +82 -0
  19. data/lib/stripe/list_object.rb +41 -7
  20. data/lib/stripe/multipart_encoder.rb +131 -0
  21. data/lib/stripe/oauth.rb +8 -6
  22. data/lib/stripe/object_types.rb +102 -0
  23. data/lib/stripe/{account.rb → resources/account.rb} +44 -33
  24. data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
  25. data/lib/stripe/resources/alipay_account.rb +34 -0
  26. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
  27. data/lib/stripe/resources/application_fee.rb +14 -0
  28. data/lib/stripe/resources/application_fee_refund.rb +30 -0
  29. data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
  30. data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
  31. data/lib/stripe/resources/bank_account.rb +43 -0
  32. data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
  33. data/lib/stripe/{checkout → resources/billing_portal}/session.rb +3 -2
  34. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -3
  35. data/lib/stripe/{bitcoin_transaction.rb → resources/bitcoin_transaction.rb} +1 -1
  36. data/lib/stripe/{capability.rb → resources/capability.rb} +11 -4
  37. data/lib/stripe/{card.rb → resources/card.rb} +12 -3
  38. data/lib/stripe/resources/charge.rb +23 -0
  39. data/lib/stripe/resources/checkout/session.rb +16 -0
  40. data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
  41. data/lib/stripe/{coupon.rb → resources/coupon.rb} +2 -1
  42. data/lib/stripe/resources/credit_note.rb +33 -0
  43. data/lib/stripe/resources/credit_note_line_item.rb +7 -0
  44. data/lib/stripe/resources/customer.rb +41 -0
  45. data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
  46. data/lib/stripe/{discount.rb → resources/discount.rb} +1 -1
  47. data/lib/stripe/resources/dispute.rb +22 -0
  48. data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
  49. data/lib/stripe/{event.rb → resources/event.rb} +2 -1
  50. data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
  51. data/lib/stripe/{file.rb → resources/file.rb} +7 -12
  52. data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -1
  53. data/lib/stripe/resources/invoice.rb +74 -0
  54. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +2 -1
  55. data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +1 -1
  56. data/lib/stripe/{issuing → resources/issuing}/authorization.rb +14 -5
  57. data/lib/stripe/{issuing → resources/issuing}/card.rb +8 -3
  58. data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
  59. data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +2 -1
  60. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  61. data/lib/stripe/{issuing → resources/issuing}/transaction.rb +2 -1
  62. data/lib/stripe/resources/line_item.rb +7 -0
  63. data/lib/stripe/resources/login_link.rb +14 -0
  64. data/lib/stripe/resources/mandate.rb +8 -0
  65. data/lib/stripe/resources/order.rb +33 -0
  66. data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
  67. data/lib/stripe/resources/payment_intent.rb +43 -0
  68. data/lib/stripe/{payment_method.rb → resources/payment_method.rb} +14 -5
  69. data/lib/stripe/resources/payout.rb +33 -0
  70. data/lib/stripe/{person.rb → resources/person.rb} +8 -3
  71. data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
  72. data/lib/stripe/resources/price.rb +12 -0
  73. data/lib/stripe/{product.rb → resources/product.rb} +2 -1
  74. data/lib/stripe/resources/promotion_code.rb +12 -0
  75. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  76. data/lib/stripe/{radar → resources/radar}/value_list.rb +2 -1
  77. data/lib/stripe/{radar → resources/radar}/value_list_item.rb +2 -1
  78. data/lib/stripe/{recipient.rb → resources/recipient.rb} +2 -5
  79. data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
  80. data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
  81. data/lib/stripe/{reporting → resources/reporting}/report_run.rb +2 -1
  82. data/lib/stripe/{reporting → resources/reporting}/report_type.rb +2 -1
  83. data/lib/stripe/resources/reversal.rb +29 -0
  84. data/lib/stripe/{review.rb → resources/review.rb} +8 -3
  85. data/lib/stripe/resources/setup_attempt.rb +10 -0
  86. data/lib/stripe/resources/setup_intent.rb +33 -0
  87. data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +2 -1
  88. data/lib/stripe/{sku.rb → resources/sku.rb} +2 -1
  89. data/lib/stripe/{source.rb → resources/source.rb} +22 -15
  90. data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
  91. data/lib/stripe/{subscription.rb → resources/subscription.rb} +12 -13
  92. data/lib/stripe/resources/subscription_item.rb +26 -0
  93. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  94. data/lib/stripe/resources/tax_id.rb +26 -0
  95. data/lib/stripe/{tax_rate.rb → resources/tax_rate.rb} +2 -1
  96. data/lib/stripe/{terminal → resources/terminal}/connection_token.rb +2 -1
  97. data/lib/stripe/{terminal → resources/terminal}/location.rb +2 -1
  98. data/lib/stripe/{terminal → resources/terminal}/reader.rb +2 -1
  99. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
  100. data/lib/stripe/{token.rb → resources/token.rb} +2 -1
  101. data/lib/stripe/{topup.rb → resources/topup.rb} +8 -3
  102. data/lib/stripe/resources/transfer.rb +27 -0
  103. data/lib/stripe/resources/usage_record.rb +7 -0
  104. data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +1 -1
  105. data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +2 -1
  106. data/lib/stripe/resources.rb +85 -0
  107. data/lib/stripe/singleton_api_resource.rb +3 -1
  108. data/lib/stripe/stripe_client.rb +576 -254
  109. data/lib/stripe/stripe_configuration.rb +194 -0
  110. data/lib/stripe/stripe_object.rb +80 -61
  111. data/lib/stripe/stripe_response.rb +53 -21
  112. data/lib/stripe/util.rb +76 -121
  113. data/lib/stripe/version.rb +1 -1
  114. data/lib/stripe/webhook.rb +43 -10
  115. data/lib/stripe.rb +42 -203
  116. data/stripe.gemspec +23 -7
  117. metadata +107 -284
  118. data/.gitattributes +0 -4
  119. data/.github/ISSUE_TEMPLATE.md +0 -5
  120. data/.gitignore +0 -8
  121. data/.rubocop.yml +0 -32
  122. data/.rubocop_todo.yml +0 -50
  123. data/.travis.yml +0 -42
  124. data/lib/stripe/alipay_account.rb +0 -27
  125. data/lib/stripe/application_fee.rb +0 -23
  126. data/lib/stripe/application_fee_refund.rb +0 -22
  127. data/lib/stripe/bank_account.rb +0 -32
  128. data/lib/stripe/charge.rb +0 -86
  129. data/lib/stripe/credit_note.rb +0 -18
  130. data/lib/stripe/customer.rb +0 -95
  131. data/lib/stripe/dispute.rb +0 -23
  132. data/lib/stripe/invoice.rb +0 -48
  133. data/lib/stripe/issuer_fraud_record.rb +0 -9
  134. data/lib/stripe/login_link.rb +0 -11
  135. data/lib/stripe/order.rb +0 -34
  136. data/lib/stripe/payment_intent.rb +0 -30
  137. data/lib/stripe/payout.rb +0 -24
  138. data/lib/stripe/reversal.rb +0 -22
  139. data/lib/stripe/subscription_item.rb +0 -17
  140. data/lib/stripe/subscription_schedule.rb +0 -35
  141. data/lib/stripe/subscription_schedule_revision.rb +0 -25
  142. data/lib/stripe/tax_id.rb +0 -22
  143. data/lib/stripe/transfer.rb +0 -25
  144. data/lib/stripe/usage_record.rb +0 -14
  145. data/test/api_stub_helpers.rb +0 -1
  146. data/test/openapi/README.md +0 -9
  147. data/test/stripe/account_link_test.rb +0 -18
  148. data/test/stripe/account_test.rb +0 -428
  149. data/test/stripe/alipay_account_test.rb +0 -37
  150. data/test/stripe/api_operations_test.rb +0 -81
  151. data/test/stripe/api_resource_test.rb +0 -526
  152. data/test/stripe/apple_pay_domain_test.rb +0 -46
  153. data/test/stripe/application_fee_refund_test.rb +0 -37
  154. data/test/stripe/application_fee_test.rb +0 -58
  155. data/test/stripe/balance_test.rb +0 -13
  156. data/test/stripe/bank_account_test.rb +0 -36
  157. data/test/stripe/capability_test.rb +0 -45
  158. data/test/stripe/charge_test.rb +0 -80
  159. data/test/stripe/checkout/session_test.rb +0 -41
  160. data/test/stripe/country_spec_test.rb +0 -20
  161. data/test/stripe/coupon_test.rb +0 -61
  162. data/test/stripe/credit_note_test.rb +0 -61
  163. data/test/stripe/customer_card_test.rb +0 -42
  164. data/test/stripe/customer_test.rb +0 -226
  165. data/test/stripe/dispute_test.rb +0 -51
  166. data/test/stripe/ephemeral_key_test.rb +0 -93
  167. data/test/stripe/errors_test.rb +0 -20
  168. data/test/stripe/exchange_rate_test.rb +0 -20
  169. data/test/stripe/file_link_test.rb +0 -41
  170. data/test/stripe/file_test.rb +0 -97
  171. data/test/stripe/file_upload_test.rb +0 -79
  172. data/test/stripe/invoice_item_test.rb +0 -66
  173. data/test/stripe/invoice_line_item_test.rb +0 -8
  174. data/test/stripe/invoice_test.rb +0 -213
  175. data/test/stripe/issuer_fraud_record_test.rb +0 -20
  176. data/test/stripe/issuing/authorization_test.rb +0 -72
  177. data/test/stripe/issuing/card_test.rb +0 -62
  178. data/test/stripe/issuing/cardholder_test.rb +0 -53
  179. data/test/stripe/issuing/dispute_test.rb +0 -45
  180. data/test/stripe/issuing/transaction_test.rb +0 -48
  181. data/test/stripe/list_object_test.rb +0 -156
  182. data/test/stripe/login_link_test.rb +0 -37
  183. data/test/stripe/oauth_test.rb +0 -88
  184. data/test/stripe/order_return_test.rb +0 -21
  185. data/test/stripe/order_test.rb +0 -75
  186. data/test/stripe/payment_intent_test.rb +0 -107
  187. data/test/stripe/payment_method_test.rb +0 -84
  188. data/test/stripe/payout_test.rb +0 -57
  189. data/test/stripe/person_test.rb +0 -46
  190. data/test/stripe/plan_test.rb +0 -98
  191. data/test/stripe/product_test.rb +0 -59
  192. data/test/stripe/radar/value_list_item_test.rb +0 -48
  193. data/test/stripe/radar/value_list_test.rb +0 -61
  194. data/test/stripe/recipient_test.rb +0 -62
  195. data/test/stripe/refund_test.rb +0 -39
  196. data/test/stripe/reporting/report_run_test.rb +0 -33
  197. data/test/stripe/reporting/report_type_test.rb +0 -22
  198. data/test/stripe/reversal_test.rb +0 -43
  199. data/test/stripe/review_test.rb +0 -27
  200. data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
  201. data/test/stripe/sku_test.rb +0 -60
  202. data/test/stripe/source_test.rb +0 -99
  203. data/test/stripe/source_transaction_test.rb +0 -19
  204. data/test/stripe/stripe_client_test.rb +0 -842
  205. data/test/stripe/stripe_object_test.rb +0 -525
  206. data/test/stripe/stripe_response_test.rb +0 -49
  207. data/test/stripe/subscription_item_test.rb +0 -63
  208. data/test/stripe/subscription_schedule_revision_test.rb +0 -37
  209. data/test/stripe/subscription_schedule_test.rb +0 -116
  210. data/test/stripe/subscription_test.rb +0 -80
  211. data/test/stripe/tax_id_test.rb +0 -31
  212. data/test/stripe/tax_rate_test.rb +0 -43
  213. data/test/stripe/terminal/connection_token_test.rb +0 -16
  214. data/test/stripe/terminal/location_test.rb +0 -68
  215. data/test/stripe/terminal/reader_test.rb +0 -62
  216. data/test/stripe/three_d_secure_test.rb +0 -23
  217. data/test/stripe/topup_test.rb +0 -62
  218. data/test/stripe/transfer_test.rb +0 -88
  219. data/test/stripe/usage_record_summary_test.rb +0 -19
  220. data/test/stripe/usage_record_test.rb +0 -28
  221. data/test/stripe/util_test.rb +0 -402
  222. data/test/stripe/webhook_endpoint_test.rb +0 -59
  223. data/test/stripe/webhook_test.rb +0 -96
  224. data/test/stripe_mock.rb +0 -77
  225. data/test/stripe_test.rb +0 -63
  226. data/test/test_data.rb +0 -61
  227. data/test/test_helper.rb +0 -73
@@ -4,6 +4,53 @@ module Stripe
4
4
  # StripeResponse encapsulates some vitals of a response that came back from
5
5
  # the Stripe API.
6
6
  class StripeResponse
7
+ # Headers provides an access wrapper to an API response's header data. It
8
+ # mainly exists so that we don't need to expose the entire
9
+ # `Net::HTTPResponse` object while still getting some of its benefits like
10
+ # case-insensitive access to header names and flattening of header values.
11
+ class Headers
12
+ # Initializes a Headers object from a Net::HTTP::HTTPResponse object.
13
+ def self.from_net_http(resp)
14
+ new(resp.to_hash)
15
+ end
16
+
17
+ # `hash` is expected to be a hash mapping header names to arrays of
18
+ # header values. This is the default format generated by calling
19
+ # `#to_hash` on a `Net::HTTPResponse` object because headers can be
20
+ # repeated multiple times. Using `#[]` will collapse values down to just
21
+ # the first.
22
+ def initialize(hash)
23
+ if !hash.is_a?(Hash) ||
24
+ !hash.keys.all? { |n| n.is_a?(String) } ||
25
+ !hash.values.all? { |a| a.is_a?(Array) } ||
26
+ !hash.values.all? { |a| a.all? { |v| v.is_a?(String) } }
27
+ raise ArgumentError,
28
+ "expect hash to be a map of string header names to arrays of " \
29
+ "header values"
30
+ end
31
+
32
+ @hash = {}
33
+
34
+ # This shouldn't be strictly necessary because `Net::HTTPResponse` will
35
+ # produce a hash with all headers downcased, but do it anyway just in
36
+ # case an object of this class was constructed manually.
37
+ #
38
+ # Also has the effect of duplicating the hash, which is desirable for a
39
+ # little extra object safety.
40
+ hash.each do |k, v|
41
+ @hash[k.downcase] = v
42
+ end
43
+ end
44
+
45
+ def [](name)
46
+ values = @hash[name.downcase]
47
+ if values && values.count > 1
48
+ warn("Duplicate header values for `#{name}`; returning only first")
49
+ end
50
+ values ? values.first : nil
51
+ end
52
+ end
53
+
7
54
  # The data contained by the HTTP body of the response deserialized from
8
55
  # JSON.
9
56
  attr_accessor :data
@@ -20,30 +67,15 @@ module Stripe
20
67
  # The Stripe request ID of the response.
21
68
  attr_accessor :request_id
22
69
 
23
- # Initializes a StripeResponse object from a Hash like the kind returned as
24
- # part of a Faraday exception.
25
- #
26
- # This may throw JSON::ParserError if the response body is not valid JSON.
27
- def self.from_faraday_hash(http_resp)
28
- resp = StripeResponse.new
29
- resp.data = JSON.parse(http_resp[:body], symbolize_names: true)
30
- resp.http_body = http_resp[:body]
31
- resp.http_headers = http_resp[:headers]
32
- resp.http_status = http_resp[:status]
33
- resp.request_id = http_resp[:headers]["Request-Id"]
34
- resp
35
- end
36
-
37
- # Initializes a StripeResponse object from a Faraday HTTP response object.
38
- #
39
- # This may throw JSON::ParserError if the response body is not valid JSON.
40
- def self.from_faraday_response(http_resp)
70
+ # Initializes a StripeResponse object from a Net::HTTP::HTTPResponse
71
+ # object.
72
+ def self.from_net_http(http_resp)
41
73
  resp = StripeResponse.new
42
74
  resp.data = JSON.parse(http_resp.body, symbolize_names: true)
43
75
  resp.http_body = http_resp.body
44
- resp.http_headers = http_resp.headers
45
- resp.http_status = http_resp.status
46
- resp.request_id = http_resp.headers["Request-Id"]
76
+ resp.http_headers = Headers.from_net_http(http_resp)
77
+ resp.http_status = http_resp.code.to_i
78
+ resp.request_id = http_resp["request-id"]
47
79
  resp
48
80
  end
49
81
  end
data/lib/stripe/util.rb CHANGED
@@ -24,103 +24,27 @@ module Stripe
24
24
  OPTS_USER_SPECIFIED + Set[:client] - Set[:idempotency_key]
25
25
  ).freeze
26
26
 
27
- def self.objects_to_ids(h)
28
- case h
27
+ def self.objects_to_ids(obj)
28
+ case obj
29
29
  when APIResource
30
- h.id
30
+ obj.id
31
31
  when Hash
32
32
  res = {}
33
- h.each { |k, v| res[k] = objects_to_ids(v) unless v.nil? }
33
+ obj.each { |k, v| res[k] = objects_to_ids(v) unless v.nil? }
34
34
  res
35
35
  when Array
36
- h.map { |v| objects_to_ids(v) }
36
+ obj.map { |v| objects_to_ids(v) }
37
37
  else
38
- h
38
+ obj
39
39
  end
40
40
  end
41
41
 
42
- def self.object_classes # rubocop:disable Metrics/MethodLength
43
- @object_classes ||= {
44
- # data structures
45
- ListObject::OBJECT_NAME => ListObject,
46
-
47
- # business objects
48
- Account::OBJECT_NAME => Account,
49
- AccountLink::OBJECT_NAME => AccountLink,
50
- AlipayAccount::OBJECT_NAME => AlipayAccount,
51
- ApplePayDomain::OBJECT_NAME => ApplePayDomain,
52
- ApplicationFee::OBJECT_NAME => ApplicationFee,
53
- ApplicationFeeRefund::OBJECT_NAME => ApplicationFeeRefund,
54
- Balance::OBJECT_NAME => Balance,
55
- BalanceTransaction::OBJECT_NAME => BalanceTransaction,
56
- BankAccount::OBJECT_NAME => BankAccount,
57
- BitcoinReceiver::OBJECT_NAME => BitcoinReceiver,
58
- BitcoinTransaction::OBJECT_NAME => BitcoinTransaction,
59
- Capability::OBJECT_NAME => Capability,
60
- Card::OBJECT_NAME => Card,
61
- Charge::OBJECT_NAME => Charge,
62
- Checkout::Session::OBJECT_NAME => Checkout::Session,
63
- CountrySpec::OBJECT_NAME => CountrySpec,
64
- Coupon::OBJECT_NAME => Coupon,
65
- CreditNote::OBJECT_NAME => CreditNote,
66
- Customer::OBJECT_NAME => Customer,
67
- Discount::OBJECT_NAME => Discount,
68
- Dispute::OBJECT_NAME => Dispute,
69
- EphemeralKey::OBJECT_NAME => EphemeralKey,
70
- Event::OBJECT_NAME => Event,
71
- ExchangeRate::OBJECT_NAME => ExchangeRate,
72
- File::OBJECT_NAME => File,
73
- File::OBJECT_NAME_ALT => File,
74
- FileLink::OBJECT_NAME => FileLink,
75
- Invoice::OBJECT_NAME => Invoice,
76
- InvoiceItem::OBJECT_NAME => InvoiceItem,
77
- InvoiceLineItem::OBJECT_NAME => InvoiceLineItem,
78
- IssuerFraudRecord::OBJECT_NAME => IssuerFraudRecord,
79
- Issuing::Authorization::OBJECT_NAME => Issuing::Authorization,
80
- Issuing::Card::OBJECT_NAME => Issuing::Card,
81
- Issuing::CardDetails::OBJECT_NAME => Issuing::CardDetails,
82
- Issuing::Cardholder::OBJECT_NAME => Issuing::Cardholder,
83
- Issuing::Dispute::OBJECT_NAME => Issuing::Dispute,
84
- Issuing::Transaction::OBJECT_NAME => Issuing::Transaction,
85
- LoginLink::OBJECT_NAME => LoginLink,
86
- Order::OBJECT_NAME => Order,
87
- OrderReturn::OBJECT_NAME => OrderReturn,
88
- PaymentIntent::OBJECT_NAME => PaymentIntent,
89
- PaymentMethod::OBJECT_NAME => PaymentMethod,
90
- Payout::OBJECT_NAME => Payout,
91
- Person::OBJECT_NAME => Person,
92
- Plan::OBJECT_NAME => Plan,
93
- Product::OBJECT_NAME => Product,
94
- Radar::ValueList::OBJECT_NAME => Radar::ValueList,
95
- Radar::ValueListItem::OBJECT_NAME => Radar::ValueListItem,
96
- Recipient::OBJECT_NAME => Recipient,
97
- RecipientTransfer::OBJECT_NAME => RecipientTransfer,
98
- Refund::OBJECT_NAME => Refund,
99
- Reporting::ReportRun::OBJECT_NAME => Reporting::ReportRun,
100
- Reporting::ReportType::OBJECT_NAME => Reporting::ReportType,
101
- Reversal::OBJECT_NAME => Reversal,
102
- Review::OBJECT_NAME => Review,
103
- SKU::OBJECT_NAME => SKU,
104
- Sigma::ScheduledQueryRun::OBJECT_NAME => Sigma::ScheduledQueryRun,
105
- Source::OBJECT_NAME => Source,
106
- SourceTransaction::OBJECT_NAME => SourceTransaction,
107
- Subscription::OBJECT_NAME => Subscription,
108
- SubscriptionItem::OBJECT_NAME => SubscriptionItem,
109
- SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
110
- SubscriptionScheduleRevision::OBJECT_NAME => SubscriptionScheduleRevision,
111
- TaxId::OBJECT_NAME => TaxId,
112
- TaxRate::OBJECT_NAME => TaxRate,
113
- Terminal::ConnectionToken::OBJECT_NAME => Terminal::ConnectionToken,
114
- Terminal::Location::OBJECT_NAME => Terminal::Location,
115
- Terminal::Reader::OBJECT_NAME => Terminal::Reader,
116
- ThreeDSecure::OBJECT_NAME => ThreeDSecure,
117
- Token::OBJECT_NAME => Token,
118
- Topup::OBJECT_NAME => Topup,
119
- Transfer::OBJECT_NAME => Transfer,
120
- UsageRecord::OBJECT_NAME => UsageRecord,
121
- UsageRecordSummary::OBJECT_NAME => UsageRecordSummary,
122
- WebhookEndpoint::OBJECT_NAME => WebhookEndpoint,
123
- }
42
+ def self.object_classes
43
+ @object_classes ||= Stripe::ObjectTypes.object_names_to_classes
44
+ end
45
+
46
+ def self.object_name_matches_class?(object_name, klass)
47
+ Util.object_classes[object_name] == klass
124
48
  end
125
49
 
126
50
  # Converts a hash of fields or an array of hashes into a +StripeObject+ or
@@ -142,34 +66,42 @@ module Stripe
142
66
  when Array
143
67
  data.map { |i| convert_to_stripe_object(i, opts) }
144
68
  when Hash
145
- # Try converting to a known object class. If none available, fall back to generic StripeObject
146
- object_classes.fetch(data[:object], StripeObject).construct_from(data, opts)
69
+ # Try converting to a known object class. If none available, fall back
70
+ # to generic StripeObject
71
+ object_classes.fetch(data[:object], StripeObject)
72
+ .construct_from(data, opts)
147
73
  else
148
74
  data
149
75
  end
150
76
  end
151
77
 
152
78
  def self.log_error(message, data = {})
153
- if !Stripe.logger.nil? ||
154
- !Stripe.log_level.nil? && Stripe.log_level <= Stripe::LEVEL_ERROR
155
- log_internal(message, data, color: :cyan,
156
- level: Stripe::LEVEL_ERROR, logger: Stripe.logger, out: $stderr)
79
+ config = data.delete(:config) || Stripe.config
80
+ logger = config.logger || Stripe.logger
81
+ if !logger.nil? ||
82
+ !config.log_level.nil? && config.log_level <= Stripe::LEVEL_ERROR
83
+ log_internal(message, data, color: :cyan, level: Stripe::LEVEL_ERROR,
84
+ logger: Stripe.logger, out: $stderr)
157
85
  end
158
86
  end
159
87
 
160
88
  def self.log_info(message, data = {})
161
- if !Stripe.logger.nil? ||
162
- !Stripe.log_level.nil? && Stripe.log_level <= Stripe::LEVEL_INFO
163
- log_internal(message, data, color: :cyan,
164
- level: Stripe::LEVEL_INFO, logger: Stripe.logger, out: $stdout)
89
+ config = data.delete(:config) || Stripe.config
90
+ logger = config.logger || Stripe.logger
91
+ if !logger.nil? ||
92
+ !config.log_level.nil? && config.log_level <= Stripe::LEVEL_INFO
93
+ log_internal(message, data, color: :cyan, level: Stripe::LEVEL_INFO,
94
+ logger: Stripe.logger, out: $stdout)
165
95
  end
166
96
  end
167
97
 
168
98
  def self.log_debug(message, data = {})
169
- if !Stripe.logger.nil? ||
170
- !Stripe.log_level.nil? && Stripe.log_level <= Stripe::LEVEL_DEBUG
171
- log_internal(message, data, color: :blue,
172
- level: Stripe::LEVEL_DEBUG, logger: Stripe.logger, out: $stdout)
99
+ config = data.delete(:config) || Stripe.config
100
+ logger = config.logger || Stripe.logger
101
+ if !logger.nil? ||
102
+ !config.log_level.nil? && config.log_level <= Stripe::LEVEL_DEBUG
103
+ log_internal(message, data, color: :blue, level: Stripe::LEVEL_DEBUG,
104
+ logger: Stripe.logger, out: $stdout)
173
105
  end
174
106
  end
175
107
 
@@ -246,6 +178,18 @@ module Stripe
246
178
  result
247
179
  end
248
180
 
181
+ # `Time.now` can be unstable in cases like an administrator manually
182
+ # updating its value or a reconcilation via NTP. For this reason, prefer
183
+ # the use of the system's monotonic clock especially where comparing times
184
+ # to calculate an elapsed duration.
185
+ #
186
+ # Shortcut for getting monotonic time, mostly for purposes of line length
187
+ # and test stubbing. Returns time in seconds since the event used for
188
+ # monotonic reference purposes by the platform (e.g. system boot time).
189
+ def self.monotonic_time
190
+ Process.clock_gettime(Process::CLOCK_MONOTONIC)
191
+ end
192
+
249
193
  def self.normalize_id(id)
250
194
  if id.is_a?(Hash) # overloaded id
251
195
  params_hash = id.dup
@@ -272,11 +216,13 @@ module Stripe
272
216
 
273
217
  def self.check_string_argument!(key)
274
218
  raise TypeError, "argument must be a string" unless key.is_a?(String)
219
+
275
220
  key
276
221
  end
277
222
 
278
223
  def self.check_api_key!(key)
279
224
  raise TypeError, "api_key must be a string" unless key.is_a?(String)
225
+
280
226
  key
281
227
  end
282
228
 
@@ -304,13 +250,13 @@ module Stripe
304
250
 
305
251
  # Constant time string comparison to prevent timing attacks
306
252
  # Code borrowed from ActiveSupport
307
- def self.secure_compare(a, b)
308
- return false unless a.bytesize == b.bytesize
253
+ def self.secure_compare(str_a, str_b)
254
+ return false unless str_a.bytesize == str_b.bytesize
309
255
 
310
- l = a.unpack "C#{a.bytesize}"
256
+ l = str_a.unpack "C#{str_a.bytesize}"
311
257
 
312
258
  res = 0
313
- b.each_byte { |byte| res |= byte ^ l.shift }
259
+ str_b.each_byte { |byte| res |= byte ^ l.shift }
314
260
  res.zero?
315
261
  end
316
262
 
@@ -319,14 +265,14 @@ module Stripe
319
265
  #
320
266
 
321
267
  COLOR_CODES = {
322
- black: 0, light_black: 60,
323
- red: 1, light_red: 61,
324
- green: 2, light_green: 62,
325
- yellow: 3, light_yellow: 63,
326
- blue: 4, light_blue: 64,
268
+ black: 0, light_black: 60,
269
+ red: 1, light_red: 61,
270
+ green: 2, light_green: 62,
271
+ yellow: 3, light_yellow: 63,
272
+ blue: 4, light_blue: 64,
327
273
  magenta: 5, light_magenta: 65,
328
- cyan: 6, light_cyan: 66,
329
- white: 7, light_white: 67,
274
+ cyan: 6, light_cyan: 66,
275
+ white: 7, light_white: 67,
330
276
  default: 9,
331
277
  }.freeze
332
278
  private_constant :COLOR_CODES
@@ -355,23 +301,32 @@ module Stripe
355
301
  end
356
302
  private_class_method :level_name
357
303
 
358
- # TODO: Make these named required arguments when we drop support for Ruby
359
- # 2.0.
360
- def self.log_internal(message, data = {}, color: nil, level: nil, logger: nil, out: nil)
304
+ def self.log_internal(message, data = {}, color:, level:, logger:, out:)
361
305
  data_str = data.reject { |_k, v| v.nil? }
362
306
  .map do |(k, v)|
363
- format("%s=%s", colorize(k, color, logger.nil? && !out.nil? && out.isatty), wrap_logfmt_value(v))
307
+ format("%<key>s=%<value>s",
308
+ key: colorize(k, color, logger.nil? && !out.nil? && out.isatty),
309
+ value: wrap_logfmt_value(v))
364
310
  end.join(" ")
365
311
 
366
312
  if !logger.nil?
367
313
  # the library's log levels are mapped to the same values as the
368
314
  # standard library's logger
369
315
  logger.log(level,
370
- format("message=%s %s", wrap_logfmt_value(message), data_str))
316
+ format("message=%<message>s %<data_str>s",
317
+ message: wrap_logfmt_value(message),
318
+ data_str: data_str))
371
319
  elsif out.isatty
372
- out.puts format("%s %s %s", colorize(level_name(level)[0, 4].upcase, color, out.isatty), message, data_str)
320
+ out.puts format("%<level>s %<message>s %<data_str>s",
321
+ level: colorize(level_name(level)[0, 4].upcase,
322
+ color, out.isatty),
323
+ message: message,
324
+ data_str: data_str)
373
325
  else
374
- out.puts format("message=%s level=%s %s", wrap_logfmt_value(message), level_name(level), data_str)
326
+ out.puts format("message=%<message>s level=%<level>s %<data_str>s",
327
+ message: wrap_logfmt_value(message),
328
+ level: level_name(level),
329
+ data_str: data_str)
375
330
  end
376
331
  end
377
332
  private_class_method :log_internal
@@ -389,7 +344,7 @@ module Stripe
389
344
  if %r{[^\w\-/]} =~ val
390
345
  # If the string contains any special characters, escape any double
391
346
  # quotes it has, remove newlines, and wrap the whole thing in quotes.
392
- format(%("%s"), val.gsub('"', '\"').delete("\n"))
347
+ format(%("%<value>s"), value: val.gsub('"', '\"').delete("\n"))
393
348
  else
394
349
  # Otherwise use the basic value if it looks like a standard set of
395
350
  # characters (and allow a few special characters like hyphens, and
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "4.17.0".freeze
4
+ VERSION = "5.32.0"
5
5
  end
@@ -8,7 +8,8 @@ module Stripe
8
8
  #
9
9
  # This may raise JSON::ParserError if the payload is not valid JSON, or
10
10
  # SignatureVerificationError if the signature verification fails.
11
- def self.construct_event(payload, sig_header, secret, tolerance: DEFAULT_TOLERANCE)
11
+ def self.construct_event(payload, sig_header, secret,
12
+ tolerance: DEFAULT_TOLERANCE)
12
13
  Signature.verify_header(payload, sig_header, secret, tolerance: tolerance)
13
14
 
14
15
  # It's a good idea to parse the payload only after verifying it. We use
@@ -21,12 +22,39 @@ module Stripe
21
22
  end
22
23
 
23
24
  module Signature
24
- EXPECTED_SCHEME = "v1".freeze
25
+ EXPECTED_SCHEME = "v1"
25
26
 
26
- def self.compute_signature(payload, secret)
27
- OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new("sha256"), secret, payload)
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}"
28
57
  end
29
- private_class_method :compute_signature
30
58
 
31
59
  # Extracts the timestamp and the signature(s) with the desired scheme
32
60
  # from the header
@@ -34,7 +62,7 @@ module Stripe
34
62
  list_items = header.split(/,\s*/).map { |i| i.split("=", 2) }
35
63
  timestamp = Integer(list_items.select { |i| i[0] == "t" }[0][1])
36
64
  signatures = list_items.select { |i| i[0] == scheme }.map { |i| i[1] }
37
- [timestamp, signatures]
65
+ [Time.at(timestamp), signatures]
38
66
  end
39
67
  private_class_method :get_timestamp_and_signatures
40
68
 
@@ -50,7 +78,13 @@ module Stripe
50
78
  # Returns true otherwise
51
79
  def self.verify_header(payload, header, secret, tolerance: nil)
52
80
  begin
53
- timestamp, signatures = get_timestamp_and_signatures(header, EXPECTED_SCHEME)
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.
54
88
  rescue StandardError
55
89
  raise SignatureVerificationError.new(
56
90
  "Unable to extract timestamp and signatures from header",
@@ -65,8 +99,7 @@ module Stripe
65
99
  )
66
100
  end
67
101
 
68
- signed_payload = "#{timestamp}.#{payload}"
69
- expected_sig = compute_signature(signed_payload, secret)
102
+ expected_sig = compute_signature(timestamp, payload, secret)
70
103
  unless signatures.any? { |s| Util.secure_compare(expected_sig, s) }
71
104
  raise SignatureVerificationError.new(
72
105
  "No signatures found matching the expected signature for payload",
@@ -74,7 +107,7 @@ module Stripe
74
107
  )
75
108
  end
76
109
 
77
- if tolerance && timestamp < Time.now.to_f - tolerance
110
+ if tolerance && timestamp < Time.now - tolerance
78
111
  raise SignatureVerificationError.new(
79
112
  "Timestamp outside the tolerance zone (#{Time.at(timestamp)})",
80
113
  header, http_body: payload