Class: Eco::API::UseCases::DefaultCases::Samples::Sftp

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/default_cases/samples/sftp_case.rb,
lib/eco/api/usecases/default_cases/samples/cli/sftp_cli.rb

Overview

rubocop:disable Naming/AccessorMethodName

Defined Under Namespace

Classes: Cli, MissRemoteFolder, WrongConst

Constant Summary collapse

CONST_REFERRAL =
/^(?:::)?(?:[A-Z][a-zA-Z0-9_]*(?:::[A-Z][a-zA-Z0-9_]*)*)$/.freeze

Instance Attribute Summary

Attributes included from Language::AuxiliarLogger

#logger

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

cli, cli!, #cli_apply!, #initialize, type, #type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!

Methods inherited from Common::Loaders::Base

<=>, created_at, #initialize, set_created_at!

Methods included from Common::ClassHelpers

#class_resolver, #descendants, #descendants?, #inheritable_attrs, #inheritable_class_vars, #inherited, #instance_variable_name, #new_class, #resolve_class, #to_constant

Methods included from Language::AuxiliarLogger

#log

Constructor Details

This class inherits a constructor from Eco::API::Common::Loaders::UseCase

Instance Method Details

#main(session, options, _usecase) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/eco/api/usecases/default_cases/samples/sftp_case.rb', line 12

def main(session, options, _usecase)
  options[:end_get] = false
  raise "The SFTP is not configured" unless session.sftp?

  case options.dig(:sftp, :command)
  when :list
    list_folder
  when :get
    get_files
  when :get_last
    get_last
  when :archive
    archive_files
  end
end