mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
39 lines
836 B
Ruby
39 lines
836 B
Ruby
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({
|
|
:expects => 200,
|
|
: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
|
|
response.status = 200
|
|
response
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|