Support multiple "nick:" terms in search field
[phinde.git] / src / phinde / Elasticsearch.php
index 1732bbb824cbaf8b072379a844f808af06926b72..2887bebe719cd34ec2e892c2fa4b89f640b773d6 100644 (file)
@@ -52,13 +52,14 @@ class Elasticsearch
 
     public function search($query, $filters, $site, $page, $perPage, $sort)
     {
 
     public function search($query, $filters, $site, $page, $perPage, $sort)
     {
-        if (preg_match('#nick:([^ ]*)#', $query, $matches)) {
-            $authorName = $matches[1];
-            $query = str_replace(
-                'nick:' . $authorName,
-                'author.name:' . $authorName,
-                $query
-            );
+        if (preg_match_all('#nick:([^ ]*)#', $query, $matches)) {
+            foreach ($matches[1] as $authorName) {
+                $query = str_replace(
+                    'nick:' . $authorName,
+                    'author.name:' . $authorName,
+                    $query
+                );
+            }
         }
 
         $qMust = array();//query parts for the MUST section
         }
 
         $qMust = array();//query parts for the MUST section