move moreURL computation into Geocode and include all params

Fixes #678.
This commit is contained in:
Sarah Hoffmann
2017-03-23 00:16:58 +01:00
parent e841422b1f
commit 09f1661638
7 changed files with 57 additions and 58 deletions

View File

@@ -67,19 +67,45 @@ class Geocode
$this->aLangPrefOrder = $aLangPref; $this->aLangPrefOrder = $aLangPref;
} }
public function getIncludeAddressDetails() public function getMoreUrlParams()
{ {
return $this->bIncludeAddressDetails; if ($this->aStructuredQuery) {
} $aParams = $this->aStructuredQuery;
} else {
$aParams = array('q' => $this->sQuery);
}
public function getIncludeExtraTags() if ($this->aExcludePlaceIDs) {
{ $aParams['exclude_place_ids'] = implode(',', $this->aExcludePlaceIDs);
return $this->bIncludeExtraTags; }
}
public function getIncludeNameDetails() if ($this->bIncludeAddressDetails) $aParams['addressdetails'] = '1';
{ if ($this->bIncludeExtraTags) $aParams['extratags'] = '1';
return $this->bIncludeNameDetails; if ($this->bIncludeNameDetails) $aParams['namedetails'] = '1';
if ($this->bIncludePolygonAsPoints) $aParams['polygon'] = '1';
if ($this->bIncludePolygonAsText) $aParams['polygon_text'] = '1';
if ($this->bIncludePolygonAsGeoJSON) $aParams['polygon_geojson'] = '1';
if ($this->bIncludePolygonAsKML) $aParams['polygon_kml'] = '1';
if ($this->bIncludePolygonAsSVG) $aParams['polygon_svg'] = '1';
if ($this->fPolygonSimplificationThreshold > 0.0) {
$aParams['polygon_threshold'] = $this->fPolygonSimplificationThreshold;
}
if ($this->bBoundedSearch) $aParams['bounded'] = '1';
if (!$this->bDeDupe) $aParams['dedupe'] = '0';
if ($this->aCountryCodes) {
$aParams['countrycodes'] = implode(',', $this->aCountryCodes);
}
if ($this->aViewBox) {
$aParams['viewbox'] = $this->aViewBox[0].','.$this->aViewBox[3]
.','.$this->aViewBox[2].','.$this->aViewBox[1];
}
return $aParams;
} }
public function setIncludePolygonAsPoints($b = true) public function setIncludePolygonAsPoints($b = true)
@@ -121,23 +147,6 @@ class Geocode
$this->iLimit = $iLimit + min($iLimit, 10); $this->iLimit = $iLimit + min($iLimit, 10);
} }
public function getExcludedPlaceIDs()
{
return $this->aExcludePlaceIDs;
}
public function getCountryCodes()
{
return $this->aCountryCodes;
}
public function getViewBoxString()
{
if (!$this->aViewBox) return null;
return $this->aViewBox[0].','.$this->aViewBox[3].','.$this->aViewBox[2].','.$this->aViewBox[1];
}
public function setFeatureType($sFeatureType) public function setFeatureType($sFeatureType)
{ {
switch ($sFeatureType) { switch ($sFeatureType) {
@@ -341,7 +350,7 @@ class Geocode
return true; return true;
} }
public function setStructuredQuery($sAmentiy = false, $sStreet = false, $sCity = false, $sCounty = false, $sState = false, $sCountry = false, $sPostalCode = false) public function setStructuredQuery($sAmenity = false, $sStreet = false, $sCity = false, $sCounty = false, $sState = false, $sCountry = false, $sPostalCode = false)
{ {
$this->sQuery = false; $this->sQuery = false;
@@ -353,7 +362,7 @@ class Geocode
$this->aStructuredQuery = array(); $this->aStructuredQuery = array();
$this->sAllowedTypesSQLList = ''; $this->sAllowedTypesSQLList = '';
$this->loadStructuredAddressElement($sAmentiy, 'amenity', 26, 30, false); $this->loadStructuredAddressElement($sAmenity, 'amenity', 26, 30, false);
$this->loadStructuredAddressElement($sStreet, 'street', 26, 30, false); $this->loadStructuredAddressElement($sStreet, 'street', 26, 30, false);
$this->loadStructuredAddressElement($sCity, 'city', 14, 24, false); $this->loadStructuredAddressElement($sCity, 'city', 14, 24, false);
$this->loadStructuredAddressElement($sCounty, 'county', 9, 13, false); $this->loadStructuredAddressElement($sCounty, 'county', 9, 13, false);

View File

@@ -17,12 +17,11 @@
<div class="form-group search-button-group"> <div class="form-group search-button-group">
<button type="submit" class="btn btn-primary btn-sm">Search</button> <button type="submit" class="btn btn-primary btn-sm">Search</button>
<?php if (CONST_Search_AreaPolygons) { ?> <?php if (CONST_Search_AreaPolygons) { ?>
<!-- <input type="checkbox" value="1" name="polygon_geojson" <?php if ($bAsGeoJSON) echo "checked='checked'"; ?>/> Highlight -->
<input type="hidden" value="1" name="polygon_geojson" /> <input type="hidden" value="1" name="polygon_geojson" />
<?php } ?> <?php } ?>
<input type="hidden" name="viewbox" value="<?php echo $sViewBox; ?>" /> <input type="hidden" name="viewbox" value="<?php if (isset($aMoreParams['viewbox'])) echo ($aMoreParams['viewbox']); ?>" />
<div class="checkbox-inline"> <div class="checkbox-inline">
<input type="checkbox" id="use_viewbox" <?php if ($sViewBox) echo "checked='checked'"; ?>> <input type="checkbox" id="use_viewbox" <?php if (isset($aMoreParams['viewbox'])) echo "checked='checked'"; ?>>
<label for="use_viewbox">apply viewbox</label> <label for="use_viewbox">apply viewbox</label>
</div> </div>
</div> </div>

View File

@@ -20,7 +20,7 @@ foreach($aSearchResults as $iResNum => $aPointDetails)
{ {
$aPlace['boundingbox'] = $aPointDetails['aBoundingBox']; $aPlace['boundingbox'] = $aPointDetails['aBoundingBox'];
if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons) if (isset($aPointDetails['aPolyPoints']))
{ {
$aPlace['polygonpoints'] = $aPointDetails['aPolyPoints']; $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
} }

View File

@@ -19,7 +19,7 @@ foreach($aSearchResults as $iResNum => $aPointDetails)
{ {
$aPlace['boundingbox'] = $aPointDetails['aBoundingBox']; $aPlace['boundingbox'] = $aPointDetails['aBoundingBox'];
if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons) if (isset($aPointDetails['aPolyPoints']))
{ {
$aPlace['polygonpoints'] = $aPointDetails['aPolyPoints']; $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
} }

View File

@@ -10,16 +10,13 @@ echo (isset($sXmlRootTag)?$sXmlRootTag:'searchresults');
echo " timestamp='".date(DATE_RFC822)."'"; echo " timestamp='".date(DATE_RFC822)."'";
echo " attribution='Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright'"; echo " attribution='Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright'";
echo " querystring='".htmlspecialchars($sQuery, ENT_QUOTES)."'"; echo " querystring='".htmlspecialchars($sQuery, ENT_QUOTES)."'";
if ($sViewBox) echo " viewbox='".htmlspecialchars($sViewBox, ENT_QUOTES)."'"; if (isset($aMoreParams['viewbox'])) echo " viewbox='".htmlspecialchars($aMoreParams['viewbox'], ENT_QUOTES)."'";
echo " polygon='".($bShowPolygons?'true':'false')."'"; echo " polygon='".(isset($aMoreParams['polygon'])?'true':'false')."'";
if (sizeof($aExcludePlaceIDs)) if (isset($aMoreParams['exclude_place_ids']))
{ {
echo " exclude_place_ids='".htmlspecialchars(join(',',$aExcludePlaceIDs))."'"; echo " exclude_place_ids='".htmlspecialchars($aMoreParams['exclude_place_ids'])."'";
}
if ($sMoreURL)
{
echo " more_url='".htmlspecialchars($sMoreURL)."'";
} }
echo " more_url='".htmlspecialchars($sMoreURL)."'";
echo ">\n"; echo ">\n";
foreach($aSearchResults as $iResNum => $aResult) foreach($aSearchResults as $iResNum => $aResult)
@@ -39,7 +36,7 @@ foreach($aSearchResults as $iResNum => $aResult)
echo join(',',$aResult['aBoundingBox']); echo join(',',$aResult['aBoundingBox']);
echo '"'; echo '"';
if ($bShowPolygons && isset($aResult['aPolyPoints'])) if (isset($aResult['aPolyPoints']))
{ {
echo ' polygonpoints=\''; echo ' polygonpoints=\'';
echo json_encode($aResult['aPolyPoints']); echo json_encode($aResult['aPolyPoints']);

View File

@@ -89,7 +89,7 @@ Feature: Simple Tests
| attr | value | | attr | value |
| querystring | xnznxvcx | | querystring | xnznxvcx |
| polygon | false | | polygon | false |
| more_url | .*format=xml.*q=xnznxvcx.* | | more_url | .*q=xnznxvcx.*format=xml |
Scenario: Empty XML search with special XML characters Scenario: Empty XML search with special XML characters
When sending xml search query "xfdghn&zxn"xvbyx<vxx>cssdex" When sending xml search query "xfdghn&zxn"xvbyx<vxx>cssdex"
@@ -97,7 +97,7 @@ Feature: Simple Tests
| attr | value | | attr | value |
| querystring | xfdghn&zxn"xvbyx<vxx>cssdex | | querystring | xfdghn&zxn"xvbyx<vxx>cssdex |
| polygon | false | | polygon | false |
| more_url | .*format=xml.*q=xfdghn%26zxn%22xvbyx%3Cvxx%3Ecssdex.* | | more_url | .*q=xfdghn%26zxn%22xvbyx%3Cvxx%3Ecssdex.*format=xml |
Scenario: Empty XML search with viewbox Scenario: Empty XML search with viewbox
When sending xml search query "xnznxvcx" When sending xml search query "xnznxvcx"
@@ -225,4 +225,4 @@ Feature: Simple Tests
| pl,1,,invalid,undefined,%3Cb%3E,bo,, | | pl,1,,invalid,undefined,%3Cb%3E,bo,, |
Then result header contains Then result header contains
| attr | value | | attr | value |
| more_url | .*&countrycodes=pl,bo&.* | | more_url | .*&countrycodes=pl%2Cbo&.* |

View File

@@ -99,19 +99,13 @@ if ($sOutputFormat=='html') {
logEnd($oDB, $hLog, sizeof($aSearchResults)); logEnd($oDB, $hLog, sizeof($aSearchResults));
$sQuery = $oGeocode->getQueryString(); $sQuery = $oGeocode->getQueryString();
$sViewBox = $oGeocode->getViewBoxString();
$bShowPolygons = (isset($_GET['polygon']) && $_GET['polygon']);
$aExcludePlaceIDs = $oGeocode->getExcludedPlaceIDs();
$sMoreURL = CONST_Website_BaseURL.'search.php?format='.$sOutputFormat.'&exclude_place_ids='.join(',', $aExcludePlaceIDs); $aMoreParams = $oGeocode->getMoreUrlParams();
if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"])) $sMoreURL .= '&accept-language='.$_SERVER["HTTP_ACCEPT_LANGUAGE"]; if ($sOutputFormat != 'html') $aMoreParams['format'] = $sOutputFormat;
if ($bShowPolygons) $sMoreURL .= '&polygon=1'; if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"])) {
if ($oGeocode->getIncludeAddressDetails()) $sMoreURL .= '&addressdetails=1'; $aMoreParams['accept-language'] = $_SERVER["HTTP_ACCEPT_LANGUAGE"];
if ($oGeocode->getIncludeExtraTags()) $sMoreURL .= '&extratags=1'; }
if ($oGeocode->getIncludeNameDetails()) $sMoreURL .= '&namedetails=1'; $sMoreURL = CONST_Website_BaseURL.'search.php?'.http_build_query($aMoreParams);
if ($oGeocode->getCountryCodes()) $sMoreURL .= '&countrycodes='.join(',', $oGeocode->getCountryCodes());
if ($sViewBox) $sMoreURL .= '&viewbox='.urlencode($sViewBox);
$sMoreURL .= '&q='.urlencode($sQuery);
if (CONST_Debug) exit; if (CONST_Debug) exit;