Sha256: 7f7b355707232e3be3ce6631bcad766c5337829c914008b28b88ba539b42fe68

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

module Heirloom

  class ArtifactDownloader

    def initialize(args)
      @config = args[:config]
      @logger = args[:logger]
    end

    def download(args)
      @id = args[:id]
      @name = args[:name]
      @output = args[:output]
      @region = args[:region]

      s3_downloader = Downloader::S3.new :config => @config,
                                         :logger => @logger,
                                         :region => @region

      @logger.info "Downloading s3://#{get_bucket}/#{get_key} from #{@region}."

      file = s3_downloader.download_file :bucket => get_bucket,
                                         :key    => get_key

      @logger.info "Writing file to #{@output}."

      File.open(@output, 'w') do |local_file|
        local_file.write file
      end
    end

    private

    def get_bucket
      artifact = artifact_reader.show :name => @name,
                                      :id   => @id

      url = artifact["#{@region}-s3-url"].first

      bucket = url.gsub('s3://', '').split('/').first
    end

    def get_key
      artifact = artifact_reader.show :name => @name,
                                      :id   => @id

      url = artifact["#{@region}-s3-url"].first

      bucket = url.gsub('s3://', '').gsub(get_bucket, '')
      bucket.slice!(0)
      bucket
    end

    def artifact_reader
      @artifact_reader ||= ArtifactReader.new :config => @config
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
heirloom-0.1.2 lib/heirloom/artifact/artifact_downloader.rb
heirloom-0.1.1 lib/heirloom/artifact/artifact_downloader.rb