personal_file_uploader.rb 426 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
class PersonalFileUploader < FileUploader
  def self.dynamic_path_segment(model)
    File.join(CarrierWave.root, model_path(model))
  end

  private

  def secure_url
    File.join(self.class.model_path(model), secret, file.filename)
  end

  def self.model_path(model)
13 14 15 16 17
    if model
      File.join("/#{base_dir}", model.class.to_s.underscore, model.id.to_s)
    else
      File.join("/#{base_dir}", 'temp')
    end
18 19
  end
end