-
-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #431 from nolith/delete_object_url
Expose S3 pre-signed object delete url
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
module Fog | ||
module Storage | ||
class AWS | ||
module DeleteObjectUrl | ||
def delete_object_url(bucket_name, object_name, expires, options = {}) | ||
unless bucket_name | ||
raise ArgumentError.new('bucket_name is required') | ||
end | ||
unless object_name | ||
raise ArgumentError.new('object_name is required') | ||
end | ||
signed_url(options.merge({ | ||
:bucket_name => bucket_name, | ||
:object_name => object_name, | ||
:method => 'DELETE' | ||
}), expires) | ||
end | ||
end | ||
|
||
class Real | ||
# Get an expiring object url from S3 for deleting an object | ||
# | ||
# @param bucket_name [String] Name of bucket containing object | ||
# @param object_name [String] Name of object to get expiring url for | ||
# @param expires [Time] An expiry time for this url | ||
# | ||
# @return [Excon::Response] response: | ||
# * body [String] - url for object | ||
# | ||
# @see http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html | ||
|
||
include DeleteObjectUrl | ||
end | ||
|
||
class Mock # :nodoc:all | ||
include DeleteObjectUrl | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters