forked from mastodon/mastodon
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix accounts search by full/partial display name and others (mastodon…
…#11580) - Restrict followers counts to local users to minimize local advantage - Fix emoji shortcodes causing error in search - Fix search syntax parse errors not being caught
- Loading branch information
1 parent
a278c32
commit d3177f5
Showing
5 changed files
with
116 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
class SearchQueryParser < Parslet::Parser | ||
rule(:term) { match('[^\s":]').repeat(1).as(:term) } | ||
rule(:quote) { str('"') } | ||
rule(:colon) { str(':') } | ||
rule(:space) { match('\s').repeat(1) } | ||
rule(:operator) { (str('+') | str('-')).as(:operator) } | ||
rule(:prefix) { (term >> colon).as(:prefix) } | ||
rule(:shortcode) { (colon >> term >> colon.maybe).as(:shortcode) } | ||
rule(:phrase) { (quote >> (term >> space.maybe).repeat >> quote).as(:phrase) } | ||
rule(:clause) { (prefix.maybe >> operator.maybe >> (phrase | term | shortcode)).as(:clause) } | ||
rule(:query) { (clause >> space.maybe).repeat.as(:query) } | ||
root(:query) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# frozen_string_literal: true | ||
|
||
class SearchQueryTransformer < Parslet::Transform | ||
class Query | ||
attr_reader :should_clauses, :must_not_clauses, :must_clauses | ||
|
||
def initialize(clauses) | ||
grouped = clauses.chunk(&:operator).to_h | ||
@should_clauses = grouped.fetch(:should, []) | ||
@must_not_clauses = grouped.fetch(:must_not, []) | ||
@must_clauses = grouped.fetch(:must, []) | ||
end | ||
|
||
def apply(search) | ||
should_clauses.each { |clause| search = search.query.should(clause_to_query(clause)) } | ||
must_clauses.each { |clause| search = search.query.must(clause_to_query(clause)) } | ||
must_not_clauses.each { |clause| search = search.query.must_not(clause_to_query(clause)) } | ||
search.query.minimum_should_match(1) | ||
end | ||
|
||
private | ||
|
||
def clause_to_query(clause) | ||
case clause | ||
when TermClause | ||
{ multi_match: { type: 'most_fields', query: clause.term, fields: ['text', 'text.stemmed'] } } | ||
when PhraseClause | ||
{ match_phrase: { text: { query: clause.phrase } } } | ||
else | ||
raise "Unexpected clause type: #{clause}" | ||
end | ||
end | ||
end | ||
|
||
class Operator | ||
class << self | ||
def symbol(str) | ||
case str | ||
when '+' | ||
:must | ||
when '-' | ||
:must_not | ||
when nil | ||
:should | ||
else | ||
raise "Unknown operator: #{str}" | ||
end | ||
end | ||
end | ||
end | ||
|
||
class TermClause | ||
attr_reader :prefix, :operator, :term | ||
|
||
def initialize(prefix, operator, term) | ||
@prefix = prefix | ||
@operator = Operator.symbol(operator) | ||
@term = term | ||
end | ||
end | ||
|
||
class PhraseClause | ||
attr_reader :prefix, :operator, :phrase | ||
|
||
def initialize(prefix, operator, phrase) | ||
@prefix = prefix | ||
@operator = Operator.symbol(operator) | ||
@phrase = phrase | ||
end | ||
end | ||
|
||
rule(clause: subtree(:clause)) do | ||
prefix = clause[:prefix][:term].to_s if clause[:prefix] | ||
operator = clause[:operator]&.to_s | ||
|
||
if clause[:term] | ||
TermClause.new(prefix, operator, clause[:term].to_s) | ||
elsif clause[:shortcode] | ||
TermClause.new(prefix, operator, ":#{clause[:term]}:") | ||
elsif clause[:phrase] | ||
PhraseClause.new(prefix, operator, clause[:phrase].map { |p| p[:term].to_s }.join(' ')) | ||
else | ||
raise "Unexpected clause type: #{clause}" | ||
end | ||
end | ||
|
||
rule(query: sequence(:clauses)) { Query.new(clauses) } | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters