2         @define('CONST_ConnectionBucket_PageType', 'Search');
 
   4         require_once(dirname(dirname(__FILE__)).'/lib/init-website.php');
 
   5         require_once(CONST_BasePath.'/lib/log.php');
 
   6         require_once(CONST_BasePath.'/lib/Geocode.php');
 
   8         ini_set('memory_limit', '200M');
 
  13         $fLat = CONST_Default_Lat;
 
  14         $fLon = CONST_Default_Lon;
 
  15         $iZoom = CONST_Default_Zoom;
 
  16         $sTileURL = CONST_Map_Tile_URL;
 
  17         $sTileAttribution = CONST_Map_Tile_Attribution;
 
  19         $oGeocode =& new Geocode($oDB);
 
  21         $aLangPrefOrder = getPreferredLanguages();
 
  22         $oGeocode->setLanguagePreference($aLangPrefOrder);
 
  24         if (CONST_Search_ReversePlanForAll
 
  25                 || isset($aLangPrefOrder['name:de'])
 
  26                 || isset($aLangPrefOrder['name:ru'])
 
  27                 || isset($aLangPrefOrder['name:ja'])
 
  28                 || isset($aLangPrefOrder['name:pl']))
 
  30                 $oGeocode->setReverseInPlan(true);
 
  34         $sOutputFormat = 'html';
 
  35         if (isset($_GET['format']) && ($_GET['format'] == 'html' || $_GET['format'] == 'xml' || $_GET['format'] == 'json' ||  $_GET['format'] == 'jsonv2'))
 
  37                 $sOutputFormat = $_GET['format'];
 
  40         // Show / use polygons
 
  41         if ($sOutputFormat == 'html')
 
  43                 if (isset($_GET['polygon'])) $oGeocode->setIncludePolygonAsText((bool)$_GET['polygon']);
 
  47                 $bAsPoints = (boolean)isset($_GET['polygon']) && $_GET['polygon'];
 
  48                 $bAsGeoJSON = (boolean)isset($_GET['polygon_geojson']) && $_GET['polygon_geojson'];
 
  49                 $bAsKML = (boolean)isset($_GET['polygon_kml']) && $_GET['polygon_kml'];
 
  50                 $bAsSVG = (boolean)isset($_GET['polygon_svg']) && $_GET['polygon_svg'];
 
  51                 $bAsText = (boolean)isset($_GET['polygon_text']) && $_GET['polygon_text'];
 
  52                 if ( ( ($bAsGeoJSON?1:0)
 
  57                                  ) > CONST_PolygonOutput_MaximumTypes)
 
  59                         if (CONST_PolygonOutput_MaximumTypes)
 
  61                                 userError("Select only ".CONST_PolygonOutput_MaximumTypes." polgyon output option");
 
  65                                 userError("Polygon output is disabled");
 
  69                 $oGeocode->setIncludePolygonAsPoints($bAsPoints);
 
  70                 $oGeocode->setIncludePolygonAsText($bAsText);
 
  71                 $oGeocode->setIncludePolygonAsGeoJSON($bAsGeoJSON);
 
  72                 $oGeocode->setIncludePolygonAsKML($bAsKML);
 
  73                 $oGeocode->setIncludePolygonAsSVG($bAsSVG);
 
  76         // Polygon simplification threshold (optional)
 
  78         if (isset($_GET['polygon_threshold'])) $fThreshold = (float)$_GET['polygon_threshold'];
 
  79         $oGeocode->setPolygonSimplificationThreshold($fThreshold);
 
  81         $oGeocode->loadParamArray($_GET);
 
  83         if (CONST_Search_BatchMode && isset($_GET['batch']))
 
  85                 $aBatch = json_decode($_GET['batch'], true);
 
  86                 $aBatchResults = array();
 
  87                 foreach($aBatch as $aBatchParams)
 
  89                         $oBatchGeocode = clone $oGeocode;
 
  90                         $oBatchGeocode->loadParamArray($aBatchParams);
 
  91                         $oBatchGeocode->setQueryFromParams($aBatchParams);
 
  92                         $aSearchResults = $oBatchGeocode->lookup();
 
  93                         $aBatchResults[] = $aSearchResults;
 
  95                 include(CONST_BasePath.'/lib/template/search-batch-json.php');
 
 100                 if (!(isset($_GET['q']) && $_GET['q']) && isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'][0] == '/')
 
 102                                 $sQuery = substr(rawurldecode($_SERVER['PATH_INFO']), 1);
 
 104                                 // reverse order of '/' separated string
 
 105                                 $aPhrases = explode('/', $sQuery);
 
 106                                 $aPhrases = array_reverse($aPhrases);
 
 107                                 $sQuery = join(', ',$aPhrases);
 
 108                                 $oGeocode->setQuery($sQuery);
 
 112                                 $oGeocode->setQueryFromParams($_GET);
 
 116         $hLog = logStart($oDB, 'search', $oGeocode->getQueryString(), $aLangPrefOrder);
 
 118         $aSearchResults = $oGeocode->lookup();
 
 119         if ($aSearchResults === false) $aSearchResults = array();
 
 121         $sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1");
 
 123         logEnd($oDB, $hLog, sizeof($aSearchResults));
 
 125         $bAsText = $oGeocode->getIncludePolygonAsText();
 
 126         $sQuery = $oGeocode->getQueryString();
 
 127         $sViewBox = $oGeocode->getViewBoxString();
 
 128         $bShowPolygons = (isset($_GET['polygon']) && $_GET['polygon']);
 
 129         $aExcludePlaceIDs = $oGeocode->getExcludedPlaceIDs();
 
 131         $sMoreURL = CONST_Website_BaseURL.'search.php?format='.urlencode($sOutputFormat).'&exclude_place_ids='.join(',',$oGeocode->getExcludedPlaceIDs());
 
 132         if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"])) $sMoreURL .= '&accept-language='.$_SERVER["HTTP_ACCEPT_LANGUAGE"];
 
 133         if ($bShowPolygons) $sMoreURL .= '&polygon=1';
 
 134         if ($oGeocode->getIncludeAddressDetails()) $sMoreURL .= '&addressdetails=1';
 
 135         if ($oGeocode->getIncludeExtraTags()) $sMoreURL .= '&extratags=1';
 
 136         if ($oGeocode->getIncludeNameDetails()) $sMoreURL .= '&namedetails=1';
 
 137         if ($sViewBox) $sMoreURL .= '&viewbox='.urlencode($sViewBox);
 
 138         if (isset($_GET['nearlat']) && isset($_GET['nearlon'])) $sMoreURL .= '&nearlat='.(float)$_GET['nearlat'].'&nearlon='.(float)$_GET['nearlon'];
 
 139         $sMoreURL .= '&q='.urlencode($sQuery);
 
 141         if (CONST_Debug) exit;
 
 143         include(CONST_BasePath.'/lib/template/search-'.$sOutputFormat.'.php');