stripe 1.57.0 → 1.57.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.txt +4 -0
- data/VERSION +1 -1
- data/lib/stripe/account.rb +1 -1
- data/lib/stripe/api_operations/save.rb +6 -0
- data/lib/stripe/stripe_object.rb +15 -8
- data/lib/stripe/version.rb +1 -1
- data/test/stripe/account_test.rb +4 -15
- data/test/stripe/api_operations_test.rb +20 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc1cb05bfb9a08a00e144b883b27f19adecd393a
|
4
|
+
data.tar.gz: ba84a7e8456dc66a137cb149a8dc8ca36962e2d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f023b3c00e55b05fc9a7eb84dc2d876c9b518a51ce445f0c78f03e82158a544c2f2a7d825953bd80228f527fd7cd6db14a88f87913d4a6309ff26b423b57ebcb
|
7
|
+
data.tar.gz: 125b78e32aebaaaee71f8d22afd33a10f90d899f8a4ff1bf9352ed2fd8dd35549186b2ef96c943670cd17dcbaa95c1d0f7ce3c6808fa0a690529ba42b716f037
|
data/History.txt
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.57.
|
1
|
+
1.57.1
|
data/lib/stripe/account.rb
CHANGED
@@ -15,6 +15,12 @@ module Stripe
|
|
15
15
|
# idempotency_key to be passed in the request headers, or for the
|
16
16
|
# api_key to be overwritten. See {APIOperations::Request.request}.
|
17
17
|
def update(id, params={}, opts={})
|
18
|
+
params.each do |k, v|
|
19
|
+
if self.protected_fields.include?(k)
|
20
|
+
raise ArgumentError, "Cannot update protected field: #{k}"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
18
24
|
response, opts = request(:post, "#{resource_url}/#{id}", params, opts)
|
19
25
|
Util.convert_to_stripe_object(response, opts)
|
20
26
|
end
|
data/lib/stripe/stripe_object.rb
CHANGED
@@ -194,19 +194,24 @@ module Stripe
|
|
194
194
|
|
195
195
|
protected
|
196
196
|
|
197
|
-
|
198
|
-
|
197
|
+
# A protected field is one that doesn't get an accessor assigned to it
|
198
|
+
# (i.e. `obj.public = ...`) and one which is not allowed to be updated via
|
199
|
+
# the class level `Model.update(id, { ... })`.
|
200
|
+
def self.protected_fields
|
201
|
+
[]
|
199
202
|
end
|
200
203
|
|
201
|
-
def
|
202
|
-
|
204
|
+
def metaclass
|
205
|
+
class << self; self; end
|
203
206
|
end
|
204
207
|
|
205
208
|
def remove_accessors(keys)
|
206
|
-
|
209
|
+
# not available in the #instance_eval below
|
210
|
+
protected_fields = self.class.protected_fields
|
211
|
+
|
207
212
|
metaclass.instance_eval do
|
208
213
|
keys.each do |k|
|
209
|
-
next if
|
214
|
+
next if protected_fields.include?(k)
|
210
215
|
next if @@permanent_attributes.include?(k)
|
211
216
|
|
212
217
|
# Remove methods for the accessor's reader and writer.
|
@@ -220,10 +225,12 @@ module Stripe
|
|
220
225
|
end
|
221
226
|
|
222
227
|
def add_accessors(keys, values)
|
223
|
-
|
228
|
+
# not available in the #instance_eval below
|
229
|
+
protected_fields = self.class.protected_fields
|
230
|
+
|
224
231
|
metaclass.instance_eval do
|
225
232
|
keys.each do |k|
|
226
|
-
next if
|
233
|
+
next if protected_fields.include?(k)
|
227
234
|
next if @@permanent_attributes.include?(k)
|
228
235
|
|
229
236
|
define_method(k) { @values[k] }
|
data/lib/stripe/version.rb
CHANGED
data/test/stripe/account_test.rb
CHANGED
@@ -96,26 +96,15 @@ module Stripe
|
|
96
96
|
should "be updatable" do
|
97
97
|
resp = {
|
98
98
|
:id => 'acct_foo',
|
99
|
-
:
|
100
|
-
:first_name => 'Bob',
|
101
|
-
:address => {
|
102
|
-
:line1 => '2 Three Four'
|
103
|
-
}
|
104
|
-
}
|
99
|
+
:business_name => 'ACME Corp',
|
105
100
|
}
|
106
101
|
@mock.expects(:post).
|
107
102
|
once.
|
108
|
-
with('https://api.stripe.com/v1/accounts/acct_foo', nil, '
|
103
|
+
with('https://api.stripe.com/v1/accounts/acct_foo', nil, 'business_name=ACME+Corp').
|
109
104
|
returns(make_response(resp))
|
110
105
|
|
111
|
-
a = Stripe::Account.update('acct_foo', :
|
112
|
-
|
113
|
-
:address => {
|
114
|
-
:line1 => '2 Three Four'
|
115
|
-
}
|
116
|
-
})
|
117
|
-
assert_equal('Bob', a.legal_entity.first_name)
|
118
|
-
assert_equal('2 Three Four', a.legal_entity.address.line1)
|
106
|
+
a = Stripe::Account.update('acct_foo', :business_name => "ACME Corp")
|
107
|
+
assert_equal('ACME Corp', a.business_name)
|
119
108
|
end
|
120
109
|
|
121
110
|
should 'disallow direct overrides of legal_entity' do
|
@@ -3,18 +3,29 @@ require File.expand_path('../../test_helper', __FILE__)
|
|
3
3
|
|
4
4
|
module Stripe
|
5
5
|
class ApiOperationsTest < Test::Unit::TestCase
|
6
|
-
class
|
6
|
+
class UpdateableResource < APIResource
|
7
7
|
include Stripe::APIOperations::Save
|
8
|
+
|
9
|
+
def self.protected_fields
|
10
|
+
[:protected]
|
11
|
+
end
|
8
12
|
end
|
9
13
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
14
|
+
context ".update" do
|
15
|
+
should "post the correct parameters to the resource URL" do
|
16
|
+
@mock.expects(:post).once.
|
17
|
+
with("#{Stripe.api_base}/v1/updateableresources/id", nil, 'foo=bar').
|
18
|
+
returns(make_response({foo: 'bar'}))
|
19
|
+
resource = UpdateableResource::update("id", { foo: "bar" })
|
20
|
+
assert_equal('bar', resource.foo)
|
21
|
+
end
|
22
|
+
|
23
|
+
should "error on protected fields" do
|
24
|
+
e = assert_raises do
|
25
|
+
UpdateableResource::update("id", { protected: "bar" })
|
26
|
+
end
|
27
|
+
assert_equal "Cannot update protected field: protected", e.message
|
28
|
+
end
|
16
29
|
end
|
17
30
|
end
|
18
31
|
end
|
19
|
-
|
20
|
-
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.57.
|
4
|
+
version: 1.57.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-11-
|
11
|
+
date: 2016-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|