about summary refs log tree commit diff
path: root/app/lib/search_query_parser.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-07-27 04:42:08 +0200
committerGitHub <noreply@github.com>2019-07-27 04:42:08 +0200
commitb9fbcbfe4e0a15fcf8a457ce17ea080f0eb939fc (patch)
tree03332ded5e52a9cdb099dec8286ab7ac36d67c02 /app/lib/search_query_parser.rb
parent501148ab912b3bd36dbf0f9f2e10bfde7787012d (diff)
Add search syntax for operators and phrases (#11411)
Diffstat (limited to 'app/lib/search_query_parser.rb')
-rw-r--r--app/lib/search_query_parser.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/lib/search_query_parser.rb b/app/lib/search_query_parser.rb
new file mode 100644
index 000000000..405ad15b8
--- /dev/null
+++ b/app/lib/search_query_parser.rb
@@ -0,0 +1,14 @@
+# 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(:phrase)   { (quote >> (term >> space.maybe).repeat >> quote).as(:phrase) }
+  rule(:clause)   { (prefix.maybe >> operator.maybe >> (phrase | term)).as(:clause) }
+  rule(:query)    { (clause >> space.maybe).repeat.as(:query) }
+  root(:query)
+end