Class: Eco::API::UseCases::Default::People::CleanUnknownTags

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

Constant Summary collapse

REGISTER_TAGS =
[
  "EVENT", "INJURY", "RISK", "CONTRACTOR", "PERMIT",
  "AUDIT", "JSEA",
  "TRAINING", "INDUCTION",
  "MEETING",  "PPE",  "CHEMICAL",
  "PLANT", "ASSET",
  "POLICY", "IDEA", "REPORTS"
]

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



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/eco/api/usecases/default/people/clean_unknown_tags_case.rb', line 14

def main(people, session, options, usecase)
  update   = session.new_job("main", "update", :update, usecase)
  people.each do |person|
    unknown_tags = person.filter_tags.reject { |tag| tag?(tag) }
    person.filter_tags -= unknown_tags
    removed_tag!(*unknown_tags)
    if (tag = default_tag(person)) && !tag?(tag)
      removed_tag!(tag)
      micro.refresh_default_tag(person.entry, person, options)
    end
    update.add(person)
  end

  log(:info) {
    msg = "Here list of the #{removed_tags.count} removed locations..."
    msg + "\n  • " + removed_tags.sort.join("\n  • ")
  }
end