2012-05-08 11:35:37 -04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class HP
|
|
|
|
class Real
|
|
|
|
|
2012-05-10 13:49:50 -04:00
|
|
|
# List metadata for specific collections
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * 'collection_name'<~String> - name of the collection i.e. images, servers for which the metadata is intended.
|
|
|
|
# * 'parent_id'<~Integer> - id of the collection i.e. image_id or the server_id
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * metadata<~Hash>: hash of key/value pair for the metadata items found
|
|
|
|
#
|
2012-05-08 11:35:37 -04:00
|
|
|
def list_metadata(collection_name, parent_id)
|
|
|
|
request(
|
|
|
|
:expects => [200, 203],
|
|
|
|
:method => 'GET',
|
|
|
|
:path => "/#{collection_name}/#{parent_id}/metadata.json"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def list_metadata(collection_name, parent_id)
|
2012-05-10 13:49:50 -04:00
|
|
|
mdata = {}
|
|
|
|
if collection_name == "images" then
|
|
|
|
if get_image_details(parent_id)
|
|
|
|
mdata = self.data[:images][parent_id]['metadata']
|
|
|
|
else
|
|
|
|
raise Fog::Compute::HP::NotFound
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if collection_name == "servers" then
|
|
|
|
if get_server_details(parent_id)
|
|
|
|
mdata = self.data[:servers][parent_id]['metadata']
|
|
|
|
else
|
|
|
|
raise Fog::Compute::HP::NotFound
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-08 11:35:37 -04:00
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 200
|
2012-05-10 13:49:50 -04:00
|
|
|
response.body = {'metadata' => mdata}
|
2012-05-08 11:35:37 -04:00
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|