2010-09-21 14:11:15 -04:00
|
|
|
class AWS < Fog::Bin
|
2010-02-12 00:41:37 -05:00
|
|
|
class << self
|
2010-09-07 18:39:38 -04:00
|
|
|
|
2010-12-06 22:49:58 -05:00
|
|
|
def class_for(key)
|
|
|
|
case key
|
|
|
|
when :cdn
|
|
|
|
Fog::AWS::CDN
|
|
|
|
when :compute, :ec2
|
|
|
|
Fog::AWS::Compute
|
2010-12-14 00:04:23 -05:00
|
|
|
when :dns
|
|
|
|
Fog::AWS::DNS
|
2010-12-06 22:49:58 -05:00
|
|
|
when :elb
|
|
|
|
Fog::AWS::ELB
|
|
|
|
when :iam
|
|
|
|
Fog::AWS::IAM
|
|
|
|
when :sdb
|
|
|
|
Fog::AWS::SimpleDB
|
2011-01-25 20:28:03 -05:00
|
|
|
when :ses
|
|
|
|
Fog::AWS::SES
|
2010-12-06 22:49:58 -05:00
|
|
|
when :eu_storage, :s3, :storage
|
|
|
|
Fog::AWS::Storage
|
2010-12-09 21:44:22 -05:00
|
|
|
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
|
2010-12-06 22:49:58 -05:00
|
|
|
raise ArgumentError, "Unsupported #{self} service: #{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
def [](service)
|
|
|
|
@@connections ||= Hash.new do |hash, key|
|
2011-01-14 13:41:12 -05:00
|
|
|
hash[key] = case key
|
2011-01-12 20:55:24 -05:00
|
|
|
when :cdn
|
|
|
|
Fog::CDN.new(:provider => 'AWS')
|
|
|
|
when :compute
|
|
|
|
Fog::Compute.new(:provider => 'AWS')
|
|
|
|
when :dns
|
|
|
|
Fog::DNS.new(:provider => 'AWS')
|
2010-09-21 14:11:15 -04:00
|
|
|
when :ec2
|
|
|
|
location = caller.first
|
|
|
|
warning = "[yellow][WARN] AWS[:ec2] is deprecated, use AWS[:compute] instead[/]"
|
|
|
|
warning << " [light_black](" << location << ")[/] "
|
|
|
|
Formatador.display_line(warning)
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Compute.new(:provider => 'AWS')
|
|
|
|
when :elb
|
|
|
|
Fog::AWS::ELB.new
|
|
|
|
when :iam
|
|
|
|
Fog::AWS::IAM.new
|
2010-09-23 13:48:52 -04:00
|
|
|
when :eu_storage
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Storage.new(:provider => 'AWS', :region => 'eu-west-1')
|
|
|
|
when :sdb
|
|
|
|
Fog::AWS::SimpleDB.new
|
2011-01-25 20:28:03 -05:00
|
|
|
when :ses
|
|
|
|
Fog::AWS::SES.new
|
2010-09-21 14:11:15 -04:00
|
|
|
when :s3
|
|
|
|
location = caller.first
|
|
|
|
warning = "[yellow][WARN] AWS[:s3] is deprecated, use AWS[:storage] instead[/]"
|
|
|
|
warning << " [light_black](" << location << ")[/] "
|
|
|
|
Formatador.display_line(warning)
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Storage.new(:provider => 'AWS')
|
|
|
|
when :storage
|
|
|
|
Fog::Storage.new(:provider => 'AWS')
|
2010-12-06 22:49:58 -05:00
|
|
|
else
|
2011-02-04 11:17:30 -05:00
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|
|
|
|
end
|
2010-09-21 14:11:15 -04:00
|
|
|
@@connections[service]
|
|
|
|
end
|
2010-02-12 00:41:37 -05:00
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
def services
|
2011-02-04 11:17:30 -05:00
|
|
|
Fog::AWS.services
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|
2010-09-02 19:01:19 -04:00
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
end
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|