2012-10-16 22:51:59 -04:00
|
|
|
module Fog
|
|
|
|
module Storage
|
|
|
|
class HP
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# Get headers for shared object
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * * shared_object_url<~String> - Url of the shared object
|
|
|
|
#
|
|
|
|
def head_shared_object(shared_object_url)
|
|
|
|
# split up the shared object url
|
|
|
|
uri = URI.parse(shared_object_url)
|
|
|
|
path = uri.path
|
|
|
|
|
|
|
|
response = shared_request({
|
2012-10-26 00:18:14 -04:00
|
|
|
:expects => 200,
|
2012-10-16 22:51:59 -04:00
|
|
|
:method => 'HEAD',
|
|
|
|
:path => path
|
|
|
|
}, false)
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock # :nodoc:all
|
|
|
|
|
|
|
|
def head_shared_object(shared_object_url)
|
|
|
|
response = get_shared_object(shared_object_url)
|
|
|
|
response.body = nil
|
2012-10-26 00:18:14 -04:00
|
|
|
response.status = 200
|
2012-10-16 22:51:59 -04:00
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|