Class: Eco::API::UseCases::DefaultCases::CleanUnknownTags

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

Constant Summary collapse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#initialize, type, #type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!

Methods inherited from Common::Loaders::Base

<=>, created_at, #initialize, #name, 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

Constructor Details

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

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



16
17
18
# File 'lib/eco/api/usecases/default_cases/clean_unknown_tags_case.rb', line 16

def options
  @options
end

#sessionObject (readonly)

Returns the value of attribute session.



16
17
18
# File 'lib/eco/api/usecases/default_cases/clean_unknown_tags_case.rb', line 16

def session
  @session
end

Instance Method Details

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



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/eco/api/usecases/default_cases/clean_unknown_tags_case.rb', line 18

def main(people, session, options, usecase)
  @session = session; @options = options

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