Sha256: d784b691d430e413e6d70adcb30cc2dd6cde69d02dee38a1dffc1abd9eb559f4

Contents?: true

Size: 1.58 KB

Versions: 4

Compression:

Stored size: 1.58 KB

Contents

class AWS < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :cdn
        Fog::AWS::CDN
      when :compute, :ec2
        Fog::AWS::Compute
      when :dns
        Fog::AWS::DNS
      when :elb
        Fog::AWS::ELB
      when :iam
        Fog::AWS::IAM
      when :sdb
        Fog::AWS::SimpleDB
      when :eu_storage, :s3, :storage
        Fog::AWS::Storage
      else
        # @todo Replace most instances of ArgumentError with NotImplementedError
        # @todo For a list of widely supported Exceptions, see:
        # => http://www.zenspider.com/Languages/Ruby/QuickRef.html#35
        raise ArgumentError, "Unsupported #{self} service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        klazz = class_for(key)
        hash[key] = case key 
        when :ec2
          location = caller.first
          warning = "[yellow][WARN] AWS[:ec2] is deprecated, use AWS[:compute] instead[/]"
          warning << " [light_black](" << location << ")[/] "
          Formatador.display_line(warning)
          klazz.new
        when :eu_storage
          klazz.new(:region => 'eu-west-1')
        when :s3
          location = caller.first
          warning = "[yellow][WARN] AWS[:s3] is deprecated, use AWS[:storage] instead[/]"
          warning << " [light_black](" << location << ")[/] "
          Formatador.display_line(warning)
          klazz.new
        else
          klazz.new
        end
      end
      @@connections[service]
    end

    def services
      [:cdn, :compute, :dns, :elb, :iam, :sdb, :storage]
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-0.4.0 lib/fog/aws/bin.rb
fog-0.3.34 lib/fog/aws/bin.rb
fog-0.3.33 lib/fog/aws/bin.rb
fog-0.3.32 lib/fog/aws/bin.rb