Added an SvnDownloader
The Svn Downloader can be used like the already implemented GitDownloader, for example { "name": "my-project", "version": "1.0.0", "repositories": { "MyRepo": { "package": { "name": "mypackage", "version": "2.0", "source": { "url": "https://repo.com/svnrepo", "type": "svn", "reference": "tags/v2.0" } } } }, "require": { "mypackage": "2.0" } }pull/116/head
parent
1d5a03eedc
commit
0e6f3834ec
|
@ -29,6 +29,7 @@ $rm->setRepositoryClass('package', 'Composer\Repository\PackageRepository');
|
|||
// initialize download manager
|
||||
$dm = new Downloader\DownloadManager();
|
||||
$dm->setDownloader('git', new Downloader\GitDownloader());
|
||||
$dm->setDownloader('svn', new Downloader\SvnDownloader());
|
||||
$dm->setDownloader('hg', new Downloader\HgDownloader());
|
||||
$dm->setDownloader('pear', new Downloader\PearDownloader());
|
||||
$dm->setDownloader('zip', new Downloader\ZipDownloader());
|
||||
|
|
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
namespace Composer\Downloader;
|
||||
|
||||
use Composer\Package\PackageInterface;
|
||||
|
||||
/**
|
||||
* @author Ben Bieker <mail@ben-bieker.de>
|
||||
*/
|
||||
class SvnDownloader implements DownloaderInterface
|
||||
{
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function getInstallationSource()
|
||||
{
|
||||
return 'source';
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function download(PackageInterface $package, $path)
|
||||
{
|
||||
if(!$package->getSourceReference()) {
|
||||
throw new \InvalidArgumentException('The given package is missing reference information');
|
||||
}
|
||||
|
||||
$url = escapeshellarg($package->getSourceUrl());
|
||||
$ref = escapeshellarg($package->getSourceReference());
|
||||
system(sprintf('svn co %s/%s %s', $url, $ref, $path));
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function update(PackageInterface $initial, PackageInterface $target, $path)
|
||||
{
|
||||
if(!$target->getSourceReference()) {
|
||||
throw new \InvalidArgumentException('The given package is missing reference information');
|
||||
}
|
||||
|
||||
$url = escapeshellarg($target->getSourceUrl());
|
||||
$ref = escapeshellarg($target->getSourceReference());
|
||||
system(sprintf('cd %s && svn switch %s/%s', $path, $url, $ref));
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function remove(PackageInterface $package, $path)
|
||||
{
|
||||
$fs = new Util\Filesystem();
|
||||
$fs->remove($path);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue