2010-12-16 14:24:52 -05:00
|
|
|
require File.join(File.dirname(__FILE__), 'core')
|
|
|
|
|
2009-10-10 22:05:17 -04:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
2010-11-21 05:56:41 -05:00
|
|
|
|
2010-09-07 15:21:16 -04:00
|
|
|
extend Fog::Provider
|
|
|
|
|
2011-01-07 18:09:46 -05:00
|
|
|
service(:cdn, 'rackspace/cdn')
|
|
|
|
service(:compute, 'rackspace/compute')
|
|
|
|
service(:files, 'rackspace/files')
|
|
|
|
service(:servers, 'rackspace/servers')
|
2011-01-07 18:34:20 -05:00
|
|
|
service(:storage, 'storage/rackspace')
|
2010-09-07 15:21:16 -04:00
|
|
|
|
2010-03-19 21:29:42 -04:00
|
|
|
def self.authenticate(options)
|
2010-08-19 15:28:10 -04:00
|
|
|
rackspace_auth_url = options[:rackspace_auth_url] || "auth.api.rackspacecloud.com"
|
|
|
|
connection = Fog::Connection.new("https://" + rackspace_auth_url)
|
2010-06-12 16:21:32 -04:00
|
|
|
@rackspace_api_key = options[:rackspace_api_key]
|
|
|
|
@rackspace_username = options[:rackspace_username]
|
2010-03-19 21:29:42 -04:00
|
|
|
response = connection.request({
|
|
|
|
:expects => 204,
|
|
|
|
:headers => {
|
|
|
|
'X-Auth-Key' => @rackspace_api_key,
|
|
|
|
'X-Auth-User' => @rackspace_username
|
|
|
|
},
|
2010-08-19 15:28:10 -04:00
|
|
|
:host => rackspace_auth_url,
|
2010-03-19 21:29:42 -04:00
|
|
|
:method => 'GET',
|
|
|
|
:path => 'v1.0'
|
|
|
|
})
|
|
|
|
response.headers.reject do |key, value|
|
|
|
|
!['X-Server-Management-Url', 'X-Storage-Url', 'X-CDN-Management-Url', 'X-Auth-Token'].include?(key)
|
2009-11-08 01:29:25 -05:00
|
|
|
end
|
2009-10-10 22:05:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|