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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ad2a0c29f44f30df8ffc1b1bf676a9370731e13f
4
- data.tar.gz: afa1dfa84d0ed4c3c6e8a3e2f816b2bc58ce971f
3
+ metadata.gz: 150b59a929f9e4d2d3c94fa364c133ca92ac1c35
4
+ data.tar.gz: 06f6f06c95893c6936d873e459add5e3edeb8071
5
5
  SHA512:
6
- metadata.gz: ddfe993d85bb0aca3dc33d3eececd4bff23a710b670bee4a1c4e7550deef7cc726bea1395de39302cd0a31827ddefc6c364f552aa987d891434a4581e386788b
7
- data.tar.gz: f84ce3880a1891d91fe213d72b38d7164849c488bc593eacf340e124c79b4278820287c8bb75f8fab21a22ec343b7b9c10d0f91ed853b34d2e93bbd6068aa4af
6
+ metadata.gz: c2ea30f42d2a7aacc96de5e1cc0f04ba43228a4de0e5ae1a3460816d7747a06af61165afb6da8142c8ee1cadf2d2903b19eff65ff39a2372ac5608454273bb27
7
+ data.tar.gz: 3bd638ecd194ae779ce9529794055f4edf654a77f04e875934359868a9bae5483e7753a6cc3fc669ac393264c904505a4df794d4afb3deaae283106be3c86ac4
@@ -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
- module Base
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
- from_entity(entity)
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
- key, value = hash.keys.first.to_s, hash.values.first.to_s
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
- entity[property] = send(property)
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
@@ -1,3 +1,3 @@
1
1
  module IseshimaStore
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iseshima_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - kotohata