2010-09-21 11:11:15 -07:00
|
|
|
class Rackspace < Fog::Bin
|
2010-02-11 21:41:37 -08:00
|
|
|
class << self
|
|
|
|
|
2010-12-06 19:49:58 -08:00
|
|
|
def class_for(key)
|
|
|
|
case key
|
|
|
|
when :cdn
|
|
|
|
Fog::Rackspace::CDN
|
2011-02-16 15:07:42 -08:00
|
|
|
when :compute
|
2010-12-06 19:49:58 -08:00
|
|
|
Fog::Rackspace::Compute
|
2011-02-16 15:07:42 -08:00
|
|
|
when :storage
|
2010-12-06 19:49:58 -08:00
|
|
|
Fog::Rackspace::Storage
|
|
|
|
else
|
|
|
|
raise ArgumentError, "Unrecognized service: #{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-21 11:11:15 -07:00
|
|
|
def [](service)
|
|
|
|
@@connections ||= Hash.new do |hash, key|
|
2011-01-14 10:41:12 -08:00
|
|
|
hash[key] = case key
|
2011-01-12 17:55:24 -08:00
|
|
|
when :cdn
|
|
|
|
Fog::CDN.new(:provider => 'Rackspace')
|
|
|
|
when :compute
|
|
|
|
Fog::Compute.new(:provider => 'Rackspace')
|
|
|
|
when :dns
|
|
|
|
Fog::DNS.new(:provider => 'Rackspace')
|
|
|
|
when :storage
|
|
|
|
Fog::Storage.new(:provider => 'Rackspace')
|
2010-12-06 19:49:58 -08:00
|
|
|
else
|
2011-02-04 11:17:30 -05:00
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
2010-02-11 21:41:37 -08:00
|
|
|
end
|
|
|
|
end
|
2010-09-21 11:11:15 -07:00
|
|
|
@@connections[service]
|
|
|
|
end
|
2010-02-11 21:41:37 -08:00
|
|
|
|
2010-09-21 11:11:15 -07:00
|
|
|
def services
|
2011-02-04 11:17:30 -05:00
|
|
|
Fog::Rackspace.services
|
2010-02-11 21:41:37 -08:00
|
|
|
end
|
2010-09-21 11:11:15 -07:00
|
|
|
|
2010-02-11 21:41:37 -08:00
|
|
|
end
|
2010-09-08 13:50:23 -07:00
|
|
|
end
|