Sha256: 0bf416f09fccb6eb2ce0c0406830f249803c608baa114a3306806e833a91506a

Contents?: true

Size: 923 Bytes

Versions: 5

Compression:

Stored size: 923 Bytes

Contents

module Eco
  module API
    module UseCases
      class DefaultCases
        class NewIdCase < BaseCase

          def process
            @cases.define("new-id", type: :sync) do |entries, people, session, options|
              job = session.job_group("main").new("update", 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)
                  person.external_id = entry.external_id
                  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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
eco-helpers-0.8.4 lib/eco/api/usecases/default_cases/new_id_case.rb
eco-helpers-0.8.3 lib/eco/api/usecases/default_cases/new_id_case.rb
eco-helpers-0.8.2 lib/eco/api/usecases/default_cases/new_id_case.rb
eco-helpers-0.8.1 lib/eco/api/usecases/default_cases/new_id_case.rb
eco-helpers-0.7.2 lib/eco/api/usecases/default_cases/new_id_case.rb