fog--fog/lib/fog/rackspace/files.rb

137 lines
4.1 KiB
Ruby
Raw Normal View History

2009-10-11 20:37:25 +00:00
module Fog
module Rackspace
module Files
extend Fog::Service
requires :rackspace_api_key, :rackspace_username
model_path 'fog/rackspace/models/files'
model 'directory'
model 'directories'
model 'file'
model 'files'
request_path 'fog/rackspace/requests/files'
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'
2009-10-11 20:37:25 +00:00
2010-06-12 22:31:17 +00:00
module Utils
2010-06-12 22:31:17 +00:00
def parse_data(data)
metadata = {
:body => nil,
:headers => {}
}
if data.is_a?(String)
metadata[:body] = data
metadata[:headers]['Content-Length'] = metadata[:body].size.to_s
else
filename = ::File.basename(data.path)
unless (mime_types = MIME::Types.of(filename)).empty?
metadata[:headers]['Content-Type'] = mime_types.first.content_type
end
metadata[:body] = data.read
metadata[:headers]['Content-Length'] = ::File.size(data.path).to_s
2009-10-31 17:59:50 +00:00
end
2010-06-12 22:31:17 +00:00
# metadata[:headers]['Content-MD5'] = Base64.encode64(Digest::MD5.digest(metadata[:body])).strip
metadata
2009-10-31 17:59:50 +00:00
end
2010-06-12 22:31:17 +00:00
2009-10-31 17:59:50 +00:00
end
class Mock
include Collections
2010-06-12 22:31:17 +00:00
include Utils
def self.data
@data ||= Hash.new do |hash, key|
hash[key] = {}
end
end
def self.reset_data(keys=data.keys)
for key in [*keys]
data.delete(key)
end
end
def initialize(options={})
@rackspace_username = options[:rackspace_username]
@data = self.class.data[@rackspace_username]
2009-10-11 20:37:25 +00:00
end
2009-10-11 20:37:25 +00:00
end
class Real
include Collections
2010-06-12 22:31:17 +00:00
include Utils
def initialize(options={})
credentials = Fog::Rackspace.authenticate(options)
@auth_token = credentials['X-Auth-Token']
if(credentials['X-CDN-Management-Url'])
cdn_uri = URI.parse(credentials['X-CDN-Management-Url'])
@cdn_host = cdn_uri.host
@cdn_path = cdn_uri.path
@cdn_port = cdn_uri.port
@cdn_scheme = cdn_uri.scheme
@cdn_connection = Fog::Connection.new("#{@cdn_scheme}://#{@cdn_host}:#{@cdn_port}", options[:persistent])
end
storage_uri = URI.parse(credentials['X-Storage-Url'])
@storage_host = storage_uri.host
@storage_path = storage_uri.path
@storage_port = storage_uri.port
@storage_scheme = storage_uri.scheme
@storage_connection = Fog::Connection.new("#{@storage_scheme}://#{@storage_host}:#{@storage_port}", options[:persistent])
end
def reload
@connection.reset
end
def cdn_request(params)
response = @cdn_connection.request(params.merge!({
:headers => {
'Content-Type' => 'application/json',
'X-Auth-Token' => @auth_token
}.merge!(params[:headers] || {}),
:host => @cdn_host,
:path => "#{@cdn_path}/#{params[:path]}",
}))
if !response.body.empty? && parse_json && response.headers['Content-Type'] =~ %r{application/json}
response.body = JSON.parse(response.body)
end
response
end
def storage_request(params, parse_json = true, &block)
response = @storage_connection.request(params.merge!({
:headers => {
'Content-Type' => 'application/json',
'X-Auth-Token' => @auth_token
}.merge!(params[:headers] || {}),
:host => @storage_host,
:path => "#{@storage_path}/#{params[:path]}",
}), &block)
if !response.body.empty? && parse_json && response.headers['Content-Type'] =~ %r{application/json}
response.body = JSON.parse(response.body)
end
response
end
end
2009-10-11 20:37:25 +00:00
end
end
end