2019-07-27 04:42:08 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SearchQueryTransformer < Parslet::Transform
|
2023-09-01 09:43:12 +02:00
|
|
|
SUPPORTED_PREFIXES = %w(
|
|
|
|
has
|
|
|
|
is
|
|
|
|
language
|
|
|
|
from
|
|
|
|
before
|
|
|
|
after
|
|
|
|
during
|
|
|
|
).freeze
|
|
|
|
|
2019-07-27 04:42:08 +02:00
|
|
|
class Query
|
2023-09-01 09:43:12 +02:00
|
|
|
attr_reader :must_not_clauses, :must_clauses, :filter_clauses
|
2019-07-27 04:42:08 +02:00
|
|
|
|
|
|
|
def initialize(clauses)
|
2023-09-01 09:43:12 +02:00
|
|
|
grouped = clauses.compact.chunk(&:operator).to_h
|
2019-07-27 04:42:08 +02:00
|
|
|
@must_not_clauses = grouped.fetch(:must_not, [])
|
|
|
|
@must_clauses = grouped.fetch(:must, [])
|
2022-02-14 00:17:09 +01:00
|
|
|
@filter_clauses = grouped.fetch(:filter, [])
|
2019-07-27 04:42:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def apply(search)
|
2023-09-01 09:43:12 +02:00
|
|
|
must_clauses.each { |clause| search = search.query.must(clause.to_query) }
|
|
|
|
must_not_clauses.each { |clause| search = search.query.must_not(clause.to_query) }
|
|
|
|
filter_clauses.each { |clause| search = search.filter(**clause.to_query) }
|
2019-07-27 04:42:08 +02:00
|
|
|
search.query.minimum_should_match(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Operator
|
|
|
|
class << self
|
|
|
|
def symbol(str)
|
|
|
|
case str
|
2023-08-24 16:40:04 +02:00
|
|
|
when '+', nil
|
2019-07-27 04:42:08 +02:00
|
|
|
:must
|
|
|
|
when '-'
|
|
|
|
:must_not
|
|
|
|
else
|
|
|
|
raise "Unknown operator: #{str}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TermClause
|
2023-09-01 09:43:12 +02:00
|
|
|
attr_reader :operator, :term
|
2019-07-27 04:42:08 +02:00
|
|
|
|
2023-09-01 09:43:12 +02:00
|
|
|
def initialize(operator, term)
|
2019-07-27 04:42:08 +02:00
|
|
|
@operator = Operator.symbol(operator)
|
|
|
|
@term = term
|
|
|
|
end
|
2023-09-01 09:43:12 +02:00
|
|
|
|
|
|
|
def to_query
|
2023-09-04 10:18:45 +02:00
|
|
|
if @term.start_with?('#')
|
|
|
|
{ match: { tags: { query: @term } } }
|
|
|
|
else
|
|
|
|
{ multi_match: { type: 'most_fields', query: @term, fields: ['text', 'text.stemmed'], operator: 'and' } }
|
|
|
|
end
|
2023-09-01 09:43:12 +02:00
|
|
|
end
|
2019-07-27 04:42:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
class PhraseClause
|
2023-09-01 09:43:12 +02:00
|
|
|
attr_reader :operator, :phrase
|
2019-07-27 04:42:08 +02:00
|
|
|
|
2023-09-01 09:43:12 +02:00
|
|
|
def initialize(operator, phrase)
|
2019-07-27 04:42:08 +02:00
|
|
|
@operator = Operator.symbol(operator)
|
|
|
|
@phrase = phrase
|
|
|
|
end
|
2023-09-01 09:43:12 +02:00
|
|
|
|
|
|
|
def to_query
|
|
|
|
{ match_phrase: { text: { query: @phrase } } }
|
|
|
|
end
|
2019-07-27 04:42:08 +02:00
|
|
|
end
|
|
|
|
|
2022-02-14 00:17:09 +01:00
|
|
|
class PrefixClause
|
2023-09-01 09:43:12 +02:00
|
|
|
attr_reader :operator, :prefix, :term
|
2022-02-14 00:17:09 +01:00
|
|
|
|
2023-08-28 12:43:00 +02:00
|
|
|
def initialize(prefix, operator, term, options = {})
|
2023-09-01 09:43:12 +02:00
|
|
|
@prefix = prefix
|
|
|
|
@negated = operator == '-'
|
|
|
|
@options = options
|
2022-02-14 00:17:09 +01:00
|
|
|
@operator = :filter
|
2023-08-24 16:40:04 +02:00
|
|
|
|
2022-02-14 00:17:09 +01:00
|
|
|
case prefix
|
2023-08-24 16:40:04 +02:00
|
|
|
when 'has', 'is'
|
|
|
|
@filter = :properties
|
|
|
|
@type = :term
|
|
|
|
@term = term
|
|
|
|
when 'language'
|
|
|
|
@filter = :language
|
|
|
|
@type = :term
|
2023-08-30 16:07:26 +02:00
|
|
|
@term = language_code_from_term(term)
|
2022-02-14 00:17:09 +01:00
|
|
|
when 'from'
|
|
|
|
@filter = :account_id
|
2023-08-24 16:40:04 +02:00
|
|
|
@type = :term
|
|
|
|
@term = account_id_from_term(term)
|
|
|
|
when 'before'
|
|
|
|
@filter = :created_at
|
|
|
|
@type = :range
|
2023-09-04 09:09:25 +02:00
|
|
|
@term = { lt: term, time_zone: @options[:current_account]&.user_time_zone.presence || 'UTC' }
|
2023-08-24 16:40:04 +02:00
|
|
|
when 'after'
|
|
|
|
@filter = :created_at
|
|
|
|
@type = :range
|
2023-09-04 09:09:25 +02:00
|
|
|
@term = { gt: term, time_zone: @options[:current_account]&.user_time_zone.presence || 'UTC' }
|
2023-08-24 16:40:04 +02:00
|
|
|
when 'during'
|
|
|
|
@filter = :created_at
|
|
|
|
@type = :range
|
2023-09-04 09:09:25 +02:00
|
|
|
@term = { gte: term, lte: term, time_zone: @options[:current_account]&.user_time_zone.presence || 'UTC' }
|
2022-02-14 00:17:09 +01:00
|
|
|
else
|
2023-09-01 09:43:12 +02:00
|
|
|
raise "Unknown prefix: #{prefix}"
|
2022-02-14 00:17:09 +01:00
|
|
|
end
|
|
|
|
end
|
2023-08-24 16:40:04 +02:00
|
|
|
|
2023-09-01 09:43:12 +02:00
|
|
|
def to_query
|
|
|
|
if @negated
|
|
|
|
{ bool: { must_not: { @type => { @filter => @term } } } }
|
|
|
|
else
|
|
|
|
{ @type => { @filter => @term } }
|
|
|
|
end
|
2023-08-28 10:31:51 +02:00
|
|
|
end
|
|
|
|
|
2023-08-24 16:40:04 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def account_id_from_term(term)
|
2023-08-28 12:43:00 +02:00
|
|
|
return @options[:current_account]&.id || -1 if term == 'me'
|
|
|
|
|
2023-08-24 16:40:04 +02:00
|
|
|
username, domain = term.gsub(/\A@/, '').split('@')
|
|
|
|
domain = nil if TagManager.instance.local_domain?(domain)
|
|
|
|
account = Account.find_remote(username, domain)
|
|
|
|
|
|
|
|
# If the account is not found, we want to return empty results, so return
|
|
|
|
# an ID that does not exist
|
|
|
|
account&.id || -1
|
|
|
|
end
|
2023-08-30 16:07:26 +02:00
|
|
|
|
|
|
|
def language_code_from_term(term)
|
|
|
|
language_code = term
|
|
|
|
|
|
|
|
return language_code if LanguagesHelper::SUPPORTED_LOCALES.key?(language_code.to_sym)
|
|
|
|
|
|
|
|
language_code = term.downcase
|
|
|
|
|
|
|
|
return language_code if LanguagesHelper::SUPPORTED_LOCALES.key?(language_code.to_sym)
|
|
|
|
|
|
|
|
language_code = term.split(/[_-]/).first.downcase
|
|
|
|
|
|
|
|
return language_code if LanguagesHelper::SUPPORTED_LOCALES.key?(language_code.to_sym)
|
|
|
|
|
|
|
|
term
|
|
|
|
end
|
2022-02-14 00:17:09 +01:00
|
|
|
end
|
|
|
|
|
2019-07-27 04:42:08 +02:00
|
|
|
rule(clause: subtree(:clause)) do
|
|
|
|
prefix = clause[:prefix][:term].to_s if clause[:prefix]
|
|
|
|
operator = clause[:operator]&.to_s
|
|
|
|
|
2023-09-01 09:43:12 +02:00
|
|
|
if clause[:prefix] && SUPPORTED_PREFIXES.include?(prefix)
|
2023-08-28 12:43:00 +02:00
|
|
|
PrefixClause.new(prefix, operator, clause[:term].to_s, current_account: current_account)
|
2023-09-01 09:43:12 +02:00
|
|
|
elsif clause[:prefix]
|
|
|
|
TermClause.new(operator, "#{prefix} #{clause[:term]}")
|
2022-02-14 00:17:09 +01:00
|
|
|
elsif clause[:term]
|
2023-09-01 09:43:12 +02:00
|
|
|
TermClause.new(operator, clause[:term].to_s)
|
2019-08-16 13:00:30 +02:00
|
|
|
elsif clause[:shortcode]
|
2023-09-01 09:43:12 +02:00
|
|
|
TermClause.new(operator, ":#{clause[:term]}:")
|
2019-07-27 04:42:08 +02:00
|
|
|
elsif clause[:phrase]
|
2023-09-01 09:43:12 +02:00
|
|
|
PhraseClause.new(operator, clause[:phrase].is_a?(Array) ? clause[:phrase].map { |p| p[:term].to_s }.join(' ') : clause[:phrase].to_s)
|
2019-07-27 04:42:08 +02:00
|
|
|
else
|
|
|
|
raise "Unexpected clause type: #{clause}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-09-01 09:43:12 +02:00
|
|
|
rule(junk: subtree(:junk)) do
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
rule(query: sequence(:clauses)) do
|
|
|
|
Query.new(clauses)
|
|
|
|
end
|
2019-07-27 04:42:08 +02:00
|
|
|
end
|