X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/f05ea577f42c5ad4a62ff25ec62fbb60c550ee26..504922ffbecd42eed01dfb9da6bbf2c7aae9a094:/lib/cmd.php diff --git a/lib/cmd.php b/lib/cmd.php index 588bb7d1..5a12f99a 100644 --- a/lib/cmd.php +++ b/lib/cmd.php @@ -1,5 +1,7 @@ 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 (PEAR::isError($oSql)) { - fail($sMsg || $oSql->getMessage(), $oSql->userinfo); + if (!getSettingBool('HTTP_PROXY')) { + return; } - return $oSql; + $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 + ); + + $aContext = array('http' => $aProxyHeader, 'https' => $aProxyHeader); + stream_context_set_default($aContext); }