2010-09-21 14:11:15 -04:00
|
|
|
class Linode < Fog::Bin
|
2010-07-03 11:48:13 -04:00
|
|
|
class << self
|
|
|
|
|
2010-12-06 22:49:58 -05:00
|
|
|
def class_for(key)
|
|
|
|
case key
|
2010-12-21 18:11:29 -05:00
|
|
|
when :compute
|
2011-06-16 19:28:54 -04:00
|
|
|
Fog::Compute::Linode
|
2010-12-21 18:11:29 -05:00
|
|
|
when :dns
|
2011-06-15 20:25:01 -04:00
|
|
|
Fog::DNS::Linode
|
2010-12-21 18:11:29 -05:00
|
|
|
else
|
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 :compute
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("Linode[:compute] is not recommended, use Compute[:linode] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Compute.new(:provider => 'Linode')
|
|
|
|
when :dns
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("Linode[:dns] is not recommended, use DNS[:linode] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::DNS.new(:provider => 'Linode')
|
|
|
|
else
|
2011-02-04 11:17:30 -05:00
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
2010-07-03 11:48:13 -04:00
|
|
|
end
|
|
|
|
end
|
2010-09-21 14:11:15 -04:00
|
|
|
@@connections[service]
|
|
|
|
end
|
2010-07-03 11:48:13 -04:00
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
def services
|
2011-02-04 11:17:30 -05:00
|
|
|
Fog::Linode.services
|
2010-07-03 11:48:13 -04:00
|
|
|
end
|
2010-09-21 14:11:15 -04:00
|
|
|
|
2010-07-03 11:48:13 -04:00
|
|
|
end
|
|
|
|
end
|