2010-10-27 18:05:42 +04:00
|
|
|
<?php
|
2016-09-04 04:19:48 +03:00
|
|
|
@define('CONST_ConnectionBucket_PageType', 'Search');
|
|
|
|
|
|
|
|
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/Geocode.php');
|
|
|
|
require_once(CONST_BasePath.'/lib/output.php');
|
|
|
|
ini_set('memory_limit', '200M');
|
|
|
|
|
|
|
|
$oDB =& getDB();
|
2016-09-16 03:27:36 +03:00
|
|
|
$oParams = new Nominatim\ParameterParser();
|
2016-09-04 04:19:48 +03:00
|
|
|
|
2016-09-16 03:27:36 +03:00
|
|
|
$oGeocode = new Nominatim\Geocode($oDB);
|
2016-09-04 04:19:48 +03:00
|
|
|
|
|
|
|
$aLangPrefOrder = $oParams->getPreferredLanguages();
|
|
|
|
$oGeocode->setLanguagePreference($aLangPrefOrder);
|
|
|
|
|
|
|
|
if (CONST_Search_ReversePlanForAll
|
|
|
|
|| isset($aLangPrefOrder['name:de'])
|
|
|
|
|| isset($aLangPrefOrder['name:ru'])
|
|
|
|
|| isset($aLangPrefOrder['name:ja'])
|
2016-09-08 04:16:22 +03:00
|
|
|
|| isset($aLangPrefOrder['name:pl'])
|
|
|
|
) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$oGeocode->setReverseInPlan(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Format for output
|
|
|
|
$sOutputFormat = $oParams->getSet('format', array('html', 'xml', 'json', 'jsonv2'), 'html');
|
|
|
|
|
2017-10-26 22:21:21 +03:00
|
|
|
$sForcedGeometry = ($sOutputFormat == 'html') ? 'geojson' : null;
|
2017-10-24 00:28:00 +03:00
|
|
|
$oGeocode->loadParamArray($oParams, $sForcedGeometry);
|
2016-09-04 04:19:48 +03:00
|
|
|
|
2016-09-08 04:16:22 +03:00
|
|
|
if (CONST_Search_BatchMode && isset($_GET['batch'])) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$aBatch = json_decode($_GET['batch'], true);
|
|
|
|
$aBatchResults = array();
|
2016-09-08 04:16:22 +03:00
|
|
|
foreach ($aBatch as $aBatchParams) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$oBatchGeocode = clone $oGeocode;
|
2016-09-16 03:27:36 +03:00
|
|
|
$oBatchParams = new Nominatim\ParameterParser($aBatchParams);
|
2016-09-04 04:19:48 +03:00
|
|
|
$oBatchGeocode->loadParamArray($oBatchParams);
|
|
|
|
$oBatchGeocode->setQueryFromParams($oBatchParams);
|
|
|
|
$aSearchResults = $oBatchGeocode->lookup();
|
|
|
|
$aBatchResults[] = $aSearchResults;
|
|
|
|
}
|
|
|
|
include(CONST_BasePath.'/lib/template/search-batch-json.php');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$oGeocode->setQueryFromParams($oParams);
|
|
|
|
|
|
|
|
if (!$oGeocode->getQueryString()
|
2016-09-11 06:22:51 +03:00
|
|
|
&& isset($_SERVER['PATH_INFO'])
|
|
|
|
&& $_SERVER['PATH_INFO'][0] == '/'
|
|
|
|
) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$sQuery = substr(rawurldecode($_SERVER['PATH_INFO']), 1);
|
|
|
|
|
|
|
|
// reverse order of '/' separated string
|
|
|
|
$aPhrases = explode('/', $sQuery);
|
|
|
|
$aPhrases = array_reverse($aPhrases);
|
2016-09-11 06:22:51 +03:00
|
|
|
$sQuery = join(', ', $aPhrases);
|
2016-09-04 04:19:48 +03:00
|
|
|
$oGeocode->setQuery($sQuery);
|
|
|
|
}
|
|
|
|
|
|
|
|
$hLog = logStart($oDB, 'search', $oGeocode->getQueryString(), $aLangPrefOrder);
|
|
|
|
|
|
|
|
$aSearchResults = $oGeocode->lookup();
|
|
|
|
|
2016-09-08 04:16:22 +03:00
|
|
|
if ($sOutputFormat=='html') {
|
2016-09-04 04:19:48 +03:00
|
|
|
$sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"));
|
|
|
|
}
|
|
|
|
logEnd($oDB, $hLog, sizeof($aSearchResults));
|
|
|
|
|
|
|
|
$sQuery = $oGeocode->getQueryString();
|
2017-03-23 02:16:58 +03:00
|
|
|
|
|
|
|
$aMoreParams = $oGeocode->getMoreUrlParams();
|
|
|
|
if ($sOutputFormat != 'html') $aMoreParams['format'] = $sOutputFormat;
|
2017-10-26 22:21:21 +03:00
|
|
|
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
|
|
|
|
$aMoreParams['accept-language'] = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
|
2017-03-23 02:16:58 +03:00
|
|
|
}
|
|
|
|
$sMoreURL = CONST_Website_BaseURL.'search.php?'.http_build_query($aMoreParams);
|
2016-09-04 04:19:48 +03:00
|
|
|
|
|
|
|
if (CONST_Debug) exit;
|
|
|
|
|
2018-03-10 03:30:22 +03:00
|
|
|
$sOutputTemplate = ($sOutputFormat=='jsonv2' ? 'json' : $sOutputFormat);
|
|
|
|
include(CONST_BasePath.'/lib/template/search-'.$sOutputTemplate.'.php');
|