dynamini 1.4.7 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dynamini/base.rb +17 -0
- data/lib/dynamini/test_client.rb +9 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 661e45e76eaaaa1e48e12e3a8dfdd79013f1092d
|
4
|
+
data.tar.gz: eabe1c032f334bbb0a6b5249f525a2b18436d5b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b773405d0e13858b136a44a8f19135a6b00a5dbf9823d7569cfcc0f034a75287940cc59ea087ce4de2e698f981ba401afd130be3548ed66265d927cb42150ab3
|
7
|
+
data.tar.gz: c9e5b0ceeba1269af53ddd7e596a1a0c5b29684b9e85b9a6d92f1cdd14cbcfd5e8bbad2d2b75c99887174a1cf3a7a0910fbdb1e167293d74b59326368a7f732f
|
data/lib/dynamini/base.rb
CHANGED
@@ -182,6 +182,19 @@ module Dynamini
|
|
182
182
|
end
|
183
183
|
end
|
184
184
|
|
185
|
+
def increment!(attribute, amount=1)
|
186
|
+
if amount.is_a?(Integer) || amount.is_a?(Float)
|
187
|
+
current_value = self.send(attribute)
|
188
|
+
if current_value.nil? || current_value.is_a?(Integer) || current_value.is_a?(Float)
|
189
|
+
increment_to_dynamo(attribute, amount)
|
190
|
+
else
|
191
|
+
raise StandardError, 'You cannot increment! a non-numeric non-nil value. If your current value is a numeric string, use :handle to autocast it as a number.'
|
192
|
+
end
|
193
|
+
else
|
194
|
+
raise StandardError, 'You cannot increment an attribute by a non-numeric value.'
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
185
198
|
def delete
|
186
199
|
delete_from_dynamo
|
187
200
|
self
|
@@ -236,6 +249,10 @@ module Dynamini
|
|
236
249
|
self.class.client.delete_item(table_name: self.class.table_name, key: key)
|
237
250
|
end
|
238
251
|
|
252
|
+
def increment_to_dynamo(attribute, amount)
|
253
|
+
self.class.client.update_item(table_name: self.class.table_name, key: key, attribute_updates: {attribute => {value: amount, action: 'ADD'}, updated_at: {value: attributes[:updated_at], action: 'PUT'}})
|
254
|
+
end
|
255
|
+
|
239
256
|
def self.dynamo_batch_get(key_structure)
|
240
257
|
client.batch_get_item(request_items: {table_name => {keys: key_structure}})
|
241
258
|
end
|
data/lib/dynamini/test_client.rb
CHANGED
@@ -12,7 +12,7 @@ module Dynamini
|
|
12
12
|
|
13
13
|
def update_item(args = {})
|
14
14
|
table = args[:table_name]
|
15
|
-
updates = flatten_attribute_updates(args
|
15
|
+
updates = flatten_attribute_updates(args).merge({hash_key => args[:key][hash_key]})
|
16
16
|
@data[table] ||= {}
|
17
17
|
if @data[table][args[:key][hash_key]].present?
|
18
18
|
@data[table][args[:key][hash_key]].merge!(updates)
|
@@ -24,7 +24,7 @@ module Dynamini
|
|
24
24
|
def get_item(args = {})
|
25
25
|
table = args[:table_name]
|
26
26
|
@data[table] ||= {}
|
27
|
-
attributes_hash = @data[table
|
27
|
+
attributes_hash = @data[table][args[:key][hash_key]]
|
28
28
|
item = attributes_hash.nil? ? nil : attributes_hash
|
29
29
|
OpenStruct.new(item: item)
|
30
30
|
end
|
@@ -64,11 +64,15 @@ module Dynamini
|
|
64
64
|
|
65
65
|
private
|
66
66
|
|
67
|
-
def flatten_attribute_updates(
|
67
|
+
def flatten_attribute_updates(args = {})
|
68
68
|
attribute_hash = {}
|
69
69
|
|
70
|
-
attribute_updates.each do |k, v|
|
71
|
-
|
70
|
+
args[:attribute_updates].each do |k, v|
|
71
|
+
if v[:action] == 'ADD'
|
72
|
+
attribute_hash[k] = v[:value] + @data[args[:table_name]][args[:key][hash_key]][k].to_f
|
73
|
+
else
|
74
|
+
attribute_hash[k] = v[:value]
|
75
|
+
end
|
72
76
|
end
|
73
77
|
attribute_hash
|
74
78
|
end
|