Class: Eco::API::UseCases::DefaultCases::OrgDataConvertCase

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

Instance Attribute Summary

Attributes inherited from Common::Loaders::CaseBase

#usecase

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#initialize, type, #type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!

Methods inherited from Common::Loaders::Base

<=>, created_at, #initialize, #name, 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(people, session, options, usecase) ⇒ Object



22
23
24
# File 'lib/eco/api/usecases/default_cases/org_data_convert_case.rb', line 22

def main(people, session, options, usecase)
  org_data_convert(people)
end

#org_data_convert(people) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/eco/api/usecases/default_cases/org_data_convert_case.rb', line 5

def org_data_convert(people)
  pp "Going to convert data from '#{source_enviro}' to '#{ASSETS.active_config}'"
  puts "\n"
  people.each.with_index do |person, i|
    if (i % 10 == 0)
      percent = i * 100 / people.length
      print "Processing: #{percent.round}% (#{i}/#{people.length} entries)\r"
      $stdout.flush
    end

    person.id = nil
    details_convert!(person)
    (person)
  end
  people
end