mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
37 lines
1,005 B
Ruby
37 lines
1,005 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/cloudstack/models/compute/image'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Cloudstack
|
|
class Images < Fog::Collection
|
|
model Fog::Compute::Cloudstack::Image
|
|
|
|
def all(filters={})
|
|
options = get_filter_options(filters)
|
|
data = service.list_templates(options)["listtemplatesresponse"]["template"] || []
|
|
load(data)
|
|
end
|
|
|
|
def get(template_id, filters={})
|
|
filter_option = get_filter_options(filters)
|
|
options = filter_option.merge('id' => template_id)
|
|
if template = service.list_templates(options)["listtemplatesresponse"]["template"].first
|
|
new(template)
|
|
end
|
|
rescue Fog::Compute::Cloudstack::BadRequest
|
|
nil
|
|
end
|
|
|
|
private
|
|
|
|
def get_filter_options(filters)
|
|
default_filter = {
|
|
'templatefilter' => 'self'
|
|
}
|
|
default_filter.merge(filters)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|