Sha256: b3a117c339814ed84ce9a00bc4963611452be87b9e1c1ef128d1c1c200c60bfe

Contents?: true

Size: 1.27 KB

Versions: 2

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

module Fog
  module Aliyun
    class Storage
      class Real
        # Get headers for object
        #
        # ==== Parameters
        # * object_name<~String> - Name of object to look for
        #
        def head_object(bucket_name, object_name, options={})
          unless bucket_name
            raise ArgumentError.new('bucket_name is required')
          end
          unless object_name
            raise ArgumentError.new('object_name is required')
          end

          # Currently, the ruby sdk does not support versionId
          # if version_id = options.delete('versionId')
          #   query = {'versionId' => version_id}
          # end
          headers = {}
          headers['If-Modified-Since'] = Fog::Time.at(options['If-Modified-Since'].to_i).to_date_header if options['If-Modified-Since']
          headers['If-Unmodified-Since'] = Fog::Time.at(options['If-Unmodified-Since'].to_i).to_date_header if options['If-Modified-Since']
          headers.merge!(options)
          resources = {
              :bucket => bucket_name,
              :object => object_name
          }
          http_options = {
              :headers => headers
          }
          @oss_http.head(resources, http_options)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-aliyun-0.4.0 lib/fog/aliyun/requests/storage/head_object.rb
fog-aliyun-0.3.19 lib/fog/aliyun/requests/storage/head_object.rb