Methods

Class/Module Index [+]

Quicksearch

Fog::Storage::InternetArchive::GetObjectUrl

Public Instance Methods

get_object_url(bucket_name, object_name, expires, options = {}) click to toggle source
# File lib/fog/internet_archive/requests/storage/get_object_url.rb, line 7
def get_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
  host, path = if bucket_name =~ Fog::InternetArchive::COMPLIANT_BUCKET_NAMES
    ["#{bucket_name}.#{@host}", object_name]
  else
    [@host, "#{bucket_name}/#{object_name}"]
  end
  scheme_host_path_query({
    :scheme   => options[:scheme],
    :headers  => {},
    :host     => host,
    :port     => @port,
    :method   => 'GET',
    :path     => path,
    :query    => options[:query]
  }, expires)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.