Class: Eco::API::UseCases::DefaultCases::ToCsvCase

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/default_cases/to_csv_case.rb

Direct Known Subclasses

ToCsvDetailedCase

Instance Attribute Summary collapse

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 Attribute Details

#peopleObject (readonly)

Returns the value of attribute people.



5
6
7
# File 'lib/eco/api/usecases/default_cases/to_csv_case.rb', line 5

def people
  @people
end

Instance Method Details

#main(people, session, options, usecase) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/eco/api/usecases/default_cases/to_csv_case.rb', line 7

def main(people, session, options, usecase)
  options[:end_get] = false
  @people = people

  unless people && !people.empty?
    logger.warn("No source people to create the file... aborting!")
    return false
  end

  if options.dig(:export, :options, :split_schemas)
    by_schema.each do |id, people|
      sch_name = schemas.to_name(id)
      prefix = sch_name ? sch_name.gsub(" ", "_") : "No_Schema"
      create_file!("#{prefix}_#{file}", people)
    end
  else
    create_file!(file, people)
  end
end