mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
add query options to Fog::Storage::AWS#get_object_https_url
This commit is contained in:
parent
12a70ffe80
commit
47983731ee
2 changed files with 5 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,6 +2,7 @@
|
||||||
*.gem
|
*.gem
|
||||||
*.rbc
|
*.rbc
|
||||||
*.sw?
|
*.sw?
|
||||||
|
.rvmrc
|
||||||
.bundle
|
.bundle
|
||||||
.DS_Store
|
.DS_Store
|
||||||
coverage
|
coverage
|
||||||
|
|
|
@ -4,7 +4,7 @@ module Fog
|
||||||
|
|
||||||
module GetObjectHttpsUrl
|
module GetObjectHttpsUrl
|
||||||
|
|
||||||
def get_object_https_url(bucket_name, object_name, expires)
|
def get_object_https_url(bucket_name, object_name, expires, options = {})
|
||||||
unless bucket_name
|
unless bucket_name
|
||||||
raise ArgumentError.new('bucket_name is required')
|
raise ArgumentError.new('bucket_name is required')
|
||||||
end
|
end
|
||||||
|
@ -15,7 +15,8 @@ module Fog
|
||||||
:headers => {},
|
:headers => {},
|
||||||
:host => @host,
|
:host => @host,
|
||||||
:method => 'GET',
|
:method => 'GET',
|
||||||
:path => "#{bucket_name}/#{object_name}"
|
:path => "#{bucket_name}/#{object_name}",
|
||||||
|
:query => options[:query]
|
||||||
}, expires)
|
}, expires)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue