Sha256: c4a6233148f2307cf9c60f07ee241452cdddc937401951753bae707eb022c595
Contents?: true
Size: 1.38 KB
Versions: 4
Compression:
Stored size: 1.38 KB
Contents
module NdrError # Module to help with searching through fingerprints / logs. module Finder def search(keywords) scope = Fingerprint.includes(:error_logs) return scope unless keywords && keywords.any? # Fetch the collection of fingerprint matches: records = scope.filter_by_keywords(keywords).to_a # Add to that fingerprints with log records that matched the search: log_print_ids = Log.filter_by_keywords(keywords).pluck(:error_fingerprintid) records.concat scope.find(log_print_ids) order(records) end # Proxy to paginate fingerprint results, filtering them # if search keywords have been supplied. def paginate(keywords, page) search(keywords).paginate(page: page, per_page: Fingerprint.per_page) end # Sends finds through to the fingerprint resource. def find(id) Fingerprint.find(id) end private # Intelligent search order: # # Bring records that have matched multiple times # to the front, but attempt to maintain the # created_at DESC order within groups. # def order(records) grouped = records.group_by { |record| records.count(record) }.each do |_count, group| group.sort! do |a, b| [b.updated_at, b.error_fingerprintid] <=> [a.updated_at, a.error_fingerprintid] end end grouped.values.flatten.uniq end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ndr_error-1.1.2 | lib/ndr_error/finder.rb |
ndr_error-1.1.1 | lib/ndr_error/finder.rb |
ndr_error-1.0.1 | lib/ndr_error/finder.rb |
ndr_error-1.0.0 | lib/ndr_error/finder.rb |