Class: Eco::API::UseCases::DefaultCases::AnalysePeople

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

Instance Attribute Summary collapse

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

Constructor Details

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

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @options
end

#peopleObject (readonly)

Returns the value of attribute people.



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

def people
  @people
end

#sessionObject (readonly)

Returns the value of attribute session.



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

def session
  @session
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
# File 'lib/eco/api/usecases/default_cases/analyse_people_case.rb', line 7

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

  case
  when case_options[:identify_duplicates]
    identify_duplicates
  when case_options[:identify_unnamed]
    identify_unnamed
  else
    session.logger.info("No analysis operation was specified")
  end.tap do |people_involved|
    if people_involved
      to_csv(people_involved) if to_csv?
      create_people_backup(people_involved) if results_people_backup?
    end
  end
end