Class: Eco::API::UseCases::Samples::Drivers::UrlPull

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/samples/drivers/url_pull_sample.rb,
lib/eco/api/usecases/samples/drivers/cli/url_pull_cli.rb

Defined Under Namespace

Classes: Cli, WrongConst

Constant Summary collapse

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

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

Constructor Details

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

Instance Method Details

#main(*_args) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/eco/api/usecases/samples/drivers/url_pull_sample.rb', line 10

def main(*_args)
  options[:end_get] = false
  require_dependencies

  if (response = get(URI(target_url), **auth_params))
    to_csv(response.body, out_filename)
  else
    log(:error) { "Could not pull from url: #{target_url}" }
    exit 1
  end
end