Sha256: 79bce52a12d4e2d66f1c1d6158de12b485cb88235204f41ea25438d184c34fbf
Contents?: true
Size: 1.16 KB
Versions: 5
Compression:
Stored size: 1.16 KB
Contents
module Qa::Authorities class Local::FileBasedAuthority < Base attr_reader :subauthority def initialize(subauthority) @subauthority = subauthority end def search(q) r = q.blank? ? [] : terms.select { |term| /\b#{q.downcase}/.match(term[:term].downcase) } r.map do |res| { id: res[:id], label: res[:term] }.with_indifferent_access end end def all terms.map do |res| { id: res[:id], label: res[:term] }.with_indifferent_access end end def find(id) terms.find { |term| term[:id] == id } || {} end private def terms subauthority_hash = YAML.load(File.read(subauthority_filename)) terms = subauthority_hash.with_indifferent_access.fetch(:terms, []) normalize_terms(terms) end def subauthority_filename File.join(Local.subauthorities_path, "#{subauthority}.yml") end def normalize_terms(terms) terms.map do |term| if term.is_a? String { id: term, term: term }.with_indifferent_access else term[:id] ||= term[:term] term end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems