mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
151 lines
4.6 KiB
Ruby
151 lines
4.6 KiB
Ruby
module Fog
|
|
module Rackspace
|
|
class Storage < Fog::Service
|
|
|
|
requires :rackspace_api_key, :rackspace_username
|
|
|
|
model_path 'fog/rackspace/models/storage'
|
|
model :directory
|
|
collection :directories
|
|
model :file
|
|
collection :files
|
|
|
|
request_path 'fog/rackspace/requests/storage'
|
|
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
|
|
|
|
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
|
|
end
|
|
# metadata[:headers]['Content-MD5'] = Base64.encode64(Digest::MD5.digest(metadata[:body])).strip
|
|
metadata
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
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]
|
|
end
|
|
|
|
end
|
|
|
|
class Real
|
|
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)
|
|
begin
|
|
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]}",
|
|
}))
|
|
rescue Excon::Errors::Error => error
|
|
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
|
|
|
|
def storage_request(params, parse_json = true, &block)
|
|
begin
|
|
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)
|
|
rescue Excon::Errors::Error => error
|
|
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
|