From: Sarah Hoffmann Date: Sun, 6 Jun 2021 13:28:21 +0000 (+0200) Subject: remove deprecated query interface X-Git-Tag: v4.0.0~66^2 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/7383f05e45d6a619cddcb107963af8fbd8d73d4e?hp=-c remove deprecated query interface Searches can now be done via the thin API wrapper. --- 7383f05e45d6a619cddcb107963af8fbd8d73d4e diff --git a/lib-php/admin/query.php b/lib-php/admin/query.php deleted file mode 100644 index 21121fbd..00000000 --- a/lib-php/admin/query.php +++ /dev/null @@ -1,90 +0,0 @@ -connect(); - -if (isset($aCMDResult['nodedupe'])) $aCMDResult['dedupe'] = 'false'; - -$oParams = new Nominatim\ParameterParser($aCMDResult); - -$aSearchParams = array( - 'search', - 'amenity', - 'street', - 'city', - 'county', - 'state', - 'country', - 'postalcode' - ); - -if (!$oParams->hasSetAny($aSearchParams)) { - showUsage($aCMDOptions, true); - return 1; -} - -$oGeocode = new Nominatim\Geocode($oDB); - -$oGeocode->setLanguagePreference($oParams->getPreferredLanguages(false)); -$oGeocode->loadParamArray($oParams); - -if ($oParams->getBool('search')) { - $oGeocode->setQuery($aCMDResult['search']); -} else { - $oGeocode->setQueryFromParams($oParams); -} - -$aSearchResults = $oGeocode->lookup(); - -echo json_encode($aSearchResults, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)."\n";