Class: CarrierWave::Storage::File
- Defined in:
 - lib/carrierwave/storage/file.rb
 
Overview
File storage stores file to the Filesystem (surprising, no?). There’s really not much to it, it uses the store_dir defined on the uploader as the storage location. That’s pretty much it.
Instance Attribute Summary
Attributes inherited from Abstract
Instance Method Summary collapse
- 
  
    
      #cache!(new_file)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Stores given file to cache directory.
 - #clean_cache!(seconds) ⇒ Object
 - 
  
    
      #delete_dir!(path)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Deletes a cache dir.
 - 
  
    
      #initialize  ⇒ File 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of File.
 - 
  
    
      #retrieve!(identifier)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Retrieve the file from its store path.
 - 
  
    
      #retrieve_from_cache!(identifier)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Retrieves the file with the given cache_name from the cache.
 - 
  
    
      #store!(file)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Move the file to the uploader’s store path.
 
Methods inherited from Abstract
Constructor Details
#initialize ⇒ File
Returns a new instance of File.
      10 11 12 13  | 
    
      # File 'lib/carrierwave/storage/file.rb', line 10 def initialize(*) super @cache_called = nil end  | 
  
Instance Method Details
#cache!(new_file) ⇒ Object
Stores given file to cache directory.
Parameters
- new_file (File, IOString, Tempfile)
 - 
any kind of file object
 
Returns
- CarrierWave::SanitizedFile
 - 
a sanitized file
 
      67 68 69 70 71 72 73 74 75 76 77  | 
    
      # File 'lib/carrierwave/storage/file.rb', line 67 def cache!(new_file) new_file.move_to(::File.(uploader.cache_path, uploader.root), uploader., uploader., true) rescue Errno::EMLINK, Errno::ENOSPC => e raise(e) if @cache_called @cache_called = true # NOTE: Remove cached files older than 10 minutes clean_cache!(600) cache!(new_file) end  | 
  
#clean_cache!(seconds) ⇒ Object
      111 112 113 114 115 116 117 118 119 120 121  | 
    
      # File 'lib/carrierwave/storage/file.rb', line 111 def clean_cache!(seconds) Dir.glob(::File.(::File.join(uploader.cache_dir, '*'), uploader.root)).each do |dir| # generate_cache_id returns key formatted TIMEINT-PID(-COUNTER)-RND matched = dir.scan(/(\d+)-\d+-\d+(?:-\d+)?/).first next unless matched time = Time.at(matched[0].to_i) if time < (Time.now.utc - seconds) FileUtils.rm_rf(dir) end end end  | 
  
#delete_dir!(path) ⇒ Object
Deletes a cache dir
      97 98 99 100 101 102 103 104 105 106 107 108 109  | 
    
      # File 'lib/carrierwave/storage/file.rb', line 97 def delete_dir!(path) if path begin Dir.rmdir(::File.(path, uploader.root)) rescue Errno::ENOENT # Ignore: path does not exist rescue Errno::ENOTDIR # Ignore: path is not a dir rescue Errno::ENOTEMPTY, Errno::EEXIST # Ignore: dir is not empty end end end  | 
  
#retrieve!(identifier) ⇒ Object
Retrieve the file from its store path
Parameters
- identifier (String)
 - 
the filename of the file
 
Returns
- CarrierWave::SanitizedFile
 - 
a sanitized file
 
      51 52 53 54  | 
    
      # File 'lib/carrierwave/storage/file.rb', line 51 def retrieve!(identifier) path = ::File.(uploader.store_path(identifier), uploader.root) CarrierWave::SanitizedFile.new(path) end  | 
  
#retrieve_from_cache!(identifier) ⇒ Object
Retrieves the file with the given cache_name from the cache.
Parameters
- cache_name (String)
 - 
uniquely identifies a cache file
 
Raises
- CarrierWave::InvalidParameter
 - 
if the cache_name is incorrectly formatted.
 
      90 91 92  | 
    
      # File 'lib/carrierwave/storage/file.rb', line 90 def retrieve_from_cache!(identifier) CarrierWave::SanitizedFile.new(::File.(uploader.cache_path(identifier), uploader.root)) end  | 
  
#store!(file) ⇒ Object
Move the file to the uploader’s store path.
By default, store!() uses copy_to(), which operates by copying the file from the cache to the store, then deleting the file from the cache. If move_to_store() is overridden to return true, then store!() uses move_to(), which simply moves the file from cache to store. Useful for large files.
Parameters
- file (CarrierWave::SanitizedFile)
 - 
the file to store
 
Returns
- CarrierWave::SanitizedFile
 - 
a sanitized file
 
      31 32 33 34 35 36 37 38  | 
    
      # File 'lib/carrierwave/storage/file.rb', line 31 def store!(file) path = ::File.(uploader.store_path, uploader.root) if uploader.move_to_store file.move_to(path, uploader., uploader.) else file.copy_to(path, uploader., uploader.) end end  |