Sha256: aaee21478bb2552dcf026e19c4649c9a8ea742bd1d6af93c7be97248369029fa

Contents?: true

Size: 975 Bytes

Versions: 2

Compression:

Stored size: 975 Bytes

Contents

module NightcrawlerSwift
  class Upload < Command

    def execute path, file, opts = {}
      body = file.read
      headers = {etag: etag(body), content_type: content_type(file)}

      max_age = opts[:max_age] || options.max_age
      headers.merge!(cache_control: "public, max-age=#{max_age}") if max_age

      expires = opts[:expires]
      headers.merge!(expires: CGI.rfc1123_date(expires)) if expires

      content_encoding = opts[:content_encoding] || options.content_encoding
      headers.merge!(content_encoding: content_encoding.to_s) if content_encoding

      custom_headers = opts[:custom_headers]
      headers.merge!(custom_headers) if custom_headers

      response = put "#{connection.upload_url}/#{path}", body: body, headers: headers
      [200, 201].include?(response.code)
    end

    private

    def content_type file
      MultiMime.by_file(file).content_type
    end

    def etag content
      Digest::MD5.hexdigest(content)
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
nightcrawler_swift-0.11.1 lib/nightcrawler_swift/commands/upload.rb
nightcrawler_swift-0.11.0 lib/nightcrawler_swift/commands/upload.rb