X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/d594bb238b974afa638bcb8f92c069c97914f9b9..71ae7f10f74251ebef13abe8d186276e6255b5d4:/website/lookup.php diff --git a/website/lookup.php b/website/lookup.php index 5fc6c309..f09506a4 100755 --- a/website/lookup.php +++ b/website/lookup.php @@ -1,73 +1,71 @@ getSet('format', array('xml', 'json', 'geojson'), 'xml'); - // Preferred language - $aLangPrefOrder = getPreferredLanguages(); +// Preferred language +$aLangPrefOrder = $oParams->getPreferredLanguages(); - $hLog = logStart($oDB, 'place', $_SERVER['QUERY_STRING'], $aLangPrefOrder); +$oDB =& getDB(); - $aSearchResults = array(); - $aCleanedQueryParts = array(); +$hLog = logStart($oDB, 'place', $_SERVER['QUERY_STRING'], $aLangPrefOrder); - $oPlaceLookup = new PlaceLookup($oDB); - $oPlaceLookup->setLanguagePreference($aLangPrefOrder); - $oPlaceLookup->setIncludeAddressDetails(getParamBool('addressdetails', true)); - $oPlaceLookup->setIncludeExtraTags(getParamBool('extratags', false)); - $oPlaceLookup->setIncludeNameDetails(getParamBool('namedetails', false)); +$aSearchResults = array(); +$aCleanedQueryParts = array(); - $aOsmIds = explode(',', getParamString('osm_ids', '')); +$oPlaceLookup = new Nominatim\PlaceLookup($oDB); +$oPlaceLookup->loadParamArray($oParams); +$oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true)); - if (count($aOsmIds) > CONST_Places_Max_ID_count) - { - userError('Bulk User: Only ' . CONST_Places_Max_ID_count . " ids are allowed in one request."); - } +$aOsmIds = explode(',', $oParams->getString('osm_ids', '')); - foreach ($aOsmIds AS $sItem) - { - // Skip empty sItem - if (empty($sItem)) continue; - - $sType = $sItem[0]; - $iId = (int) substr($sItem, 1); - if ( $iId > 0 && ($sType == 'N' || $sType == 'W' || $sType == 'R') ) - { - $aCleanedQueryParts[] = $sType . $iId; - $oPlace = $oPlaceLookup->lookupOSMID($sType, $iId); - if ($oPlace){ - // we want to use the search-* output templates, so we need to fill - // $aSearchResults and slightly change the (reverse search) oPlace - // key names - $oResult = $oPlace; - unset($oResult['aAddress']); - if (isset($oPlace['aAddress'])) $oResult['address'] = $oPlace['aAddress']; - unset($oResult['langaddress']); - $oResult['name'] = $oPlace['langaddress']; - $aSearchResults[] = $oResult; - } - } - } +if (count($aOsmIds) > CONST_Places_Max_ID_count) { + userError('Bulk User: Only ' . CONST_Places_Max_ID_count . ' ids are allowed in one request.'); +} +foreach ($aOsmIds as $sItem) { + // Skip empty sItem + if (empty($sItem)) continue; + + $sType = $sItem[0]; + $iId = (int) substr($sItem, 1); + if ($iId > 0 && ($sType == 'N' || $sType == 'W' || $sType == 'R')) { + $aCleanedQueryParts[] = $sType . $iId; + $oPlace = $oPlaceLookup->lookupOSMID($sType, $iId); + if ($oPlace) { + // we want to use the search-* output templates, so we need to fill + // $aSearchResults and slightly change the (reverse search) oPlace + // key names + $oResult = $oPlace; + unset($oResult['aAddress']); + if (isset($oPlace['aAddress'])) $oResult['address'] = $oPlace['aAddress']; + unset($oResult['langaddress']); + $oResult['name'] = $oPlace['langaddress']; + $aSearchResults[] = $oResult; + } + } +} - if (CONST_Debug) exit; - $sXmlRootTag = 'lookupresults'; - $sQuery = join(',',$aCleanedQueryParts); - // we initialize these to avoid warnings in our logfile - $sViewBox = ''; - $bShowPolygons = ''; - $aExcludePlaceIDs = []; - $sMoreURL = ''; +if (CONST_Debug) exit; - include(CONST_BasePath.'/lib/template/search-'.$sOutputFormat.'.php'); +$sXmlRootTag = 'lookupresults'; +$sQuery = join(',', $aCleanedQueryParts); +// we initialize these to avoid warnings in our logfile +$sViewBox = ''; +$bShowPolygons = ''; +$aExcludePlaceIDs = array(); +$sMoreURL = ''; + +$sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat; +include(CONST_BasePath.'/lib/template/search-'.$sOutputTemplate.'.php');