1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/storage.rb

25 lines
736 B
Ruby
Raw Normal View History

2010-10-29 19:24:34 -04:00
module Fog
class Storage
def self.new(attributes)
attributes = attributes.dup # prevent delete from having side effects
2011-01-07 21:14:39 -05:00
case provider = attributes[:provider] # attributes.delete(:provider)
when 'AWS'
2011-01-07 21:12:05 -05:00
require 'fog/storage/aws'
2010-10-29 19:24:34 -04:00
Fog::AWS::Storage.new(attributes)
when 'Google'
2011-01-07 21:12:05 -05:00
require 'fog/storage/google'
2010-10-29 19:24:34 -04:00
Fog::Google::Storage.new(attributes)
when 'Local'
2011-01-07 21:12:05 -05:00
require 'fog/storage/local'
2010-10-29 19:24:34 -04:00
Fog::Local::Storage.new(attributes)
when 'Rackspace'
2011-01-07 21:12:05 -05:00
require 'fog/storage/rackspace'
2010-10-29 19:24:34 -04:00
Fog::Rackspace::Storage.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized storage provider")
end
end
end
2011-01-07 18:34:20 -05:00
end