class ASF::MemApps

Constants

STEM

Public Class Methods

files() click to toggle source

All files

# File lib/whimsy/asf/memapps.rb, line 84
def self.files
  refresh
  @@files
end
find(person) click to toggle source

find the memapp for a person; return an array:

  • array of files that matched (possibly empty), array of stems that were tried
# File lib/whimsy/asf/memapps.rb, line 63
def self.find(person)
  found = [] # matches we found
  names = [] # names we tried
  [
    (person.icla.legal_name rescue nil),
    (person.icla.name rescue nil),
    person.id, # allow match on avalid
    person.member_name # this is slow
  ].uniq.each do |name|
    next unless name
    memapp = self.sanitize(name) # this may generate dupes, so we use uniq below
    names << memapp
    file = self.search(memapp)
    if file
      found << file
    end
  end
  return [found, names.uniq]
end
find1st(person) click to toggle source

find the name of the memapp for a person or nil

# File lib/whimsy/asf/memapps.rb, line 57
def self.find1st(person)
  self.find(person)[0].first
end
names() click to toggle source

list the names of the files (excluding any ones which record emeritus)

# File lib/whimsy/asf/memapps.rb, line 30
def self.names
  refresh
  @@files
end
sanitize(name) click to toggle source
# File lib/whimsy/asf/memapps.rb, line 35
def self.sanitize(name)
  # Don't transform punctuation into '-'
  ASF::Person.asciize(name.strip.downcase.gsub(/[.,()"]/, ''))
end
stems() click to toggle source

list the stems of the files

# File lib/whimsy/asf/memapps.rb, line 22
def self.stems
  refresh
  @@files.map do |file|
    file.sub(/\.\w+$/, '')
  end
end
update_cache(env) click to toggle source
# File lib/whimsy/asf/memapps.rb, line 17
def self.update_cache(env)
  ASF::DocumentUtils.update_cache(STEM, env)
end