mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
module Fog
|
|
module Storage
|
|
class Google
|
|
class Real
|
|
# Delete an object from Google Storage
|
|
#
|
|
# ==== Parameters
|
|
# * bucket_name<~String> - Name of bucket containing object to delete
|
|
# * object_name<~String> - Name of object to delete
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * status<~Integer> - 204
|
|
def delete_object(bucket_name, object_name)
|
|
request({
|
|
:expects => 204,
|
|
:headers => {},
|
|
:host => "#{bucket_name}.#{@host}",
|
|
:idempotent => true,
|
|
:method => 'DELETE',
|
|
:path => CGI.escape(object_name)
|
|
})
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def delete_object(bucket_name, object_name)
|
|
response = Excon::Response.new
|
|
if bucket = self.data[:buckets][bucket_name]
|
|
if object = bucket[:objects][object_name]
|
|
response.status = 204
|
|
bucket[:objects].delete(object_name)
|
|
else
|
|
response.status = 404
|
|
raise(Excon::Errors.status_error({:expects => 204}, response))
|
|
end
|
|
else
|
|
response.status = 404
|
|
raise(Excon::Errors.status_error({:expects => 204}, response))
|
|
end
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|