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

47 lines
1.3 KiB
Ruby
Raw Normal View History

2013-01-31 14:40:38 -05:00
module Fog
module Storage
class InternetArchive
class Real
# Delete an object from S3
#
# @param bucket_name [String] Name of bucket containing object to delete
# @param object_name [String] Name of object to delete
#
# @return [Excon::Response] response:
# * status [Integer] - 204
#
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectDELETE.html
def delete_object(bucket_name, object_name, options = {})
2013-03-06 13:14:03 -05:00
path = CGI.escape(object_name)
2013-01-31 14:40:38 -05:00
headers = options
request({
:expects => 204,
:headers => headers,
:host => "#{bucket_name}.#{@host}",
:idempotent => true,
:method => 'DELETE',
:path => path
})
end
end
class Mock # :nodoc:all
def delete_object(bucket_name, object_name, options = {})
response = Excon::Response.new
if bucket = self.data[:buckets][bucket_name]
response.status = 204
2013-03-06 13:14:03 -05:00
bucket[:objects].delete(object_name)
2013-01-31 14:40:38 -05:00
else
response.status = 404
raise(Excon::Errors.status_error({:expects => 204}, response))
end
response
end
end
end
end
end