2010-03-19 21:29:42 -04:00
|
|
|
require 'fog/rackspace/files'
|
|
|
|
require 'fog/rackspace/servers'
|
|
|
|
|
2009-10-10 22:05:17 -04:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
|
2010-03-19 21:29:42 -04:00
|
|
|
def self.authenticate(options)
|
|
|
|
connection = Fog::Connection.new("https://auth.api.rackspacecloud.com")
|
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
|
|
|
|
},
|
|
|
|
:host => 'auth.api.rackspacecloud.com',
|
|
|
|
: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
|