module Eco module API class MicroCases # Special snippet to decide if the `supervisor_id` is set now or in a later batch job `supers_job`. # @note delaying the setting of a `supervisor_id` can save errors when the supervisor still does not exit. # @param sup_id [nil, String] the **supervisor id** we should set on the `person`. # @param person [Ecoportal::API::V1::Person] the person we want to update, carrying the changes to be done. # @param people [Eco::API::Organization::People] target existing _People_ of the current update. # @param options [Hash] the options. # @yield [supervisor_id] callback when the supervisor_id is **unknown** (not `nil` nor any one's in `people`). # @yieldparam supervisor_id [String] the **unknown** `supervisor_id`. def set_supervisor(sup_id, person, people, options) unless options.dig(:exclude, :core) || options.dig(:exclude, :supervisor) micro.with_supervisor(sup_id, people) do |supervisor| if !sup_id person.supervisor_id = nil elsif supervisor person.supervisor_id = supervisor.id elsif !block_given? person.supervisor_id = sup_id else yield(sup_id) if block_given? end end end end end end end