Sha256: e03e74c5b4576fc8c707a0e85ffc712aae2947e33f81bc6d42b36bba30167972

Contents?: true

Size: 1.82 KB

Versions: 5

Compression:

Stored size: 1.82 KB

Contents

require_relative 'data_connection_helper'
require_relative 'error'
require_relative 'file_system_helper'

module Ftpd

  # Command handler base class
  
  class CommandHandler

    extend Forwardable

    include AsciiHelper
    include DataConnectionHelper
    include Error
    include FileSystemHelper

    COMMAND_FILENAME_PREFIX = 'cmd_'
    COMMAND_KLASS_PREFIX = 'Cmd'
    COMMAND_METHOD_PREFIX = 'cmd_'

    # param session [Session] The session

    def initialize(session)
      @session = session
    end

    # Return the commands implemented by this handler.  For example,
    # if the handler has the method "cmd_allo", this returns ['allo'].

    class << self
      include Memoizer
      def commands
        public_instance_methods.map(&:to_s).grep(/#{COMMAND_METHOD_PREFIX}/).map do |method|
          method.gsub(/^#{COMMAND_METHOD_PREFIX}/, '')
        end
      end
      memoize :commands
    end

    def_delegator 'self.class', :commands

    private

    attr_reader :session

    # Forward methods to the session

    def_delegators :@session,
    :close_data_server_socket,
    :command_not_needed,
    :config,
    :data_channel_protection_level,
    :data_channel_protection_level=,
    :data_hostname,
    :data_port,
    :data_server,
    :data_server=,
    :data_type,
    :data_type=,
    :ensure_logged_in,
    :ensure_not_epsv_all,
    :ensure_protocol_supported,
    :ensure_tls_supported,
    :epsv_all=,
    :execute_command,
    :expect,
    :file_system,
    :list,
    :list_path,
    :logged_in,
    :logged_in=,
    :login,
    :mode=,
    :name_list,
    :name_prefix,
    :name_prefix=,
    :protection_buffer_size_set,
    :protection_buffer_size_set=,
    :pwd,
    :reply,
    :server_name_and_version,
    :set_active_mode_address,
    :socket,
    :structure=,
    :supported_commands,
    :tls_enabled?
 
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ftpd-0.16.0 lib/ftpd/command_handler.rb
ftpd-0.15.0 lib/ftpd/command_handler.rb
ftpd-0.14.0 lib/ftpd/command_handler.rb
ftpd-0.13.0 lib/ftpd/command_handler.rb
ftpd-0.12.0 lib/ftpd/command_handler.rb