X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e5eb7ecdc1e0dd054a3aa166d32391c115d20405..bb6c8d45fe688b593caedf359a3c19acfec7dad1:/lib/setup_functions.php diff --git a/lib/setup_functions.php b/lib/setup_functions.php index 43f30a09..dc84cf92 100755 --- a/lib/setup_functions.php +++ b/lib/setup_functions.php @@ -15,17 +15,20 @@ function checkInFile($sOSMFile) } } -function checkModulePresence() +function getOsm2pgsqlBinary() { - // Try accessing the C module, so we know early if something is wrong. - // Raises Nominatim\DatabaseError on failure + $sBinary = getSetting('OSM2PGSQL_BINARY'); - $sModulePath = CONST_Database_Module_Path; - $sSQL = "CREATE FUNCTION nominatim_test_import_func(text) RETURNS text AS '"; - $sSQL .= $sModulePath . "/nominatim.so', 'transliteration' LANGUAGE c IMMUTABLE STRICT"; - $sSQL .= ';DROP FUNCTION nominatim_test_import_func(text);'; + return $sBinary ? $sBinary : CONST_Default_Osm2pgsql; +} + +function getImportStyle() +{ + $sStyle = getSetting('IMPORT_STYLE'); + + if (in_array($sStyle, array('admin', 'street', 'address', 'full', 'extratags'))) { + return CONST_DataDir.'/settings/import-'.$sStyle.'.style'; + } - $oDB = new \Nominatim\DB(); - $oDB->connect(); - $oDB->exec($sSQL, null, 'Database server failed to load '.$sModulePath.'/nominatim.so module'); + return $sStyle; }