Class: Curator::Riak::DataStore

Inherits:
Object
  • Object
show all
Defined in:
lib/curator/riak/data_store.rb

Direct Known Subclasses

Curator::ResettableRiak::DataStore

Instance Method Summary collapse

Instance Method Details

#_bucket(name) ⇒ Object



61
62
63
# File 'lib/curator/riak/data_store.rb', line 61

def _bucket(name)
  client.bucket(_bucket_name(name))
end

#_bucket_name(name) ⇒ Object



65
66
67
# File 'lib/curator/riak/data_store.rb', line 65

def _bucket_name(name)
  bucket_prefix + ":" + name
end

#_deserialize(data) ⇒ Object



69
70
71
72
73
74
# File 'lib/curator/riak/data_store.rb', line 69

def _deserialize(data)
  deserialized_data = data.dup
  deserialized_data["created_at"] = Time.parse(data["created_at"]) if data["created_at"]
  deserialized_data["updated_at"] = Time.parse(data["updated_at"]) if data["updated_at"]
  deserialized_data
end

#_find_key_by_index(bucket, index_name, query) ⇒ Object



76
77
78
# File 'lib/curator/riak/data_store.rb', line 76

def _find_key_by_index(bucket, index_name, query)
  bucket.get_index("#{index_name}_bin", query)
end

#_normalized_index_data(index_data) ⇒ Object



80
81
82
83
84
85
86
# File 'lib/curator/riak/data_store.rb', line 80

def _normalized_index_data(index_data)
  if index_data.is_a?(Array)
    index_data.join(", ")
  else
    index_data
  end
end

#bucket_prefixObject



13
14
15
# File 'lib/curator/riak/data_store.rb', line 13

def bucket_prefix
  "#{Curator.config.bucket_prefix}:#{Curator.config.environment}"
end

#clientObject



7
8
9
10
11
# File 'lib/curator/riak/data_store.rb', line 7

def client
  return @client if @client
  yml_config = YAML.load(File.read(Curator.config.riak_config_file))[Curator.config.environment]
  @client = ::Riak::Client.new(yml_config)
end

#delete(bucket_name, key) ⇒ Object



17
18
19
20
21
# File 'lib/curator/riak/data_store.rb', line 17

def delete(bucket_name, key)
  bucket = _bucket(bucket_name)
  object = bucket.get(key)
  object.delete
end

#find_by_attribute(bucket_name, index_name, query) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
# File 'lib/curator/riak/data_store.rb', line 49

def find_by_attribute(bucket_name, index_name, query)
  return [] if query.nil?

  bucket = _bucket(bucket_name)
  begin
    keys = _find_key_by_index(bucket, index_name.to_s, query)
    keys.map { |key| find_by_key(bucket_name, key) }
  rescue ::Riak::HTTPFailedRequest => failed_request
    raise failed_request unless failed_request.not_found?
  end
end

#find_by_key(bucket_name, key) ⇒ Object



39
40
41
42
43
44
45
46
47
# File 'lib/curator/riak/data_store.rb', line 39

def find_by_key(bucket_name, key)
  bucket = _bucket(bucket_name)
  begin
    object = bucket.get(key)
    { :key => object.key, :data => _deserialize(object.data) } unless object.data.empty?
  rescue ::Riak::HTTPFailedRequest => failed_request
    raise failed_request unless failed_request.not_found?
  end
end

#pingObject



23
24
25
# File 'lib/curator/riak/data_store.rb', line 23

def ping
  client.ping
end

#save(options) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
# File 'lib/curator/riak/data_store.rb', line 27

def save(options)
  bucket = _bucket(options[:collection_name])
  object = ::Riak::RObject.new(bucket, options[:key])
  object.content_type = options.fetch(:content_type, "application/json")
  object.data = options[:value]
  options.fetch(:index, {}).each do |index_name, index_data|
    object.indexes["#{index_name}_bin"] << _normalized_index_data(index_data)
  end
  result = object.store
  result.key
end