2010-09-08 16:50:23 -04:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
class Storage < Fog::Service
|
|
|
|
|
2010-12-16 18:31:24 -05:00
|
|
|
requires :rackspace_api_key, :rackspace_username
|
2011-03-18 00:09:43 -04:00
|
|
|
recognizes :rackspace_auth_url, :rackspace_servicenet, :persistent
|
2011-01-07 21:14:39 -05:00
|
|
|
recognizes :provider # remove post deprecation
|
2010-09-08 16:50:23 -04:00
|
|
|
|
2011-01-07 18:41:51 -05:00
|
|
|
model_path 'fog/storage/models/rackspace'
|
2010-09-08 16:50:23 -04:00
|
|
|
model :directory
|
|
|
|
collection :directories
|
|
|
|
model :file
|
|
|
|
collection :files
|
|
|
|
|
2011-01-07 18:41:51 -05:00
|
|
|
request_path 'fog/storage/requests/rackspace'
|
2010-09-08 16:50:23 -04:00
|
|
|
request :delete_container
|
|
|
|
request :delete_object
|
|
|
|
request :get_container
|
|
|
|
request :get_containers
|
|
|
|
request :get_object
|
|
|
|
request :head_container
|
|
|
|
request :head_containers
|
|
|
|
request :head_object
|
|
|
|
request :put_container
|
|
|
|
request :put_object
|
|
|
|
|
|
|
|
module Utils
|
|
|
|
|
2010-11-05 14:37:12 -04:00
|
|
|
def cdn
|
2011-01-21 19:10:53 -05:00
|
|
|
@cdn ||= Fog::CDN.new(
|
|
|
|
:provider => 'Rackspace',
|
|
|
|
:rackspace_api_key => @rackspace_api_key,
|
2010-11-05 14:37:12 -04:00
|
|
|
:rackspace_username => @rackspace_username
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2010-09-08 16:50:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
include Utils
|
|
|
|
|
|
|
|
def self.data
|
|
|
|
@data ||= Hash.new do |hash, key|
|
|
|
|
hash[key] = {}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(options={})
|
2011-01-07 21:14:39 -05:00
|
|
|
unless options.delete(:provider)
|
|
|
|
location = caller.first
|
|
|
|
warning = "[yellow][WARN] Fog::Rackspace::Storage.new is deprecated, use Fog::Storage.new(:provider => 'Rackspace') instead[/]"
|
|
|
|
warning << " [light_black](" << location << ")[/] "
|
|
|
|
Formatador.display_line(warning)
|
|
|
|
end
|
|
|
|
|
2010-10-29 17:58:28 -04:00
|
|
|
require 'mime/types'
|
2010-11-05 14:37:12 -04:00
|
|
|
@rackspace_api_key = options[:rackspace_api_key]
|
2010-09-08 16:50:23 -04:00
|
|
|
@rackspace_username = options[:rackspace_username]
|
2011-03-10 14:16:55 -05:00
|
|
|
reset_data
|
|
|
|
end
|
|
|
|
|
|
|
|
def reset_data
|
|
|
|
self.class.data.delete(@rackspace_username)
|
2010-09-08 16:50:23 -04:00
|
|
|
@data = self.class.data[@rackspace_username]
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
|
|
|
include Utils
|
|
|
|
|
|
|
|
def initialize(options={})
|
2011-01-07 21:14:39 -05:00
|
|
|
unless options.delete(:provider)
|
|
|
|
location = caller.first
|
|
|
|
warning = "[yellow][WARN] Fog::Rackspace::Storage.new is deprecated, use Fog::Storage.new(:provider => 'Rackspace') instead[/]"
|
|
|
|
warning << " [light_black](" << location << ")[/] "
|
|
|
|
Formatador.display_line(warning)
|
|
|
|
end
|
|
|
|
|
2010-10-29 17:58:28 -04:00
|
|
|
require 'mime/types'
|
|
|
|
require 'json'
|
2010-11-05 14:37:12 -04:00
|
|
|
@rackspace_api_key = options[:rackspace_api_key]
|
|
|
|
@rackspace_username = options[:rackspace_username]
|
2010-09-08 16:50:23 -04:00
|
|
|
credentials = Fog::Rackspace.authenticate(options)
|
|
|
|
@auth_token = credentials['X-Auth-Token']
|
|
|
|
|
2010-11-01 14:50:30 -04:00
|
|
|
uri = URI.parse(credentials['X-Storage-Url'])
|
2011-03-18 00:09:43 -04:00
|
|
|
@host = options[:rackspace_servicenet] == true ? "snet-#{uri.host}" : uri.host
|
2010-11-01 14:50:30 -04:00
|
|
|
@path = uri.path
|
|
|
|
@port = uri.port
|
|
|
|
@scheme = uri.scheme
|
|
|
|
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", options[:persistent])
|
2010-09-08 16:50:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
2010-10-20 19:58:15 -04:00
|
|
|
@storage_connection.reset
|
2010-09-08 16:50:23 -04:00
|
|
|
end
|
|
|
|
|
2010-11-01 14:50:30 -04:00
|
|
|
def request(params, parse_json = true, &block)
|
2010-09-08 16:50:23 -04:00
|
|
|
begin
|
2010-11-01 14:50:30 -04:00
|
|
|
response = @connection.request(params.merge!({
|
2010-09-08 16:50:23 -04:00
|
|
|
:headers => {
|
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
'X-Auth-Token' => @auth_token
|
|
|
|
}.merge!(params[:headers] || {}),
|
2010-11-01 14:50:30 -04:00
|
|
|
:host => @host,
|
|
|
|
:path => "#{@path}/#{params[:path]}",
|
2010-09-08 16:50:23 -04:00
|
|
|
}), &block)
|
2010-11-29 23:07:47 -05:00
|
|
|
rescue Excon::Errors::HTTPStatusError => error
|
2010-09-08 16:50:23 -04:00
|
|
|
raise case error
|
|
|
|
when Excon::Errors::NotFound
|
|
|
|
Fog::Rackspace::Storage::NotFound.slurp(error)
|
|
|
|
else
|
|
|
|
error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if !response.body.empty? && parse_json && response.headers['Content-Type'] =~ %r{application/json}
|
|
|
|
response.body = JSON.parse(response.body)
|
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|