Pass auth credentials to svn log while retrieving commit logs
parent
0161a63a0a
commit
9bc83d698e
|
@ -15,6 +15,7 @@ namespace Composer\Downloader;
|
||||||
use Composer\Package\PackageInterface;
|
use Composer\Package\PackageInterface;
|
||||||
use Composer\Util\Svn as SvnUtil;
|
use Composer\Util\Svn as SvnUtil;
|
||||||
use Composer\Repository\VcsRepository;
|
use Composer\Repository\VcsRepository;
|
||||||
|
use Composer\Util\ProcessExecutor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Ben Bieker <mail@ben-bieker.de>
|
* @author Ben Bieker <mail@ben-bieker.de>
|
||||||
|
@ -171,22 +172,34 @@ class SvnDownloader extends VcsDownloader
|
||||||
protected function getCommitLogs($fromReference, $toReference, $path)
|
protected function getCommitLogs($fromReference, $toReference, $path)
|
||||||
{
|
{
|
||||||
if (preg_match('{.*@(\d+)$}', $fromReference) && preg_match('{.*@(\d+)$}', $toReference)) {
|
if (preg_match('{.*@(\d+)$}', $fromReference) && preg_match('{.*@(\d+)$}', $toReference)) {
|
||||||
|
// retrieve the svn base url from the checkout folder
|
||||||
|
$command = sprintf('svn info %s | grep ^URL:', ProcessExecutor::escape($path));
|
||||||
|
if (0 !== $this->process->execute($command, $output, $path)) {
|
||||||
|
throw new \RuntimeException(
|
||||||
|
'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// parse info line like 'URL: https://example.com/my/svn/url'
|
||||||
|
list ($prefix, $baseUrl) = explode(" ", $output, 2);
|
||||||
|
|
||||||
// strip paths from references and only keep the actual revision
|
// strip paths from references and only keep the actual revision
|
||||||
$fromRevision = preg_replace('{.*@(\d+)$}', '$1', $fromReference);
|
$fromRevision = preg_replace('{.*@(\d+)$}', '$1', $fromReference);
|
||||||
$toRevision = preg_replace('{.*@(\d+)$}', '$1', $toReference);
|
$toRevision = preg_replace('{.*@(\d+)$}', '$1', $toReference);
|
||||||
|
|
||||||
$command = sprintf('svn log -r%s:%s --incremental', $fromRevision, $toRevision);
|
$command = sprintf('svn log -r%s:%s --incremental', $fromRevision, $toRevision);
|
||||||
|
|
||||||
if (0 !== $this->process->execute($command, $output, $path)) {
|
$util = new SvnUtil($baseUrl, $this->io, $this->config);
|
||||||
|
$util->setCacheCredentials($this->cacheCredentials);
|
||||||
|
try {
|
||||||
|
return $util->executeLocal($command, $path, null, $this->io->isVerbose());
|
||||||
|
} catch (\RuntimeException $e) {
|
||||||
throw new \RuntimeException(
|
throw new \RuntimeException(
|
||||||
'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput()
|
'Failed to execute ' . $command . "\n\n".$e->getMessage()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
$output = "Could not retrieve changes between $fromReference and $toReference due to missing revision information";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $output;
|
return "Could not retrieve changes between $fromReference and $toReference due to missing revision information";
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function discardChanges($path)
|
protected function discardChanges($path)
|
||||||
|
|
|
@ -85,7 +85,7 @@ class Svn
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute an SVN command and try to fix up the process with credentials
|
* Execute an SVN remote command and try to fix up the process with credentials
|
||||||
* if necessary.
|
* if necessary.
|
||||||
*
|
*
|
||||||
* @param string $command SVN command to run
|
* @param string $command SVN command to run
|
||||||
|
@ -103,6 +103,36 @@ class Svn
|
||||||
$this->config->prohibitUrlByConfig($url, $this->io);
|
$this->config->prohibitUrlByConfig($url, $this->io);
|
||||||
|
|
||||||
$svnCommand = $this->getCommand($command, $url, $path);
|
$svnCommand = $this->getCommand($command, $url, $path);
|
||||||
|
|
||||||
|
return $this->executeWithAuthRetry($svnCommand, $cwd, $path, $verbose);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute an SVN local command and try to fix up the process with credentials
|
||||||
|
* if necessary.
|
||||||
|
*
|
||||||
|
* @param string $command SVN command to run
|
||||||
|
* @param string $path Path argument passed thru to the command
|
||||||
|
* @param string $cwd Working directory
|
||||||
|
* @param bool $verbose Output all output to the user
|
||||||
|
*
|
||||||
|
* @throws \RuntimeException
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function executeLocal($command, $path, $cwd = null, $verbose = false)
|
||||||
|
{
|
||||||
|
$svnCommand = sprintf('%s %s%s %s',
|
||||||
|
$command,
|
||||||
|
'--non-interactive ',
|
||||||
|
$this->getCredentialString(),
|
||||||
|
ProcessExecutor::escape($path)
|
||||||
|
);
|
||||||
|
|
||||||
|
return $this->executeWithAuthRetry($svnCommand, $cwd, $path, $verbose);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function executeWithAuthRetry($command, $cwd, $path, $verbose)
|
||||||
|
{
|
||||||
$output = null;
|
$output = null;
|
||||||
$io = $this->io;
|
$io = $this->io;
|
||||||
$handler = function ($type, $buffer) use (&$output, $io, $verbose) {
|
$handler = function ($type, $buffer) use (&$output, $io, $verbose) {
|
||||||
|
@ -117,7 +147,7 @@ class Svn
|
||||||
$io->writeError($buffer, false);
|
$io->writeError($buffer, false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
$status = $this->process->execute($svnCommand, $handler, $cwd);
|
$status = $this->process->execute($command, $handler, $cwd);
|
||||||
if (0 === $status) {
|
if (0 === $status) {
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
@ -140,7 +170,7 @@ class Svn
|
||||||
// try to authenticate if maximum quantity of tries not reached
|
// try to authenticate if maximum quantity of tries not reached
|
||||||
if ($this->qtyAuthTries++ < self::MAX_QTY_AUTH_TRIES) {
|
if ($this->qtyAuthTries++ < self::MAX_QTY_AUTH_TRIES) {
|
||||||
// restart the process
|
// restart the process
|
||||||
return $this->execute($command, $url, $cwd, $path, $verbose);
|
return $this->executeWithAuthRetry($command, $cwd, $path, $verbose);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new \RuntimeException(
|
throw new \RuntimeException(
|
||||||
|
|
Loading…
Reference in New Issue