Class: Dragonfly::DataStorage::FileDataStore
- Inherits:
-
Object
- Object
- Dragonfly::DataStorage::FileDataStore
- Includes:
- Configurable
- Defined in:
- lib/dragonfly/data_storage/file_data_store.rb
Defined Under Namespace
Classes: UnableToFormUrl
Instance Method Summary (collapse)
- - (Object) destroy(relative_path)
- - (Object) disambiguate(path)
- - (Object) retrieve(relative_path)
- - (Object) store(temp_object, opts = {})
- - (Object) url_for(relative_path, opts = {})
Methods included from Configurable
Instance Method Details
- (Object) destroy(relative_path)
50 51 52 53 54 55 56 57 58 59 |
# File 'lib/dragonfly/data_storage/file_data_store.rb', line 50 def destroy(relative_path) validate_uid!(relative_path) path = absolute(relative_path) FileUtils.rm path FileUtils.rm_f (path) FileUtils.rm_f (path) purge_empty_directories(relative_path) rescue Errno::ENOENT => e raise DataNotFound, e. end |
- (Object) disambiguate(path)
74 75 76 77 78 79 |
# File 'lib/dragonfly/data_storage/file_data_store.rb', line 74 def disambiguate(path) dirname = File.dirname(path) basename = File.basename(path, '.*') extname = File.extname(path) "#{dirname}/#{basename}_#{(Time.now.usec*10 + rand(100)).to_s(32)}#{extname}" end |
- (Object) retrieve(relative_path)
39 40 41 42 43 44 45 46 47 48 |
# File 'lib/dragonfly/data_storage/file_data_store.rb', line 39 def retrieve(relative_path) validate_uid!(relative_path) path = absolute(relative_path) pathname = Pathname.new(path) raise DataNotFound, "couldn't find file #{path}" unless pathname.exist? [ pathname, ( ? (path) : {}) ] end |
- (Object) store(temp_object, opts = {})
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/dragonfly/data_storage/file_data_store.rb', line 17 def store(temp_object, opts={}) relative_path = if opts[:path] opts[:path] else filename = temp_object.name || 'file' relative_path = relative_path_for(filename) end begin path = absolute(relative_path) until !File.exist?(path) path = disambiguate(path) end temp_object.to_file(path).close (path, temp_object.) if rescue Errno::EACCES => e raise UnableToStore, e. end relative(path) end |
- (Object) url_for(relative_path, opts = {})
61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/dragonfly/data_storage/file_data_store.rb', line 61 def url_for(relative_path, opts={}) if server_root.nil? raise NotConfigured, "you need to configure server_root for #{self.class.name} in order to form urls" else _, __, path = absolute(relative_path).partition(server_root) if path.empty? raise UnableToFormUrl, "couldn't form url for uid #{relative_path.inspect} with root_path #{root_path.inspect} and server_root #{server_root.inspect}" else path end end end |