Class: Eco::API::UseCases::Samples::Drivers::Sftp

Inherits:
Common::Loaders::UseCase show all
Includes:
Lib::Files::FilePattern, Lib::Files::Sftp
Defined in:
lib/eco/api/usecases/samples/drivers/sftp_sample.rb,
lib/eco/api/usecases/samples/drivers/cli/sftp_cli.rb

Overview

rubocop:disable Naming/AccessorMethodName

Direct Known Subclasses

DefaultCases::Samples::Sftp

Defined Under Namespace

Classes: Cli

Constant Summary

Constants included from Lib::Files::FilePattern

Lib::Files::FilePattern::CONST_REFERRAL

Instance Attribute Summary

Attributes included from Lib::Files::FilePattern

#options

Attributes included from Language::AuxiliarLogger

#logger

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#cli_apply!, #initialize

Methods included from Common::Loaders::UseCase::CliIdentify

#cli, #cli!

Methods included from Common::Loaders::UseCase::TargetModel

#target_model

Methods included from Common::Loaders::UseCase::Type

#type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!, original_name

Methods inherited from Common::Loaders::Base

<=>, created_at, #initialize, set_created_at!

Methods included from Language::Klass::InheritableClassVars

#inheritable_attrs, #inheritable_class_vars, #inherited

Methods included from Language::Klass::Naming

#instance_variable_name, #to_constant

Methods included from Language::Klass::Hierarchy

#descendants, #descendants?

Methods included from Language::Klass::Builder

#new_class

Methods included from Language::Klass::Uid

#uid

Methods included from Language::Klass::Resolver

#class_resolver, #resolve_class

Methods included from Language::Klass::Const

#if_const, #redef_without_warning

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



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

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