Class: Eco::API::UseCases::DefaultCases::CreateDetailsWithSupervisorCase

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/backup/create_details_with_supervisor_case.rb,
lib/eco/api/usecases/default_cases/create_details_with_supervisor_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(entries, people, session, options, usecase) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
# File 'lib/eco/api/usecases/default_cases/create_details_with_supervisor_case.rb', line 5

def main(entries, people, session, options, usecase)
  micro    = session.micro
  creation = session.new_job("main", "create", :create, usecase)
  supers   = session.new_job("post", "supers", :update, usecase, :core)

  micro.with_each_starter(entries, people, options, log_present: true) do |entry, person|
    creation.add(person)
    micro.set_core_with_supervisor(entry, person, people, supers, options)
    entry.set_details(person) unless options.dig(:exclude, :details)
  end
end

#processObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/eco/api/usecases/backup/create_details_with_supervisor_case.rb', line 7

def process
  # good candidate to do @cases.case("create-details").use.chain(@cases.case("set-supervisor").use)
  @cases.define("create-details-with-supervisor", type: :sync) do |entries, people, session, options, usecase|
    creation = session.job_group("main").new("create", usecase: usecase, type: :create, sets: [:core, :details])
    supers   = session.job_group("post").new("supers", usecase: usecase, type: :update, sets: :core)

    strict_search = session.config.people.strict_search? && (!options[:search]&.key?(:strict) || options.dig(:search, :strict))

    entries.each.with_index do |entry, i|
      if person = people.find(entry, strict: strict_search)
        session.logger.error("This person (id: '#{person.id}') already exists: #{entry.to_s(:identify)}")
      else
        person = session.new_person
        entry.set_core(person, exclude: "supervisor_id")
        entry.set_details(person)

        creation.add(person)

        # set supervisor
        if !(sup_id = entry.supervisor_id)
          person.supervisor_id = nil
        else
          if supervisor = people.person(id: sup_id, external_id: sup_id, email: sup_id)
            person.supervisor_id = supervisor.id
          else
            # delay setting supervisor if does not exit
            supers.add(person) do |person|
              person.supervisor_id = sup_id
            end
          end
        end

      end
    end
  end
end