Class: Eco::API::UseCases::DefaultCases::HrisCase

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/backup/hris_case.rb,
lib/eco/api/usecases/default_cases/hris_case.rb

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#initialize, type, #type

Methods inherited from Common::BaseLoader

<=>, created_at, #initialize, #name, name_only_once!, set_created_at!

Methods included from Common::ClassHelpers

#class_resolver, #descendants, #descendants?, #new_class, #resolve_class, #to_constant

Constructor Details

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

Instance Method Details

#main(entries, 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
25
# File 'lib/eco/api/usecases/default_cases/hris_case.rb', line 5

def main(entries, people, session, options, usecase)
  micro    = session.micro
  creation = session.new_job("main", "create",  :create, usecase)
  update   = session.new_job("main", "update",  :update, usecase)
  supers   = session.new_job("post", "supers",  :update, usecase, :core)
  leavers  = session.new_job("post", "leavers", :update, usecase, :account)

  micro.with_each_leaver(entries, people, options) do |person|
    leavers.add(person) do |person|
      person.supervisor_id = nil
      person.       = nil if person.
    end
  end

  micro.with_each(entries, people, options) do |entry, person|
    person.new? ? creation.add(person) : update.add(person)
    micro.set_core_with_supervisor(entry, person, people, supers, options)
    entry.set_details(person) unless options.dig(:exclude, :details)
    micro.(entry, person, options)
  end
end

#processObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/eco/api/usecases/backup/hris_case.rb', line 7

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

    strict_search = session.config.people.strict_search? && (!options[:search]&.key?(:strict) || options.dig(:search, :strict))
    pgs           = session.policy_groups

    people.each_with_index  do |person, i|
      if !entries.find(person, strict: strict_search)
        leavers.add(person) do |person|
          person.supervisor_id = nil
          person.       = nil if person.
        end
      end
    end


    if session.config.people.default_usergroup?
      def_id  = pgs.to_id(session.config.people.default_usergroup)
    end

    entries.each_with_index do |entry, i|
      person = people.find(entry, strict: strict_search)
      person = session.new_person if create = !person

      unless options.dig(:exclude, :core) && !create
        ini_tags   = person.filter_tags || []

        core_attrs = ["name", "external_id", "email", "filter_tags"]
        core_excluded = core_attrs.map.select {|attr| options.dig(:exclude, attr.to_sym)}
        core_excluded.push("supervisor_id")

        entry.set_core(person, exclude: core_excluded)
        if session.tagtree && !options.dig(:exclude, :filter_tags)
          person.filter_tags = session.tagtree.user_tags(
            initial:          ini_tags,
            final:            person.filter_tags,
            preserve_custom:  true,
            add_custom:       true
          )
        end
      end

      entry.set_details(person) unless options.dig(:exclude, :details)

      unless options.dig(:exclude, :account)
         = !person.
        ini_pg_ids  = person.&.policy_group_ids || []

         = []
        .push("policy_group_ids") if options.dig(:exclude, :policy_groups) && !create

        entry.(person, exclude: )

        person..send_invites = options[:send_invites] if options.key?(:send_invites)

        unless options.dig(:exclude, :policy_groups) && !create
          end_pg_ids = person..policy_group_ids || []

          if  && def_id && !entry.policy_group_ids?
            # on account creation, if missing policy_group_ids column in the input
            # use default_usergroup, if it's defined
            end_pg_ids = [def_id]
          end

          # avoid false updates by preserving the original order
          person..policy_group_ids   = pgs.user_pg_ids(
            initial:         ini_pg_ids,
            final:           end_pg_ids
          )
        end

        person..permissions_custom = session.new_preset(person) unless !create && options.dig(:exclude, :abilities)

        unless options.dig(:exclude, :filter_tags) || entry.default_tag?
          if session.tagtree
            person..default_tag = session.tagtree.default_tag(*person.filter_tags)
          else
            tags = person.filter_tags || []
            person..default_tag = tags.first unless tags.length > 1
          end
        end
      end

      creation.add(person) if create
      update.add(person) unless create

      # set supervisor
      unless options.dig(:exclude, :core) || options.dig(:exclude, :supervisor)
        if !(sup_id = entry.supervisor_id)
          person.supervisor_id = nil
        else
          if supervisor = people.person(id: sup_id, external_id: sup_id, email: sup_id)
            person.supervisor_id = supervisor.id
          else
            # delay setting supervisor if does not exit
            supers.add(person) do |person|
              person.supervisor_id = sup_id
            end
          end
        end
      end

    end

  end


end