]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/SearchContext.php
move excluded place list to SearchContext
[nominatim.git] / lib / SearchContext.php
index 7552ae992a9df85882bf046f2e1be4587694df51..1b48fd84985a0a6c39342ff06a0d381725e63b7d 100644 (file)
@@ -22,6 +22,7 @@ class SearchContext
     public $sqlViewboxSmall = '';
     public $sqlViewboxLarge = '';
     public $sqlViewboxCentre = '';
+    private $sqlExcludeList = '';
 
     public function hasNearPoint()
     {
@@ -91,6 +92,11 @@ class SearchContext
         $this->sqlViewboxLarge = "'".$sGeom."'::geometry";
     }
 
+    public function setExcludeList($aExcluded)
+    {
+        $this->sqlExcludeList = ' not in ('.join(',', $aExcluded).')';
+    }
+
     /**
      * Extract a coordinate point from a query string.
      *
@@ -138,4 +144,13 @@ class SearchContext
 
         return $sSQL;
     }
+
+    public function excludeSQL($sVariable)
+    {
+        if ($this->sqlExcludeList) {
+            return $sVariable.$this->sqlExcludeList;
+        }
+
+        return '';
+    }
 }