Class: Eco::API::UseCases::DefaultCases::CreateDetailsCase

Inherits:
Eco::API::UseCases::DefaultCase show all
Defined in:
lib/eco/api/usecases/default_cases/create_details_case.rb

Instance Method Summary collapse

Methods inherited from Eco::API::UseCases::DefaultCase

#initialize

Constructor Details

This class inherits a constructor from Eco::API::UseCases::DefaultCase

Instance Method Details

#processObject



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/create_details_case.rb', line 7

def process
  @cases.define("create-details", type: :sync) do |entries, people, session, options, usecase|
    creation = session.job_group("main").new("create", usecase: usecase, type: :create, sets: [:core, :details])

    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("Entry(#{i}) - 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)
      end
    end
  end
end