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/bluebox/models/flavors.rb

42 lines
757 B
Ruby
Raw Normal View History

require 'fog/collection'
require 'fog/bluebox/models/flavor'
module Fog
module Bluebox
class Mock
def flavors
Fog::Bluebox::Flavors.new(:connection => self)
end
end
class Real
def flavors
Fog::Bluebox::Flavors.new(:connection => self)
end
end
class Flavors < Fog::Collection
model Fog::Bluebox::Flavor
def all
data = connection.get_flavors.body['flavors']
load(data)
end
def get(product_id)
response = connection.get_flavor(product_id)
model.new(response.body)
rescue Excon::Errors::NotFound
# Whoops - no image with that id.
nil
rescue Excon::Errors::Forbidden
nil
end
end
end
end