2010-10-29 19:24:34 -04:00
|
|
|
module Fog
|
|
|
|
class Storage
|
|
|
|
|
|
|
|
def self.new(attributes)
|
2010-12-13 20:51:16 -05:00
|
|
|
attributes = attributes.dup # prevent delete from having side effects
|
2011-01-07 21:14:39 -05:00
|
|
|
case provider = attributes[:provider] # attributes.delete(:provider)
|
2010-11-03 20:31:07 -04:00
|
|
|
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)
|
2010-11-03 20:31:07 -04:00
|
|
|
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)
|
2010-11-03 20:31:07 -04:00
|
|
|
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)
|
2010-11-03 20:31:07 -04:00
|
|
|
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
|