Module: Ftpd::DiskFileSystem::Accessors

Included in:
Base
Defined in:
lib/ftpd/disk_file_system.rb

Overview

DiskFileSystem mixin providing file attributes. These are used, alone or in combination, by nearly every command that accesses the disk file system.

Instance Method Summary collapse

Instance Method Details

#accessible?(ftp_path) ⇒ Boolean

Return true if the path is accessible to the user. This will be called for put, get and directory lists, so the file or directory named by the path may not exist.

Parameters:

  • ftp_path (String)

    The virtual path

Returns:

  • (Boolean)


48
49
50
51
52
53
# File 'lib/ftpd/disk_file_system.rb', line 48

def accessible?(ftp_path)
  # The server should never try to access a path outside of the
  # directory (such as '../foo'), but if it does, we'll catch it
  # here.
  expand_ftp_path(ftp_path).start_with?(@data_dir)
end

#directory?(ftp_path) ⇒ Boolean

Return true if the path exists and is a directory.

Parameters:

  • ftp_path (String)

    The virtual path

Returns:

  • (Boolean)


67
68
69
# File 'lib/ftpd/disk_file_system.rb', line 67

def directory?(ftp_path)
  File.directory?(expand_ftp_path(ftp_path))
end

#exists?(ftp_path) ⇒ Boolean

Return true if the file or directory path exists.

Parameters:

  • ftp_path (String)

    The virtual path

Returns:

  • (Boolean)


59
60
61
# File 'lib/ftpd/disk_file_system.rb', line 59

def exists?(ftp_path)
  File.exist?(expand_ftp_path(ftp_path))
end