2015-10-10 09:48:18 +02:00
|
|
|
class PaperSearch < ActiveRecord::Base
|
2015-10-05 21:12:59 +02:00
|
|
|
|
2015-10-10 09:48:18 +02:00
|
|
|
def to_definition
|
|
|
|
options = {paper_type: paper_type, originator: originator, sort_by: sort_by}
|
|
|
|
PaperSearch.definition(query, options)
|
2015-10-05 22:13:53 +02:00
|
|
|
end
|
|
|
|
|
2015-10-05 21:12:59 +02:00
|
|
|
def self.definition(q, options={})
|
|
|
|
Elasticsearch::DSL::Search.search do
|
|
|
|
|
|
|
|
sort do
|
2016-03-26 13:40:39 +01:00
|
|
|
if options[:sort_by] == 'score'
|
|
|
|
by '_score'
|
2015-10-05 21:12:59 +02:00
|
|
|
end
|
2016-03-26 13:40:39 +01:00
|
|
|
by :published_at, order: 'desc'
|
2015-10-05 21:12:59 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
query do
|
|
|
|
# search query
|
|
|
|
unless q.blank?
|
|
|
|
multi_match do
|
|
|
|
query q
|
|
|
|
fields ["name", "content"]
|
|
|
|
end
|
|
|
|
else
|
|
|
|
match_all
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# apply filter after aggregations
|
|
|
|
post_filter do
|
|
|
|
bool do
|
|
|
|
must { term paper_type: options[:paper_type] } if options[:paper_type].present?
|
|
|
|
must { term originator: options[:originator] } if options[:originator].present?
|
|
|
|
# catchall when no filters set
|
2015-10-05 22:13:53 +02:00
|
|
|
must { match_all } unless (options[:paper_type].present? || options[:originator].present?)
|
2015-10-05 21:12:59 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
aggregation :paper_types do
|
|
|
|
# filter by originator
|
|
|
|
f = Elasticsearch::DSL::Search::Filters::Bool.new
|
|
|
|
f.must { match_all }
|
|
|
|
f.must { term originator: options[:originator] } if options[:originator].present?
|
|
|
|
filter f.to_hash do
|
|
|
|
aggregation :paper_types do
|
|
|
|
terms do
|
|
|
|
field 'paper_type'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
aggregation :originators do
|
|
|
|
# filter by paper_type
|
|
|
|
f = Elasticsearch::DSL::Search::Filters::Bool.new
|
|
|
|
f.must { match_all }
|
|
|
|
f.must { term paper_type: options[:paper_type] } if options[:paper_type].present?
|
|
|
|
filter f.to_hash do
|
|
|
|
aggregation :originators do
|
|
|
|
terms do
|
|
|
|
field 'originator'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|