X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/832547f192904a9ec92e173c27a91e0874fcc757..e6d9485c4ae566896f4e9e474d7d3588bc7b4b25:/lib/cmd.php diff --git a/lib/cmd.php b/lib/cmd.php index a5a6ba5b..5a12f99a 100644 --- a/lib/cmd.php +++ b/lib/cmd.php @@ -1,14 +1,14 @@ = $iSize || $aArg[$i][0] == '-') showUsage($aSpec, $bExitOnError, 'Parameter of \''.$aLine[0].'\' is missing'); - switch ($aLine[6]) - { - case 'realpath': - $xVal[] = realpath($aArg[$i]); - break; - case 'realdir': - $sPath = realpath(dirname($aArg[$i])); - if ($sPath) - $xVal[] = $sPath . '/' . basename($aArg[$i]); - else - $xVal[] = $sPath; - break; - case 'bool': - $xVal[] = (bool)$aArg[$i]; - break; - case 'int': - $xVal[] = (int)$aArg[$i]; - break; - case 'float': - $xVal[] = (float)$aArg[$i]; - break; - default: - $xVal[] = $aArg[$i]; - break; + switch ($aLine[6]) { + case 'realpath': + $xVal[] = realpath($aArg[$i]); + break; + case 'realdir': + $sPath = realpath(dirname($aArg[$i])); + if ($sPath) { + $xVal[] = $sPath . '/' . basename($aArg[$i]); + } else { + $xVal[] = $sPath; + } + break; + case 'bool': + $xVal[] = (bool)$aArg[$i]; + break; + case 'int': + $xVal[] = (int)$aArg[$i]; + break; + case 'float': + $xVal[] = (float)$aArg[$i]; + break; + default: + $xVal[] = $aArg[$i]; + break; } } if ($aLine[4] == 1) $xVal = $xVal[0]; - } - else - { + } else { $xVal = true; } - } - else - { + } else { fail('Variable numbers of params not yet supported'); } - if ($aLine[3] > 1) - { + if ($aLine[3] > 1) { if (!array_key_exists($aLine[0], $aResult)) $aResult[$aLine[0]] = array(); $aResult[$aLine[0]][] = $xVal; - } - else - { + } else { $aResult[$aLine[0]] = $xVal; } - } - else - { + } else { $bUnknown = $aArg[$i]; } } @@ -92,18 +78,15 @@ function getCmdOpt($aArg, $aSpec, &$aResult, $bExitOnError = false, $bExitOnUnkn if (array_key_exists('help', $aResult)) showUsage($aSpec); if ($bUnknown && $bExitOnUnknown) showUsage($aSpec, $bExitOnError, 'Unknown option \''.$bUnknown.'\''); - foreach($aSpec as $aLine) - { - if (is_array($aLine)) - { + foreach ($aSpec as $aLine) { + if (is_array($aLine)) { if ($aCounts[$aLine[0]] < $aLine[2]) showUsage($aSpec, $bExitOnError, 'Option \''.$aLine[0].'\' is missing'); if ($aCounts[$aLine[0]] > $aLine[3]) showUsage($aSpec, $bExitOnError, 'Option \''.$aLine[0].'\' is pressent too many times'); - switch ($aLine[6]) - { - case 'bool': - if (!array_key_exists($aLine[0], $aResult)) - $aResult[$aLine[0]] = false; - break; + switch ($aLine[6]) { + case 'bool': + if (!array_key_exists($aLine[0], $aResult)) + $aResult[$aLine[0]] = false; + break; } } } @@ -112,31 +95,25 @@ function getCmdOpt($aArg, $aSpec, &$aResult, $bExitOnError = false, $bExitOnUnkn function showUsage($aSpec, $bExit = false, $sError = false) { - if ($sError) - { + if ($sError) { echo basename($_SERVER['argv'][0]).': '.$sError."\n"; echo 'Try `'.basename($_SERVER['argv'][0]).' --help` for more information.'."\n"; exit; } - echo "Usage: ".basename($_SERVER['argv'][0])."\n"; + echo 'Usage: '.basename($_SERVER['argv'][0])."\n"; $bFirst = true; - foreach($aSpec as $aLine) - { - if (is_array($aLine)) - { - if ($bFirst) - { + foreach ($aSpec as $aLine) { + if (is_array($aLine)) { + if ($bFirst) { $bFirst = false; echo "\n"; } $aNames = array(); if ($aLine[1]) $aNames[] = '-'.$aLine[1]; if ($aLine[0]) $aNames[] = '--'.$aLine[0]; - $sName = join(', ',$aNames); - echo ' '.$sName.str_repeat(' ',30-strlen($sName)).$aLine[7]."\n"; - } - else - { + $sName = join(', ', $aNames); + echo ' '.$sName.str_repeat(' ', 30-strlen($sName)).$aLine[7]."\n"; + } else { echo $aLine."\n"; } } @@ -144,12 +121,104 @@ function showUsage($aSpec, $bExit = false, $sError = false) exit; } -function chksql($oSql, $sMsg = false) +function info($sMsg) +{ + echo date('Y-m-d H:i:s == ').$sMsg."\n"; +} + +$aWarnings = array(); + + +function warn($sMsg) { - if (PEAR::isError($oSql)) - { - fail($sMsg || $oSql->getMessage(), $oSql->userinfo); + $GLOBALS['aWarnings'][] = $sMsg; + echo date('Y-m-d H:i:s == ').'WARNING: '.$sMsg."\n"; +} + + +function repeatWarnings() +{ + foreach ($GLOBALS['aWarnings'] as $sMsg) { + echo ' * ',$sMsg."\n"; + } +} + + +function runSQLScript($sScript, $bfatal = true, $bVerbose = false, $bIgnoreErrors = false) +{ + // Convert database DSN to psql parameters + $aDSNInfo = \Nominatim\DB::parseDSN(getSetting('DATABASE_DSN')); + if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432; + + $oCmd = new \Nominatim\Shell('psql'); + $oCmd->addParams('--port', $aDSNInfo['port']); + $oCmd->addParams('--dbname', $aDSNInfo['database']); + if (isset($aDSNInfo['hostspec']) && $aDSNInfo['hostspec']) { + $oCmd->addParams('--host', $aDSNInfo['hostspec']); } + if (isset($aDSNInfo['username']) && $aDSNInfo['username']) { + $oCmd->addParams('--username', $aDSNInfo['username']); + } + if (isset($aDSNInfo['password'])) { + $oCmd->addEnvPair('PGPASSWORD', $aDSNInfo['password']); + } + if (!$bVerbose) { + $oCmd->addParams('--quiet'); + } + if ($bfatal && !$bIgnoreErrors) { + $oCmd->addParams('-v', 'ON_ERROR_STOP=1'); + } + + $aDescriptors = array( + 0 => array('pipe', 'r'), + 1 => STDOUT, + 2 => STDERR + ); + $ahPipes = null; + $hProcess = @proc_open($oCmd->escapedCmd(), $aDescriptors, $ahPipes, null, $oCmd->aEnv); + if (!is_resource($hProcess)) { + fail('unable to start pgsql'); + } + + if (!$bVerbose) { + fwrite($ahPipes[0], 'set client_min_messages to WARNING;'); + } + + while (strlen($sScript)) { + $iWritten = fwrite($ahPipes[0], $sScript); + if ($iWritten <= 0) break; + $sScript = substr($sScript, $iWritten); + } + fclose($ahPipes[0]); + $iReturn = proc_close($hProcess); + if ($bfatal && $iReturn > 0) { + fail("pgsql returned with error code ($iReturn)"); + } +} + +function setupHTTPProxy() +{ + if (!getSettingBool('HTTP_PROXY')) { + return; + } + + $sProxy = 'tcp://'.getSetting('HTTP_PROXY_HOST').':'.getSetting('HTTP_PROXY_PROT'); + $aHeaders = array(); + + $sLogin = getSetting('HTTP_PROXY_LOGIN'); + $sPassword = getSetting('HTTP_PROXY_PASSWORD'); + + if ($sLogin && $sPassword) { + $sAuth = base64_encode($sLogin.':'.$sPassword); + $aHeaders = array('Proxy-Authorization: Basic '.$sAuth); + } + + $aProxyHeader = array( + 'proxy' => $sProxy, + 'request_fulluri' => true, + 'header' => $aHeaders + ); - return $oSql; + $aContext = array('http' => $aProxyHeader, 'https' => $aProxyHeader); + stream_context_set_default($aContext); }