5 require_once(CONST_BasePath.'/lib/SpecialSearchOperator.php');
6 require_once(CONST_BasePath.'/lib/SearchContext.php');
9 * Description of a single interpretation of a search query.
11 class SearchDescription
13 /// Ranking how well the description fits the query.
14 private $iSearchRank = 0;
15 /// Country code of country the result must belong to.
16 private $sCountryCode = '';
17 /// List of word ids making up the name of the object.
18 private $aName = array();
19 /// List of word ids making up the address of the object.
20 private $aAddress = array();
21 /// Subset of word ids of full words making up the address.
22 private $aFullNameAddress = array();
23 /// List of word ids that appear in the name but should be ignored.
24 private $aNameNonSearch = array();
25 /// List of word ids that appear in the address but should be ignored.
26 private $aAddressNonSearch = array();
27 /// Kind of search for special searches, see Nominatim::Operator.
28 private $iOperator = Operator::NONE;
29 /// Class of special feature to search for.
31 /// Type of special feature to search for.
33 /// Housenumber of the object.
34 private $sHouseNumber = '';
35 /// Postcode for the object.
36 private $sPostcode = '';
37 /// Global search constraints.
40 // Temporary values used while creating the search description.
42 /// Index of phrase currently processed.
43 private $iNamePhrase = -1;
46 public function __construct($oContext)
48 $this->oContext = $oContext;
51 public function getRank()
53 return $this->iSearchRank;
56 public function addToRank($iAddRank)
58 $this->iSearchRank += $iAddRank;
59 return $this->iSearchRank;
62 public function getPostCode()
64 return $this->sPostcode;
67 public function setPoiSearch($iOperator, $sClass, $sType)
69 $this->iOperator = $iOperator;
70 $this->sClass = $sClass;
71 $this->sType = $sType;
74 public function isNamedSearch()
76 return sizeof($this->aName) > 0 || sizeof($this->aAddress) > 0;
79 public function isCountrySearch()
81 return $this->sCountryCode && sizeof($this->aName) == 0
82 && !$this->iOperator && !$this->oContext->hasNearPoint();
85 public function isPoiSearch()
87 return (bool) $this->sClass;
90 public function looksLikeFullAddress()
92 return sizeof($this->aName)
93 && (sizeof($this->aAddress || $this->sCountryCode))
94 && preg_match('/[0-9]+/', $this->sHouseNumber);
97 public function isOperator($iType)
99 return $this->iOperator == $iType;
102 public function hasHouseNumber()
104 return (bool) $this->sHouseNumber;
107 private function poiTable()
109 return 'place_classtype_'.$this->sClass.'_'.$this->sType;
112 public function countryCodeSQL($sVar)
114 if ($this->sCountryCode) {
115 return $sVar.' = \''.$this->sCountryCode."'";
117 if ($this->oContext->sqlCountryList) {
118 return $sVar.' in '.$this->oContext->sqlCountryList;
124 public function hasOperator()
126 return $this->iOperator != Operator::NONE;
129 public function extractKeyValuePairs($sQuery)
131 // Search for terms of kind [<key>=<value>].
133 '/\\[([\\w_]*)=([\\w_]*)\\]/',
139 foreach ($aSpecialTermsRaw as $aTerm) {
140 $sQuery = str_replace($aTerm[0], ' ', $sQuery);
141 if (!$this->hasOperator()) {
142 $this->setPoiSearch(Operator::TYPE, $aTerm[1], $aTerm[2]);
149 public function isValidSearch(&$aCountryCodes)
151 if (!sizeof($this->aName)) {
152 if ($this->sHouseNumber) {
157 && $this->sCountryCode
158 && !in_array($this->sCountryCode, $aCountryCodes)
166 /////////// Search building functions
169 public function extendWithFullTerm($aSearchTerm, $bWordInQuery, $bHasPartial, $sPhraseType, $bFirstToken, $bFirstPhrase, $bLastToken, &$iGlobalRank)
171 $aNewSearches = array();
173 if (($sPhraseType == '' || $sPhraseType == 'country')
174 && !empty($aSearchTerm['country_code'])
175 && $aSearchTerm['country_code'] != '0'
177 if (!$this->sCountryCode) {
178 $oSearch = clone $this;
179 $oSearch->iSearchRank++;
180 $oSearch->sCountryCode = $aSearchTerm['country_code'];
181 // Country is almost always at the end of the string
182 // - increase score for finding it anywhere else (optimisation)
184 $oSearch->iSearchRank += 5;
186 $aNewSearches[] = $oSearch;
188 // If it is at the beginning, we can be almost sure that
189 // the terms are in the wrong order. Increase score for all searches.
194 } elseif (($sPhraseType == '' || $sPhraseType == 'postalcode')
195 && $aSearchTerm['class'] == 'place' && $aSearchTerm['type'] == 'postcode'
197 // We need to try the case where the postal code is the primary element
198 // (i.e. no way to tell if it is (postalcode, city) OR (city, postalcode)
200 if (!$this->sPostcode && $bWordInQuery
201 && pg_escape_string($aSearchTerm['word']) == $aSearchTerm['word']
203 // If we have structured search or this is the first term,
204 // make the postcode the primary search element.
205 if ($this->iOperator == Operator::NONE
206 && ($sPhraseType == 'postalcode' || $bFirstToken)
208 $oSearch = clone $this;
209 $oSearch->iSearchRank++;
210 $oSearch->iOperator = Operator::POSTCODE;
211 $oSearch->aAddress = array_merge($this->aAddress, $this->aName);
213 array($aSearchTerm['word_id'] => $aSearchTerm['word']);
214 $aNewSearches[] = $oSearch;
217 // If we have a structured search or this is not the first term,
218 // add the postcode as an addendum.
219 if ($this->iOperator != Operator::POSTCODE
220 && ($sPhraseType == 'postalcode' || sizeof($this->aName))
222 $oSearch = clone $this;
223 $oSearch->iSearchRank++;
224 $oSearch->sPostcode = $aSearchTerm['word'];
225 $aNewSearches[] = $oSearch;
228 } elseif (($sPhraseType == '' || $sPhraseType == 'street')
229 && $aSearchTerm['class'] == 'place' && $aSearchTerm['type'] == 'house'
231 if (!$this->sHouseNumber && $this->iOperator != Operator::POSTCODE) {
232 $oSearch = clone $this;
233 $oSearch->iSearchRank++;
234 $oSearch->sHouseNumber = trim($aSearchTerm['word_token']);
235 // sanity check: if the housenumber is not mainly made
236 // up of numbers, add a penalty
237 if (preg_match_all("/[^0-9]/", $oSearch->sHouseNumber, $aMatches) > 2) {
238 $oSearch->iSearchRank++;
240 if (!isset($aSearchTerm['word_id'])) {
241 $oSearch->iSearchRank++;
243 // also must not appear in the middle of the address
244 if (sizeof($this->aAddress) || sizeof($this->aAddressNonSearch)) {
245 $oSearch->iSearchRank++;
247 $aNewSearches[] = $oSearch;
249 } elseif ($sPhraseType == ''
250 && $aSearchTerm['class'] !== '' && $aSearchTerm['class'] !== null
252 // require a normalized exact match of the term
253 // if we have the normalizer version of the query
255 if ($this->iOperator == Operator::NONE
256 && (isset($aSearchTerm['word']) && $aSearchTerm['word'])
259 $oSearch = clone $this;
260 $oSearch->iSearchRank++;
262 $iOp = Operator::NEAR; // near == in for the moment
263 if ($aSearchTerm['operator'] == '') {
264 if (sizeof($this->aName)) {
265 $iOp = Operator::NAME;
267 $oSearch->iSearchRank += 2;
270 $oSearch->setPoiSearch($iOp, $aSearchTerm['class'], $aSearchTerm['type']);
271 $aNewSearches[] = $oSearch;
273 } elseif (isset($aSearchTerm['word_id']) && $aSearchTerm['word_id']) {
274 $iWordID = $aSearchTerm['word_id'];
275 if (sizeof($this->aName)) {
276 if (($sPhraseType == '' || !$bFirstPhrase)
277 && $sPhraseType != 'country'
280 $oSearch = clone $this;
281 $oSearch->iSearchRank++;
282 $oSearch->aAddress[$iWordID] = $iWordID;
283 $aNewSearches[] = $oSearch;
285 $this->aFullNameAddress[$iWordID] = $iWordID;
288 $oSearch = clone $this;
289 $oSearch->iSearchRank++;
290 $oSearch->aName = array($iWordID => $iWordID);
291 $aNewSearches[] = $oSearch;
295 return $aNewSearches;
298 public function extendWithPartialTerm($aSearchTerm, $bStructuredPhrases, $iPhrase, &$aWordFrequencyScores, $aFullTokens)
300 // Only allow name terms.
301 if (!(isset($aSearchTerm['word_id']) && $aSearchTerm['word_id'])) {
305 $aNewSearches = array();
306 $iWordID = $aSearchTerm['word_id'];
308 if ((!$bStructuredPhrases || $iPhrase > 0)
309 && sizeof($this->aName)
310 && strpos($aSearchTerm['word_token'], ' ') === false
312 if ($aWordFrequencyScores[$iWordID] < CONST_Max_Word_Frequency) {
313 $oSearch = clone $this;
314 $oSearch->iSearchRank++;
315 $oSearch->aAddress[$iWordID] = $iWordID;
316 $aNewSearches[] = $oSearch;
318 $oSearch = clone $this;
319 $oSearch->iSearchRank++;
320 $oSearch->aAddressNonSearch[$iWordID] = $iWordID;
321 if (preg_match('#^[0-9]+$#', $aSearchTerm['word_token'])) {
322 $oSearch->iSearchRank += 2;
324 if (sizeof($aFullTokens)) {
325 $oSearch->iSearchRank++;
327 $aNewSearches[] = $oSearch;
329 // revert to the token version?
330 foreach ($aFullTokens as $aSearchTermToken) {
331 if (empty($aSearchTermToken['country_code'])
332 && empty($aSearchTermToken['lat'])
333 && empty($aSearchTermToken['class'])
335 $oSearch = clone $this;
336 $oSearch->iSearchRank++;
337 $oSearch->aAddress[$aSearchTermToken['word_id']] = $aSearchTermToken['word_id'];
338 $aNewSearches[] = $oSearch;
344 if ((!$this->sPostcode && !$this->aAddress && !$this->aAddressNonSearch)
345 && (!sizeof($this->aName) || $this->iNamePhrase == $iPhrase)
347 $oSearch = clone $this;
348 $oSearch->iSearchRank++;
349 if (!sizeof($this->aName)) {
350 $oSearch->iSearchRank += 1;
352 if (preg_match('#^[0-9]+$#', $aSearchTerm['word_token'])) {
353 $oSearch->iSearchRank += 2;
355 if ($aWordFrequencyScores[$iWordID] < CONST_Max_Word_Frequency) {
356 $oSearch->aName[$iWordID] = $iWordID;
358 $oSearch->aNameNonSearch[$iWordID] = $iWordID;
360 $oSearch->iNamePhrase = $iPhrase;
361 $aNewSearches[] = $oSearch;
364 return $aNewSearches;
367 /////////// Query functions
370 public function queryCountry(&$oDB)
372 $sSQL = 'SELECT place_id FROM placex ';
373 $sSQL .= "WHERE country_code='".$this->sCountryCode."'";
374 $sSQL .= ' AND rank_search = 4';
375 if ($this->oContext->bViewboxBounded) {
376 $sSQL .= ' AND ST_Intersects('.$this->oContext->sqlViewboxSmall.', geometry)';
378 $sSQL .= " ORDER BY st_area(geometry) DESC LIMIT 1";
380 if (CONST_Debug) var_dump($sSQL);
382 return chksql($oDB->getCol($sSQL));
385 public function queryNearbyPoi(&$oDB, $iLimit)
387 if (!$this->sClass) {
391 $sPoiTable = $this->poiTable();
393 $sSQL = 'SELECT count(*) FROM pg_tables WHERE tablename = \''.$sPoiTable."'";
394 if (chksql($oDB->getOne($sSQL))) {
395 $sSQL = 'SELECT place_id FROM '.$sPoiTable.' ct';
396 if ($this->oContext->sqlCountryList) {
397 $sSQL .= ' JOIN placex USING (place_id)';
399 if ($this->oContext->hasNearPoint()) {
400 $sSQL .= ' WHERE '.$this->oContext->withinSQL('ct.centroid');
401 } else if ($this->oContext->bViewboxBounded) {
402 $sSQL .= ' WHERE ST_Contains('.$this->oContext->sqlViewboxSmall.', ct.centroid)';
404 if ($this->oContext->sqlCountryList) {
405 $sSQL .= ' AND country_code in '.$this->oContext->sqlCountryList;
407 $sSQL .= $this->oContext->excludeSQL(' AND place_id');
408 if ($this->oContext->sqlViewboxCentre) {
409 $sSQL .= ' ORDER BY ST_Distance(';
410 $sSQL .= $this->oContext->sqlViewboxCentre.', ct.centroid) ASC';
411 } elseif ($this->oContext->hasNearPoint()) {
412 $sSQL .= ' ORDER BY '.$this->oContext->distanceSQL('ct.centroid').' ASC';
414 $sSQL .= " limit $iLimit";
415 if (CONST_Debug) var_dump($sSQL);
416 return chksql($oDB->getCol($sSQL));
419 if ($this->oContext->hasNearPoint()) {
420 $sSQL = 'SELECT place_id FROM placex WHERE ';
421 $sSQL .= 'class=\''.$this->sClass."' and type='".$this->sType."'";
422 $sSQL .= ' AND '.$this->oContext->withinSQL('geometry');
423 $sSQL .= ' AND linked_place_id is null';
424 if ($this->oContext->sqlCountryList) {
425 $sSQL .= ' AND country_code in '.$this->oContext->sqlCountryList;
427 $sSQL .= ' ORDER BY '.$this->oContext->distanceSQL('centroid')." ASC";
428 $sSQL .= " LIMIT $iLimit";
429 if (CONST_Debug) var_dump($sSQL);
430 return chksql($oDB->getCol($sSQL));
436 public function queryPostcode(&$oDB, $iLimit)
438 $sSQL = 'SELECT p.place_id FROM location_postcode p ';
440 if (sizeof($this->aAddress)) {
441 $sSQL .= ', search_name s ';
442 $sSQL .= 'WHERE s.place_id = p.parent_place_id ';
443 $sSQL .= 'AND array_cat(s.nameaddress_vector, s.name_vector)';
444 $sSQL .= ' @> '.getArraySQL($this->aAddress).' AND ';
449 $sSQL .= "p.postcode = '".reset($this->aName)."'";
450 $sSQL .= $this->countryCodeSQL(' AND p.country_code');
451 $sSQL .= $this->oContext->excludeSQL(' AND p.place_id');
452 $sSQL .= " LIMIT $iLimit";
454 if (CONST_Debug) var_dump($sSQL);
456 return chksql($oDB->getCol($sSQL));
459 public function queryNamedPlace(&$oDB, $aWordFrequencyScores, $iMinAddressRank, $iMaxAddressRank, $iLimit)
464 if ($this->sHouseNumber && sizeof($this->aAddress)) {
465 $sHouseNumberRegex = '\\\\m'.$this->sHouseNumber.'\\\\M';
467 $aOrder[0] .= 'EXISTS(';
468 $aOrder[0] .= ' SELECT place_id';
469 $aOrder[0] .= ' FROM placex';
470 $aOrder[0] .= ' WHERE parent_place_id = search_name.place_id';
471 $aOrder[0] .= " AND transliteration(housenumber) ~* E'".$sHouseNumberRegex."'";
472 $aOrder[0] .= ' LIMIT 1';
474 // also housenumbers from interpolation lines table are needed
475 if (preg_match('/[0-9]+/', $this->sHouseNumber)) {
476 $iHouseNumber = intval($this->sHouseNumber);
477 $aOrder[0] .= 'OR EXISTS(';
478 $aOrder[0] .= ' SELECT place_id ';
479 $aOrder[0] .= ' FROM location_property_osmline ';
480 $aOrder[0] .= ' WHERE parent_place_id = search_name.place_id';
481 $aOrder[0] .= ' AND startnumber is not NULL';
482 $aOrder[0] .= ' AND '.$iHouseNumber.'>=startnumber ';
483 $aOrder[0] .= ' AND '.$iHouseNumber.'<=endnumber ';
484 $aOrder[0] .= ' LIMIT 1';
487 $aOrder[0] .= ') DESC';
490 if (sizeof($this->aName)) {
491 $aTerms[] = 'name_vector @> '.getArraySQL($this->aName);
493 if (sizeof($this->aAddress)) {
494 // For infrequent name terms disable index usage for address
495 if (CONST_Search_NameOnlySearchFrequencyThreshold
496 && sizeof($this->aName) == 1
497 && $aWordFrequencyScores[$this->aName[reset($this->aName)]]
498 < CONST_Search_NameOnlySearchFrequencyThreshold
500 $aTerms[] = 'array_cat(nameaddress_vector,ARRAY[]::integer[]) @> '.getArraySQL($this->aAddress);
502 $aTerms[] = 'nameaddress_vector @> '.getArraySQL($this->aAddress);
506 $sCountryTerm = $this->countryCodeSQL('country_code');
508 $aTerms[] = $sCountryTerm;
511 if ($this->sHouseNumber) {
512 $aTerms[] = "address_rank between 16 and 27";
513 } elseif (!$this->sClass || $this->iOperator == Operator::NAME) {
514 if ($iMinAddressRank > 0) {
515 $aTerms[] = "address_rank >= ".$iMinAddressRank;
517 if ($iMaxAddressRank < 30) {
518 $aTerms[] = "address_rank <= ".$iMaxAddressRank;
522 if ($this->oContext->hasNearPoint()) {
523 $aTerms[] = $this->oContext->withinSQL('centroid');
524 $aOrder[] = $this->oContext->distanceSQL('centroid');
525 } elseif ($this->sPostcode) {
526 if (!sizeof($this->aAddress)) {
527 $aTerms[] = "EXISTS(SELECT place_id FROM location_postcode p WHERE p.postcode = '".$this->sPostcode."' AND ST_DWithin(search_name.centroid, p.geometry, 0.1))";
529 $aOrder[] = "(SELECT min(ST_Distance(search_name.centroid, p.geometry)) FROM location_postcode p WHERE p.postcode = '".$this->sPostcode."')";
533 $sExcludeSQL = $this->oContext->excludeSQL('place_id');
535 $aTerms[] = $sExcludeSQL;
538 if ($this->oContext->bViewboxBounded) {
539 $aTerms[] = 'centroid && '.$this->oContext->sqlViewboxSmall;
542 if ($this->oContext->hasNearPoint()) {
543 $aOrder[] = $this->oContext->distanceSQL('centroid');
546 if ($this->sHouseNumber) {
547 $sImportanceSQL = '- abs(26 - address_rank) + 3';
549 $sImportanceSQL = '(CASE WHEN importance = 0 OR importance IS NULL THEN 0.75-(search_rank::float/40) ELSE importance END)';
551 $sImportanceSQL .= $this->oContext->viewboxImportanceSQL('centroid');
552 $aOrder[] = "$sImportanceSQL DESC";
554 if (sizeof($this->aFullNameAddress)) {
555 $sExactMatchSQL = ' ( ';
556 $sExactMatchSQL .= ' SELECT count(*) FROM ( ';
557 $sExactMatchSQL .= ' SELECT unnest('.getArraySQL($this->aFullNameAddress).')';
558 $sExactMatchSQL .= ' INTERSECT ';
559 $sExactMatchSQL .= ' SELECT unnest(nameaddress_vector)';
560 $sExactMatchSQL .= ' ) s';
561 $sExactMatchSQL .= ') as exactmatch';
562 $aOrder[] = 'exactmatch DESC';
564 $sExactMatchSQL = '0::int as exactmatch';
567 if ($this->sHouseNumber || $this->sClass) {
571 if (sizeof($aTerms)) {
572 $sSQL = 'SELECT place_id,'.$sExactMatchSQL;
573 $sSQL .= ' FROM search_name';
574 $sSQL .= ' WHERE '.join(' and ', $aTerms);
575 $sSQL .= ' ORDER BY '.join(', ', $aOrder);
576 $sSQL .= ' LIMIT '.$iLimit;
578 if (CONST_Debug) var_dump($sSQL);
582 "Could not get places for search terms."
589 public function queryHouseNumber(&$oDB, $aRoadPlaceIDs, $iLimit)
591 $sPlaceIDs = join(',', $aRoadPlaceIDs);
593 $sHouseNumberRegex = '\\\\m'.$this->sHouseNumber.'\\\\M';
594 $sSQL = 'SELECT place_id FROM placex ';
595 $sSQL .= 'WHERE parent_place_id in ('.$sPlaceIDs.')';
596 $sSQL .= " AND transliteration(housenumber) ~* E'".$sHouseNumberRegex."'";
597 $sSQL .= $this->oContext->excludeSQL(' AND place_id');
598 $sSQL .= " LIMIT $iLimit";
600 if (CONST_Debug) var_dump($sSQL);
602 $aPlaceIDs = chksql($oDB->getCol($sSQL));
604 if (sizeof($aPlaceIDs)) {
605 return array('aPlaceIDs' => $aPlaceIDs, 'iHouseNumber' => -1);
608 $bIsIntHouseNumber= (bool) preg_match('/[0-9]+/', $this->sHouseNumber);
609 $iHousenumber = intval($this->sHouseNumber);
610 if ($bIsIntHouseNumber) {
611 // if nothing found, search in the interpolation line table
612 $sSQL = 'SELECT distinct place_id FROM location_property_osmline';
613 $sSQL .= ' WHERE startnumber is not NULL';
614 $sSQL .= ' AND parent_place_id in ('.$sPlaceIDs.') AND (';
615 if ($iHousenumber % 2 == 0) {
616 // If housenumber is even, look for housenumber in streets
617 // with interpolationtype even or all.
618 $sSQL .= "interpolationtype='even'";
620 // Else look for housenumber with interpolationtype odd or all.
621 $sSQL .= "interpolationtype='odd'";
623 $sSQL .= " or interpolationtype='all') and ";
624 $sSQL .= $iHousenumber.">=startnumber and ";
625 $sSQL .= $iHousenumber."<=endnumber";
626 $sSQL .= $this->oContext->excludeSQL(' AND place_id');
627 $sSQL .= " limit $iLimit";
629 if (CONST_Debug) var_dump($sSQL);
631 $aPlaceIDs = chksql($oDB->getCol($sSQL, 0));
633 if (sizeof($aPlaceIDs)) {
634 return array('aPlaceIDs' => $aPlaceIDs, 'iHouseNumber' => $iHousenumber);
638 // If nothing found try the aux fallback table
639 if (CONST_Use_Aux_Location_data) {
640 $sSQL = 'SELECT place_id FROM location_property_aux';
641 $sSQL .= ' WHERE parent_place_id in ('.$sPlaceIDs.')';
642 $sSQL .= " AND housenumber = '".$this->sHouseNumber."'";
643 $sSQL .= $this->oContext->excludeSQL(' AND place_id');
644 $sSQL .= " limit $iLimit";
646 if (CONST_Debug) var_dump($sSQL);
648 $aPlaceIDs = chksql($oDB->getCol($sSQL));
650 if (sizeof($aPlaceIDs)) {
651 return array('aPlaceIDs' => $aPlaceIDs, 'iHouseNumber' => -1);
655 // If nothing found then search in Tiger data (location_property_tiger)
656 if (CONST_Use_US_Tiger_Data && $bIsIntHouseNumber) {
657 $sSQL = 'SELECT distinct place_id FROM location_property_tiger';
658 $sSQL .= ' WHERE parent_place_id in ('.$sPlaceIDs.') and (';
659 if ($iHousenumber % 2 == 0) {
660 $sSQL .= "interpolationtype='even'";
662 $sSQL .= "interpolationtype='odd'";
664 $sSQL .= " or interpolationtype='all') and ";
665 $sSQL .= $iHousenumber.">=startnumber and ";
666 $sSQL .= $iHousenumber."<=endnumber";
667 $sSQL .= $this->oContext->excludeSQL(' AND place_id');
668 $sSQL .= " limit $iLimit";
670 if (CONST_Debug) var_dump($sSQL);
672 $aPlaceIDs = chksql($oDB->getCol($sSQL, 0));
674 if (sizeof($aPlaceIDs)) {
675 return array('aPlaceIDs' => $aPlaceIDs, 'iHouseNumber' => $iHousenumber);
683 public function queryPoiByOperator(&$oDB, $aParentIDs, $iLimit)
685 $sPlaceIDs = join(',', $aParentIDs);
686 $aClassPlaceIDs = array();
688 if ($this->iOperator == Operator::TYPE || $this->iOperator == Operator::NAME) {
689 // If they were searching for a named class (i.e. 'Kings Head pub')
690 // then we might have an extra match
691 $sSQL = 'SELECT place_id FROM placex ';
692 $sSQL .= " WHERE place_id in ($sPlaceIDs)";
693 $sSQL .= " AND class='".$this->sClass."' ";
694 $sSQL .= " AND type='".$this->sType."'";
695 $sSQL .= " AND linked_place_id is null";
696 $sSQL .= $this->oContext->excludeSQL(' AND place_id');
697 $sSQL .= " ORDER BY rank_search ASC ";
698 $sSQL .= " LIMIT $iLimit";
700 if (CONST_Debug) var_dump($sSQL);
702 $aClassPlaceIDs = chksql($oDB->getCol($sSQL));
705 // NEAR and IN are handled the same
706 if ($this->iOperator == Operator::TYPE || $this->iOperator == Operator::NEAR) {
707 $sClassTable = $this->poiTable();
708 $sSQL = "SELECT count(*) FROM pg_tables WHERE tablename = '$sClassTable'";
709 $bCacheTable = (bool) chksql($oDB->getOne($sSQL));
711 $sSQL = "SELECT min(rank_search) FROM placex WHERE place_id in ($sPlaceIDs)";
712 if (CONST_Debug) var_dump($sSQL);
713 $iMaxRank = (int)chksql($oDB->getOne($sSQL));
715 // For state / country level searches the normal radius search doesn't work very well
717 if ($iMaxRank < 9 && $bCacheTable) {
718 // Try and get a polygon to search in instead
719 $sSQL = 'SELECT geometry FROM placex';
720 $sSQL .= " WHERE place_id in ($sPlaceIDs)";
721 $sSQL .= " AND rank_search < $iMaxRank + 5";
722 $sSQL .= " AND ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon')";
723 $sSQL .= " ORDER BY rank_search ASC ";
725 if (CONST_Debug) var_dump($sSQL);
726 $sPlaceGeom = chksql($oDB->getOne($sSQL));
733 $sSQL = 'SELECT place_id FROM placex';
734 $sSQL .= " WHERE place_id in ($sPlaceIDs) and rank_search < $iMaxRank";
735 if (CONST_Debug) var_dump($sSQL);
736 $aPlaceIDs = chksql($oDB->getCol($sSQL));
737 $sPlaceIDs = join(',', $aPlaceIDs);
740 if ($sPlaceIDs || $sPlaceGeom) {
743 // More efficient - can make the range bigger
747 if ($this->oContext->hasNearPoint()) {
748 $sOrderBySQL = $this->oContext->distanceSQL('l.centroid');
749 } elseif ($sPlaceIDs) {
750 $sOrderBySQL = "ST_Distance(l.centroid, f.geometry)";
751 } elseif ($sPlaceGeom) {
752 $sOrderBySQL = "ST_Distance(st_centroid('".$sPlaceGeom."'), l.centroid)";
755 $sSQL = 'SELECT distinct i.place_id';
757 $sSQL .= ', i.order_term';
759 $sSQL .= ' from (SELECT l.place_id';
761 $sSQL .= ','.$sOrderBySQL.' as order_term';
763 $sSQL .= ' from '.$sClassTable.' as l';
766 $sSQL .= ",placex as f WHERE ";
767 $sSQL .= "f.place_id in ($sPlaceIDs) ";
768 $sSQL .= " AND ST_DWithin(l.centroid, f.centroid, $fRange)";
769 } elseif ($sPlaceGeom) {
770 $sSQL .= " WHERE ST_Contains('$sPlaceGeom', l.centroid)";
773 $sSQL .= $this->oContext->excludeSQL(' AND l.place_id');
774 $sSQL .= 'limit 300) i ';
776 $sSQL .= 'order by order_term asc';
778 $sSQL .= " limit $iLimit";
780 if (CONST_Debug) var_dump($sSQL);
782 $aClassPlaceIDs = array_merge($aClassPlaceIDs, chksql($oDB->getCol($sSQL)));
784 if ($this->oContext->hasNearPoint()) {
785 $fRange = $this->oContext->nearRadius();
789 if ($this->oContext->hasNearPoint()) {
790 $sOrderBySQL = $this->oContext->distanceSQL('l.geometry');
792 $sOrderBySQL = "ST_Distance(l.geometry, f.geometry)";
795 $sSQL = 'SELECT distinct l.place_id';
797 $sSQL .= ','.$sOrderBySQL.' as orderterm';
799 $sSQL .= ' FROM placex as l, placex as f';
800 $sSQL .= " WHERE f.place_id in ($sPlaceIDs)";
801 $sSQL .= " AND ST_DWithin(l.geometry, f.centroid, $fRange)";
802 $sSQL .= " AND l.class='".$this->sClass."'";
803 $sSQL .= " AND l.type='".$this->sType."'";
804 $sSQL .= $this->oContext->excludeSQL(' AND l.place_id');
806 $sSQL .= "ORDER BY orderterm ASC";
808 $sSQL .= " limit $iLimit";
810 if (CONST_Debug) var_dump($sSQL);
812 $aClassPlaceIDs = array_merge($aClassPlaceIDs, chksql($oDB->getCol($sSQL)));
817 return $aClassPlaceIDs;
821 /////////// Sort functions
824 public static function bySearchRank($a, $b)
826 if ($a->iSearchRank == $b->iSearchRank) {
827 return $a->iOperator + strlen($a->sHouseNumber)
828 - $b->iOperator - strlen($b->sHouseNumber);
831 return $a->iSearchRank < $b->iSearchRank ? -1 : 1;
834 //////////// Debugging functions
837 public function dumpAsHtmlTableRow(&$aWordIDs)
839 $kf = function ($k) use (&$aWordIDs) {
840 return $aWordIDs[$k];
844 echo "<td>$this->iSearchRank</td>";
845 echo "<td>".join(', ', array_map($kf, $this->aName))."</td>";
846 echo "<td>".join(', ', array_map($kf, $this->aNameNonSearch))."</td>";
847 echo "<td>".join(', ', array_map($kf, $this->aAddress))."</td>";
848 echo "<td>".join(', ', array_map($kf, $this->aAddressNonSearch))."</td>";
849 echo "<td>".$this->sCountryCode."</td>";
850 echo "<td>".Operator::toString($this->iOperator)."</td>";
851 echo "<td>".$this->sClass."</td>";
852 echo "<td>".$this->sType."</td>";
853 echo "<td>".$this->sPostcode."</td>";
854 echo "<td>".$this->sHouseNumber."</td>";