X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/effd8e12af440586594a18a04beb33abed260d15..12168e3ca9421ab1d0195507919c26ce029ce155:/website/lookup.php diff --git a/website/lookup.php b/website/lookup.php index 3529aa5c..b9cc88f7 100755 --- a/website/lookup.php +++ b/website/lookup.php @@ -8,7 +8,7 @@ require_once(CONST_BasePath.'/lib/PlaceLookup.php'); require_once(CONST_BasePath.'/lib/output.php'); ini_set('memory_limit', '200M'); -$oParams = new ParameterParser(); +$oParams = new Nominatim\ParameterParser(); // Format for output $sOutputFormat = $oParams->getSet('format', array('xml', 'json'), 'xml'); @@ -23,31 +23,25 @@ $hLog = logStart($oDB, 'place', $_SERVER['QUERY_STRING'], $aLangPrefOrder); $aSearchResults = array(); $aCleanedQueryParts = array(); -$oPlaceLookup = new PlaceLookup($oDB); -$oPlaceLookup->setLanguagePreference($aLangPrefOrder); -$oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true)); -$oPlaceLookup->setIncludeExtraTags($oParams->getBool('extratags', false)); -$oPlaceLookup->setIncludeNameDetails($oParams->getBool('namedetails', false)); +$oPlaceLookup = new Nominatim\PlaceLookup($oDB); +$oPlaceLookup->loadParamArray($oParams); $aOsmIds = explode(',', $oParams->getString('osm_ids', '')); -if (count($aOsmIds) > CONST_Places_Max_ID_count) -{ - userError('Bulk User: Only ' . CONST_Places_Max_ID_count . " ids are allowed in one request."); +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) -{ +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') ) - { + if ($iId > 0 && ($sType == 'N' || $sType == 'W' || $sType == 'R')) { $aCleanedQueryParts[] = $sType . $iId; $oPlace = $oPlaceLookup->lookupOSMID($sType, $iId); - if ($oPlace){ + 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 @@ -65,7 +59,7 @@ foreach ($aOsmIds AS $sItem) if (CONST_Debug) exit; $sXmlRootTag = 'lookupresults'; -$sQuery = join(',',$aCleanedQueryParts); +$sQuery = join(',', $aCleanedQueryParts); // we initialize these to avoid warnings in our logfile $sViewBox = ''; $bShowPolygons = '';