You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
756 B
15 lines
756 B
# 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 } |
|
rule(:shortcode) { (colon >> term >> colon.maybe).as(:shortcode) } |
|
rule(:phrase) { (quote >> (match('[^\s"]').repeat(1).as(:term) >> space.maybe).repeat >> quote).as(:phrase) } |
|
rule(:clause) { (operator.maybe >> prefix.maybe.as(:prefix) >> (phrase | term | shortcode)).as(:clause) | prefix.as(:clause) | quote.as(:junk) } |
|
rule(:query) { (clause >> space.maybe).repeat.as(:query) } |
|
root(:query) |
|
end
|
|
|