module Eco module API class UseCases class DefaultCases class UpdateDetailsCase < DefaultCase def process @cases.define("update-details", type: :sync) do |entries, people, session, options, usecase| job = session.job_group("main").new("update", usecase: usecase, type: :update, 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) core_excluded = ["supervisor_id"] core_excluded.push("email") if options.dig(:exclude, :email) entry.set_core(person, exclude: core_excluded) unless options.dig(:exclude, :core) entry.set_details(person) job.add(person) else session.logger.error("Entry(#{i}) - this person does not exist: #{entry.to_s(:identify)}") end end end end end end end end end