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 Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#initialize, type, #type

Methods inherited from Common::BaseLoader

<=>, created_at, #initialize, #name, name_only_once!, set_created_at!

Methods included from Common::ClassHelpers

#class_resolver, #descendants, #descendants?, #new_class, #resolve_class, #to_constant

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
25
26
# File 'lib/eco/api/usecases/default_cases/org_data_convert_case.rb', line 22

def main(people, session, options, usecase)
  @options = options
  @session = session
  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