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/aws/requests/storage/delete_object.rb

51 lines
1.3 KiB
Ruby
Raw Normal View History

2010-03-13 13:37:24 -08:00
module Fog
module Storage
class AWS
2010-03-13 13:37:24 -08:00
class Real
# Delete an object from S3
#
# ==== 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
#
# ==== See Also
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectDELETE.html
def delete_object(bucket_name, object_name, options = {})
headers = options
request({
:expects => 204,
:headers => headers,
:host => "#{bucket_name}.#{@host}",
:idempotent => true,
:method => 'DELETE',
:path => CGI.escape(object_name)
})
end
end
class Mock # :nodoc:all
def delete_object(bucket_name, object_name, options = {})
2009-11-20 11:08:08 -08:00
response = Excon::Response.new
2011-05-19 15:35:33 -07:00
if bucket = self.data[:buckets][bucket_name]
response.status = 204
bucket[:objects].delete(object_name)
else
response.status = 404
2009-11-20 11:08:08 -08:00
raise(Excon::Errors.status_error({:expects => 204}, response))
end
response
end
end
end
end
end