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/files.rb

95 lines
2.3 KiB
Ruby
Raw Normal View History

2010-10-04 17:02:08 -04:00
require 'fog/core/collection'
require 'fog/rackspace/models/storage/file'
module Fog
module Storage
class Rackspace
class Files < Fog::Collection
attribute :directory
attribute :limit
attribute :marker
attribute :path
attribute :prefix
model Fog::Storage::Rackspace::File
def all(options = {})
requires :directory
2010-11-04 14:12:44 -04:00
options = {
'limit' => limit,
'marker' => marker,
'path' => path,
'prefix' => prefix
2010-11-04 14:12:44 -04:00
}.merge!(options)
merge_attributes(options)
2010-03-08 19:19:48 -05:00
parent = directory.collection.get(
directory.key,
options
)
2010-03-08 19:19:48 -05:00
if parent
load(parent.files.map {|file| file.attributes})
else
nil
end
end
alias :each_file_this_page :each
def each
if !block_given?
self
else
subset = dup.all
subset.each_file_this_page {|f| yield f}
while subset.length == (subset.limit || 10000)
subset = subset.all(:marker => subset.last.key)
subset.each_file_this_page {|f| yield f}
end
self
end
end
2010-11-04 14:12:44 -04:00
def get(key, &block)
requires :directory
2010-11-04 14:12:44 -04:00
data = connection.get_object(directory.key, key, &block)
file_data = data.headers.merge({
:body => data.body,
:key => key
})
new(file_data)
rescue Fog::Storage::Rackspace::NotFound
nil
end
2011-06-10 13:53:20 -04:00
def get_url(key)
requires :directory
2011-06-10 13:53:20 -04:00
if self.directory.public_url
"#{self.directory.public_url}/#{Fog::Rackspace.escape(key, '/')}"
2011-06-10 13:53:20 -04:00
end
end
def head(key, options = {})
requires :directory
data = connection.head_object(directory.key, key)
file_data = data.headers.merge({
:key => key
})
new(file_data)
rescue Fog::Storage::Rackspace::NotFound
nil
end
def new(attributes = {})
requires :directory
super({ :directory => directory }.merge!(attributes))
end
end
end
end
end