Fog::Model
# File lib/fog/atmos/models/storage/file.rb, line 14 def body attributes[:body] ||= if objectid collection.get(identity).body else '' end end
# File lib/fog/atmos/models/storage/file.rb, line 22 def body=(new_body) attributes[:body] = new_body end
# File lib/fog/atmos/models/storage/file.rb, line 30 def copy(target_directory_key, target_file_key, options={}) target_directory = service.directories.new(:key => target_directory_key) target_directory.files.create( :key => target_file_key, :body => body ) end
# File lib/fog/atmos/models/storage/file.rb, line 38 def destroy requires :directory, :key service.delete_namespace([directory.key, key].join('/')) true end
# File lib/fog/atmos/models/storage/file.rb, line 26 def directory @directory end
# File lib/fog/atmos/models/storage/file.rb, line 49 def file_size data = meta_data meta_data.headers["x-emc-meta"].match(/size=\d+/).to_s.gsub(/size=/,"") end
# File lib/fog/atmos/models/storage/file.rb, line 44 def meta_data requires :directory, :key service.get_namespace([directory.key, key].join('/') + "?metadata/system") end
# File lib/fog/atmos/models/storage/file.rb, line 54 def public=(new_public) # NOOP - we don't need to flag files as public, getting the public URL for a file handles it. end
By default, expire in 5 years
# File lib/fog/atmos/models/storage/file.rb, line 59 def public_url(expires = (Time.now + 5 * 365 * 24 * 60 * 60)) file = directory.files.head(key) self.objectid = if file && file.to_s.strip != "" then file.attributes['x-emc-meta'].scan(/objectid=(\w+),/).flatten[0] else nil end if self.objectid && self.objectid.to_s.strip != "" klass = service.ssl? ? URI::HTTPS : URI::HTTP uri = klass.build(:host => service.host, :port => service.port.to_i, :path => "/rest/objects/#{self.objectid}" ) sb = "GET\n" sb += uri.path.downcase + "\n" sb += service.uid + "\n" sb += String(expires.to_i()) signature = service.sign( sb ) uri.query = "uid=#{CGI::escape(service.uid)}&expires=#{expires.to_i()}&signature=#{CGI::escape(signature)}" uri.to_s else nil end end
# File lib/fog/atmos/models/storage/file.rb, line 79 def save(options = {}) requires :body, :directory, :key directory.kind_of?(Directory) ? ns = directory.key : ns = directory ns += key options[:headers] ||= {} options[:headers]['Content-Type'] = content_type if content_type options[:body] = body begin data = service.post_namespace(ns, options) self.objectid = data.headers['location'].split('/')[-1] rescue => error if error.message =~ /The resource you are trying to create already exists./ data = service.put_namespace(ns, options) else raise error end end # merge_attributes(data.headers) true end
Generated with the Darkfish Rdoc Generator 2.