iseshima_store 0.1.1 → 0.1.2
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/iseshima_store/base.rb +20 -11
- data/lib/iseshima_store/relation.rb +3 -0
- data/lib/iseshima_store/version.rb +1 -1
- 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: 150b59a929f9e4d2d3c94fa364c133ca92ac1c35
|
4
|
+
data.tar.gz: 06f6f06c95893c6936d873e459add5e3edeb8071
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2ea30f42d2a7aacc96de5e1cc0f04ba43228a4de0e5ae1a3460816d7747a06af61165afb6da8142c8ee1cadf2d2903b19eff65ff39a2372ac5608454273bb27
|
7
|
+
data.tar.gz: 3bd638ecd194ae779ce9529794055f4edf654a77f04e875934359868a9bae5483e7753a6cc3fc669ac393264c904505a4df794d4afb3deaae283106be3c86ac4
|
data/lib/iseshima_store/base.rb
CHANGED
@@ -5,15 +5,16 @@ require 'iseshima_store/relation'
|
|
5
5
|
#http://googlecloudplatform.github.io/gcloud-ruby/docs/master/Gcloud/Datastore.html
|
6
6
|
|
7
7
|
module IseshimaStore
|
8
|
-
|
8
|
+
class EntityNotFound < StandardError; end
|
9
9
|
|
10
|
+
module Base
|
10
11
|
def self.included(klass)
|
11
12
|
klass.extend SingleForwardable
|
12
13
|
klass.extend ClassMethods
|
13
|
-
klass.def_delegators :scoping, :where, :all, :to_a
|
14
|
+
klass.def_delegators :scoping, :where, :all, :first, :last, :to_a
|
14
15
|
|
15
16
|
klass.instance_eval do
|
16
|
-
attr_accessor :created_at, :description
|
17
|
+
attr_accessor :id, :created_at, :description
|
17
18
|
end
|
18
19
|
end
|
19
20
|
|
@@ -28,20 +29,20 @@ module IseshimaStore
|
|
28
29
|
datastore = IseshimaStore::Connection.current
|
29
30
|
key = datastore.key(self.to_s, _id.to_i)
|
30
31
|
entity = datastore.find(key)
|
31
|
-
|
32
|
+
if entity
|
33
|
+
from_entity(entity)
|
34
|
+
else
|
35
|
+
raise EntityNotFound.new("cannot find entity with id #{_id}")
|
36
|
+
end
|
32
37
|
end
|
33
38
|
|
34
39
|
def attr_properties(*args)
|
40
|
+
attr_accessor(*args)
|
35
41
|
@properties = args
|
36
42
|
end
|
37
43
|
|
38
44
|
def find_by(hash)
|
39
|
-
|
40
|
-
query = Gcloud::Datastore::Query.new
|
41
|
-
query.kind(self.to_s)
|
42
|
-
query.where(key, '=', value)
|
43
|
-
results = IseshimaStore::Connection.current.run(query)
|
44
|
-
results.map { |entity| from_entity(entity) }.first
|
45
|
+
where(hash).first
|
45
46
|
end
|
46
47
|
|
47
48
|
def from_entity(entity)
|
@@ -91,9 +92,17 @@ module IseshimaStore
|
|
91
92
|
def to_entity
|
92
93
|
entity = Gcloud::Datastore::Entity.new
|
93
94
|
entity.key = Gcloud::Datastore::Key.new(self.class.to_s, id)
|
95
|
+
unless self.class.properties
|
96
|
+
raise StandardError.new("You have to define attr_properties in your model")
|
97
|
+
end
|
98
|
+
|
94
99
|
self.class.properties.each do |property|
|
95
100
|
property = property.to_s
|
96
|
-
|
101
|
+
value = send(property)
|
102
|
+
if value.is_a?(String)
|
103
|
+
value = value.force_encoding('UTF-8')
|
104
|
+
end
|
105
|
+
entity[property] = value
|
97
106
|
end
|
98
107
|
entity
|
99
108
|
end
|
@@ -1,11 +1,14 @@
|
|
1
1
|
require 'iseshima_store/query_methods'
|
2
2
|
require 'iseshima_store/where_clause'
|
3
|
+
require 'forwardable'
|
3
4
|
|
4
5
|
module IseshimaStore
|
5
6
|
class Relation
|
7
|
+
extend Forwardable
|
6
8
|
include Enumerable
|
7
9
|
include IseshimaStore::QueryMethods
|
8
10
|
attr_accessor :where_clause
|
11
|
+
def_delegators :to_a, :first, :last
|
9
12
|
|
10
13
|
def initialize(klass)
|
11
14
|
@klass = klass
|