Nominatim/website/lookup.php

72 lines
2.3 KiB
PHP
Raw Normal View History

<?php
2016-09-04 04:19:48 +03:00
@define('CONST_ConnectionBucket_PageType', 'Reverse');
2016-09-04 04:19:48 +03:00
require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
require_once(CONST_BasePath.'/lib/init-website.php');
require_once(CONST_BasePath.'/lib/log.php');
require_once(CONST_BasePath.'/lib/PlaceLookup.php');
require_once(CONST_BasePath.'/lib/output.php');
ini_set('memory_limit', '200M');
$oParams = new Nominatim\ParameterParser();
2016-09-04 04:19:48 +03:00
// Format for output
$sOutputFormat = $oParams->getSet('format', array('xml', 'json', 'geojson'), 'xml');
2016-09-04 04:19:48 +03:00
// Preferred language
$aLangPrefOrder = $oParams->getPreferredLanguages();
2016-09-04 04:19:48 +03:00
$oDB =& getDB();
2016-09-04 04:19:48 +03:00
$hLog = logStart($oDB, 'place', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
2016-09-04 04:19:48 +03:00
$aSearchResults = array();
$aCleanedQueryParts = array();
$oPlaceLookup = new Nominatim\PlaceLookup($oDB);
$oPlaceLookup->loadParamArray($oParams);
$oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true));
2016-09-04 04:19:48 +03:00
$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.');
2016-09-04 04:19:48 +03:00
}
foreach ($aOsmIds as $sItem) {
2016-09-04 04:19:48 +03:00
// Skip empty sItem
if (empty($sItem)) continue;
$sType = $sItem[0];
$iId = (int) substr($sItem, 1);
if ($iId > 0 && ($sType == 'N' || $sType == 'W' || $sType == 'R')) {
2016-09-04 04:19:48 +03:00
$aCleanedQueryParts[] = $sType . $iId;
$oPlace = $oPlaceLookup->lookupOSMID($sType, $iId);
if ($oPlace) {
2016-09-04 04:19:48 +03:00
// 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;
}
}
}
2016-09-04 04:19:48 +03:00
if (CONST_Debug) exit;
2016-09-04 04:19:48 +03:00
$sXmlRootTag = 'lookupresults';
$sQuery = join(',', $aCleanedQueryParts);
2016-09-04 04:19:48 +03:00
// we initialize these to avoid warnings in our logfile
$sViewBox = '';
$bShowPolygons = '';
$aExcludePlaceIDs = array();
2016-09-04 04:19:48 +03:00
$sMoreURL = '';
$sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat;
include(CONST_BasePath.'/lib/template/search-'.$sOutputTemplate.'.php');