}
}
-function checkModulePresence()
+function getOsm2pgsqlBinary()
{
- // Try accessing the C module, so we know early if something is wrong
- // and can simply error out.
- $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);';
-
- $oDB = &getDB();
- $oResult = $oDB->query($sSQL);
+ return getSetting('OSM2PGSQL_BINARY', CONST_Default_Osm2pgsql);
+}
- $bResult = true;
+function getImportStyle()
+{
+ $sStyle = getSetting('IMPORT_STYLE');
- if (PEAR::isError($oResult)) {
- echo "\nERROR: Failed to load nominatim module. Reason:\n";
- echo $oResult->userinfo . "\n\n";
- $bResult = false;
+ if (in_array($sStyle, array('admin', 'street', 'address', 'full', 'extratags'))) {
+ return CONST_DataDir.'/settings/import-'.$sStyle.'.style';
}
- return $bResult;
+
+ return $sStyle;
}