Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

To allow passing query parameters such as response-content-disposition #104

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/s3/s3_interface.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ def canonical_string(method, path, headers={}, expires=nil) # :nodoc:
out_string << (key[/^#{AMAZON_HEADER_PREFIX}/o] ? "#{key}:#{value}\n" : "#{value}\n")
end
# ignore everything after the question mark...
out_string << path.gsub(/\?.*$/, '')
#out_string << path.gsub(/\?.*$/, '')

# To allow passing query parameters such as response-content-disposition
out_string << path

# ...unless there is an acl or torrent parameter
out_string << '?acl' if path[/[&?]acl($|&|=)/]
out_string << '?policy' if path[/[&?]policy($|&|=)/]
Expand Down