oDB =& $oDB; $this->oNormalizer = \Transliterator::createFromRules(CONST_Term_Normalization_Rules); $this->oTransliterator = \Transliterator::createFromRules(CONST_Transliteration); } public function checkStatus() { $sSQL = "SELECT word_id FROM word WHERE word_token == 'a'"; $iWordID = $this->oDB->getOne($sSQL); if ($iWordID === false) { throw new Exception('Query failed', 703); } if (!$iWordID) { throw new Exception('No value', 704); } } public function setCountryRestriction($aCountries) { $this->aCountryRestriction = $aCountries; } public function normalizeString($sTerm) { if ($this->oNormalizer === null) { return $sTerm; } return $this->oNormalizer->transliterate($sTerm); } private function makeStandardWord($sTerm) { return trim($this->oTransliterator->transliterate(' '.$sTerm.' ')); } public function tokensForSpecialTerm($sTerm) { $aResults = array(); $sSQL = "SELECT word_id, info->>'class' as class, info->>'type' as type "; $sSQL .= ' FROM word WHERE word_token = :term and type = \'S\''; Debug::printVar('Term', $sTerm); Debug::printSQL($sSQL); $aSearchWords = $this->oDB->getAll($sSQL, array(':term' => $this->makeStandardWord($sTerm))); Debug::printVar('Results', $aSearchWords); foreach ($aSearchWords as $aSearchTerm) { $aResults[] = new \Nominatim\Token\SpecialTerm( $aSearchTerm['word_id'], $aSearchTerm['class'], $aSearchTerm['type'], \Nominatim\Operator::TYPE ); } Debug::printVar('Special term tokens', $aResults); return $aResults; } public function extractTokensFromPhrases(&$aPhrases) { $sNormQuery = ''; $aWordLists = array(); $aTokens = array(); foreach ($aPhrases as $iPhrase => $oPhrase) { $sNormQuery .= ','.$this->normalizeString($oPhrase->getPhrase()); $sPhrase = $this->makeStandardWord($oPhrase->getPhrase()); Debug::printVar('Phrase', $sPhrase); if (strlen($sPhrase) > 0) { $aWords = explode(' ', $sPhrase); Tokenizer::addTokens($aTokens, $aWords); $aWordLists[] = $aWords; } else { $aWordLists[] = array(); } } Debug::printVar('Tokens', $aTokens); Debug::printVar('WordLists', $aWordLists); $oValidTokens = $this->computeValidTokens($aTokens, $sNormQuery); foreach ($aPhrases as $iPhrase => $oPhrase) { $oPhrase->computeWordSets($aWordLists[$iPhrase], $oValidTokens); } return $oValidTokens; } private function computeValidTokens($aTokens, $sNormQuery) { $oValidTokens = new TokenList(); if (!empty($aTokens)) { $this->addTokensFromDB($oValidTokens, $aTokens, $sNormQuery); // Try more interpretations for Tokens that could not be matched. foreach ($aTokens as $sToken) { if ($sToken[0] != ' ' && !$oValidTokens->contains($sToken)) { if (preg_match('/^([0-9]{5}) [0-9]{4}$/', $sToken, $aData)) { // US ZIP+4 codes - merge in the 5-digit ZIP code $oValidTokens->addToken( $sToken, new Token\Postcode(null, $aData[1], 'us') ); } elseif (preg_match('/^[0-9]+$/', $sToken)) { // Unknown single word token with a number. // Assume it is a house number. $oValidTokens->addToken( $sToken, new Token\HouseNumber(null, trim($sToken)) ); } } } } return $oValidTokens; } private function addTokensFromDB(&$oValidTokens, $aTokens, $sNormQuery) { // Check which tokens we have, get the ID numbers $sSQL = 'SELECT word_id, word_token, type'; $sSQL .= " info->>'cc' as country, info->>'postcode' as postcode,"; $sSQL .= " info->>'op' as operator,"; $sSQL .= " info->>'class' as class, info->>'type' as type,"; $sSQL .= " info->>'count' as count"; $sSQL .= ' FROM word WHERE word_token in ('; $sSQL .= join(',', $this->oDB->getDBQuotedList($aTokens)).')'; Debug::printSQL($sSQL); $aDBWords = $this->oDB->getAll($sSQL, null, 'Could not get word tokens.'); foreach ($aDBWords as $aWord) { $iId = (int) $aWord['word_id']; switch ($aWord['type']) { 'C': // country name tokens if ($aWord['country'] === null || ($this->aCountryRestriction && !in_array($aWord['country'], $this->aCountryRestriction)) ) { continue; } $oToken = new Token\Country($iId, $aWord['country']) break; 'H': // house number tokens $oToken = new Token\HouseNumber($iId, $aWord['word_token']); break; 'P': // postcode tokens // Postcodes are not normalized, so they may have content // that makes SQL injection possible. Reject postcodes // that would need special escaping. if ($aWord['postcode'] === null || pg_escape_string($aWord['postcode']) == $aWord['postcode'] ) { continue; } $sNormPostcode = $this->normalizeString($aWord['postcode']); if (strpos($sNormQuery, $sNormPostcode) === false) { continue; } $oToken = new Token\Postcode($iId, $aWord['postcode'], null); break; 'S': // tokens for classification terms (special phrases) if ($aWord['class'] === null || $aWord['type'] === null ) { continue; } $oToken = new Token\SpecialTerm( $iId, $aWord['class'], $aWord['type'], $aWord['op'] ? Operator::NEAR : Operator::NONE ); break; 'W': // full-word tokens $oToken = new Token\Word( $iId, (int) $aWord['count'], substr_count($aWord['word_token'], ' ') ); break; 'w': // partial word terms $oToken = new Token\Partial( $iId, $aWord['word_token'], (int) $aWord['count'] ); break; default: continue; } $oValidTokens->addToken($aWord['word_token'], $oToken); } } /** * Add the tokens from this phrase to the given list of tokens. * * @param string[] $aTokens List of tokens to append. * * @return void */ private static function addTokens(&$aTokens, $aWords) { $iNumWords = count($aWords); for ($i = 0; $i < $iNumWords; $i++) { $sPhrase = $aWords[$i]; $aTokens[$sPhrase] = $sPhrase; for ($j = $i + 1; $j < $iNumWords; $j++) { $sPhrase .= ' '.$aWords[$j]; $aTokens[$sPhrase] = $sPhrase; } } } }