Class: Eco::API::UseCases::Default::People::SwitchSupervisorCase

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/default/people/switch_supervisor_case.rb

Instance Attribute Summary

Attributes included from Language::AuxiliarLogger

#logger

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

cli, cli!, #cli_apply!, #initialize, type, #type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!

Methods inherited from Common::Loaders::Base

<=>, created_at, #initialize, set_created_at!

Methods included from Common::ClassHelpers

#class_resolver, #descendants, #descendants?, #inheritable_attrs, #inheritable_class_vars, #inherited, #instance_variable_name, #new_class, #resolve_class, #to_constant

Methods included from Language::AuxiliarLogger

#log

Constructor Details

This class inherits a constructor from Eco::API::Common::Loaders::UseCase

Instance Method Details

#main(people, session, _options, usecase) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/eco/api/usecases/default/people/switch_supervisor_case.rb', line 5

def main(people, session, _options, usecase)
  supers   = session.new_job("main", "supers", :update, usecase, :core)

  old_sup, new_sup = get_supers(people).tap do |sups|
    inform(*sups)
  end

  micro.with_each_subordinate(old_sup, people) do |subordinate|
    subordinate.supervisor_id = new_sup&.id
    supers.add(subordinate)
  end.tap do |subordinates|
    next unless subordinates.empty?

    sup_str = "#{old_sup.external_id} (#{old_sup.name} - #{old_sup.email})"
    log(:error) {
      "There are no subordinates for supervisor #{sup_str}. Aborting..."
    }
    exit(1)
  end
end