1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/models/image/images.rb
Ferran Rodenas 212274b832 [openstack|image] Fix image reload
Instead of returning the cached image in collection, get (or find_by_id) method
should refresh the image data. This will fix the reload method, as actually it
doesn't really reload the image details.
2013-07-03 00:30:45 +02:00

61 lines
1.6 KiB
Ruby

require 'fog/core/collection'
require 'fog/openstack/models/image/image'
module Fog
module Image
class OpenStack
class Images < Fog::Collection
model Fog::Image::OpenStack::Image
def all
load(service.list_public_images_detailed.body['images'])
end
def details
load(service.list_public_images_detailed.body['images'])
end
def find_by_id(id)
all.find {|image| image.id == id}
end
alias_method :get, :find_by_id
def public
images = load(service.list_public_images_detailed.body['images'])
images.delete_if{|image| image.is_public == false}
end
def private
images = load(service.list_public_images_detailed.body['images'])
images.delete_if{|image| image.is_public}
end
def destroy(id)
image = self.find_by_id(id)
image.destroy
end
def method_missing(method_sym, *arguments, &block)
if method_sym.to_s =~ /^find_by_(.*)$/
load(service.list_public_images_detailed($1 ,arguments.first).body['images'])
else
super
end
end
def find_by_size_min(size)
find_attribute(__method__, size)
end
def find_by_size_max(size)
find_attribute(__method__, size)
end
def find_attribute(attribute,value)
attribute = attribute.to_s.gsub("find_by_", "")
load(service.list_public_images_detailed(attribute , value).body['images'])
end
end
end
end
end