2019-07-27 02:42:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SearchQueryParser < Parslet::Parser
|
2019-08-16 11:00:30 +00:00
|
|
|
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) }
|
2023-09-01 07:43:12 +00:00
|
|
|
rule(:prefix) { term >> colon }
|
2019-08-16 11:00:30 +00:00
|
|
|
rule(:shortcode) { (colon >> term >> colon.maybe).as(:shortcode) }
|
2023-09-08 12:25:00 +00:00
|
|
|
rule(:phrase) { (quote >> (match('[^\s"]').repeat(1).as(:term) >> space.maybe).repeat >> quote).as(:phrase) }
|
2023-09-01 07:43:12 +00:00
|
|
|
rule(:clause) { (operator.maybe >> prefix.maybe.as(:prefix) >> (phrase | term | shortcode)).as(:clause) | prefix.as(:clause) | quote.as(:junk) }
|
2019-08-16 11:00:30 +00:00
|
|
|
rule(:query) { (clause >> space.maybe).repeat.as(:query) }
|
2019-07-27 02:42:08 +00:00
|
|
|
root(:query)
|
|
|
|
end
|