Sha256: feef3a278ad92aee64abc2f93dc2850ae190ba5f0fa468b412f7cdda8b3c6b81

Contents?: true

Size: 1.15 KB

Versions: 14

Compression:

Stored size: 1.15 KB

Contents

MOD_FILE_DIR = "file".freeze

def store_dir
  will_become_coded? ? coded_dir(@new_mod) : upload_dir
end

def retrieve_dir
  coded? ? coded_dir : upload_dir
end

# place for files of regular file cards
def upload_dir
  id ? "#{files_base_dir}/#{id}" : tmp_upload_dir
end

# place for files of mod file cards
def coded_dir new_mod=nil
  dir = File.join mod_dir(new_mod), MOD_FILE_DIR, codename.to_s
  FileUtils.mkdir_p dir
  dir
end

def mod_dir new_mod=nil
  mod_name = new_mod || mod
  dir = Mod.dirs.path(mod_name) || (mod_name.to_sym == :test && "test")

  raise Error, "can't find mod \"#{mod_name}\"" unless dir
  dir
end

def files_base_dir
  dir = bucket ? bucket_config[:subdirectory] : Card.paths["files"].existent.first
  dir || files_base_dir_configuration_error
end

def files_base_dir_configuration_error
  raise StandardError,
        "missing directory for file cache (default is `files` in deck root)"
end

# used in the indentifier
def file_dir
  if coded?
    ":#{codename}"
  elsif cloud?
    "(#{bucket})/#{file_id}"
  else
    "~#{file_id}"
  end
end

def public?
  who_can(:read).include? Card::AnyoneID
end

def file_id
  id? ? id : upload_cache_card.id
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
card-1.97.0.1 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.97.0 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.8 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.7 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.6 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.5 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.4 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.3 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.2 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.1 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.96.0 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.95.3 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.95.2 mod/carrierwave/set/abstract/attachment/paths.rb
card-1.95.1 mod/carrierwave/set/abstract/attachment/paths.rb