mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
55 lines
1.5 KiB
Ruby
55 lines
1.5 KiB
Ruby
![]() |
module Fog
|
||
|
module Google
|
||
|
class Storage
|
||
|
class Real
|
||
|
|
||
|
# Get an expiring object url from S3
|
||
|
#
|
||
|
# ==== Parameters
|
||
|
# * bucket_name<~String> - Name of bucket containing object
|
||
|
# * object_name<~String> - Name of object to get expiring url for
|
||
|
# * expires<~Time> - An expiry time for this url
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# * response<~Excon::Response>:
|
||
|
# * body<~String> - url for object
|
||
|
#
|
||
|
def get_object_url(bucket_name, object_name, expires)
|
||
|
unless bucket_name
|
||
|
raise ArgumentError.new('bucket_name is required')
|
||
|
end
|
||
|
unless object_name
|
||
|
raise ArgumentError.new('object_name is required')
|
||
|
end
|
||
|
url({
|
||
|
:headers => {},
|
||
|
:host => "#{bucket_name}.#{@host}",
|
||
|
:method => 'GET',
|
||
|
:path => CGI.escape(object_name)
|
||
|
}, expires)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
|
||
|
def get_object_url(bucket_name, object_name, expires)
|
||
|
unless bucket_name
|
||
|
raise ArgumentError.new('bucket_name is required')
|
||
|
end
|
||
|
unless object_name
|
||
|
raise ArgumentError.new('object_name is required')
|
||
|
end
|
||
|
url({
|
||
|
:headers => {},
|
||
|
:host => "#{bucket_name}.#{@host}",
|
||
|
:method => 'GET',
|
||
|
:path => CGI.escape(object_name)
|
||
|
}, expires)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|