1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/models/storage/file.rb

113 lines
3.1 KiB
Ruby
Raw Normal View History

2010-10-04 17:02:08 -04:00
require 'fog/core/model'
module Fog
module Storage
class Rackspace
class File < Fog::Model
identity :key, :aliases => 'name'
2010-11-08 19:48:14 -05:00
attribute :content_length, :aliases => ['bytes', 'Content-Length'], :type => :integer
attribute :content_type, :aliases => ['content_type', 'Content-Type']
attribute :etag, :aliases => ['hash', 'Etag']
2010-11-08 19:48:14 -05:00
attribute :last_modified, :aliases => ['last_modified', 'Last-Modified'], :type => :time
attribute :metadata
def body
attributes[:body] ||= if last_modified
collection.get(identity).body
else
''
end
end
def body=(new_body)
attributes[:body] = new_body
end
def directory
@directory
end
def copy(target_directory_key, target_file_key, options={})
requires :directory, :key
options['Content-Type'] ||= content_type if content_type
connection.copy_object(directory.key, key, target_directory_key, target_file_key, options)
target_directory = connection.directories.new(:key => target_directory_key)
target_directory.files.get(target_file_key)
end
def destroy
requires :directory, :key
connection.delete_object(directory.key, key)
true
end
remove_method :metadata
def metadata
attributes.reject {|key, value| !metadata_attribute?(key)}
end
remove_method :metadata=
def metadata=(new_metadata)
merge_attributes(new_metadata || {})
end
def owner=(new_owner)
if new_owner
attributes[:owner] = {
:display_name => new_owner['DisplayName'],
:id => new_owner['ID']
}
end
end
2010-11-18 14:18:46 -05:00
def public=(new_public)
new_public
end
def public_url
2011-06-10 13:53:20 -04:00
requires :key
self.collection.get_url(self.key)
end
def save(options = {})
requires :body, :directory, :key
options['Content-Type'] = content_type if content_type
options.merge!(metadata)
data = connection.put_object(directory.key, key, body, options)
refresh_attributes(data)
self.content_length = Fog::Storage.get_body_size(body)
self.content_type ||= Fog::Storage.get_content_type(body)
true
end
private
def directory=(new_directory)
@directory = new_directory
end
def metadata_attribute?(key)
key.to_s =~ /^X-Object-Meta-/
end
def refresh_attributes(data)
update_attributes_from(data)
remove_empty_metadata_attributes
end
def remove_empty_metadata_attributes
attributes.delete_if {|key, value| metadata_attribute?(key) && value.nil?}
end
def update_attributes_from(data)
merge_attributes(data.headers.reject {|key, value| ['Content-Length', 'Content-Type'].include?(key)})
end
end
end
end
end