149 lines
4.6 KiB
PHP
149 lines
4.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Composer.
|
|
*
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Composer\Downloader;
|
|
|
|
use Composer\Package\PackageInterface;
|
|
use Composer\Util\ProcessExecutor;
|
|
use Composer\IO\IOInterface;
|
|
use Composer\Util\Filesystem;
|
|
|
|
/**
|
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
*/
|
|
abstract class VcsDownloader implements DownloaderInterface
|
|
{
|
|
protected $io;
|
|
protected $process;
|
|
protected $filesystem;
|
|
|
|
public function __construct(IOInterface $io, ProcessExecutor $process = null, Filesystem $fs = null)
|
|
{
|
|
$this->io = $io;
|
|
$this->process = $process ?: new ProcessExecutor;
|
|
$this->filesystem = $fs ?: new Filesystem;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getInstallationSource()
|
|
{
|
|
return 'source';
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function download(PackageInterface $package, $path)
|
|
{
|
|
if (!$package->getSourceReference()) {
|
|
throw new \InvalidArgumentException('Package '.$package->getPrettyName().' is missing reference information');
|
|
}
|
|
|
|
$this->io->write(" - Installing <info>" . $package->getName() . "</info> (<comment>" . $package->getPrettyVersion() . "</comment>)");
|
|
$this->filesystem->removeDirectory($path);
|
|
$this->doDownload($package, $path);
|
|
$this->io->write('');
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function update(PackageInterface $initial, PackageInterface $target, $path)
|
|
{
|
|
if (!$target->getSourceReference()) {
|
|
throw new \InvalidArgumentException('Package '.$target->getPrettyName().' is missing reference information');
|
|
}
|
|
|
|
if ($initial->getPrettyVersion() == $target->getPrettyVersion()) {
|
|
$from = $initial->getSourceReference();
|
|
$to = $target->getSourceReference();
|
|
} else {
|
|
$from = $initial->getPrettyVersion();
|
|
$to = $target->getPrettyVersion();
|
|
}
|
|
|
|
$this->io->write(" - Updating <info>" . $target->getName() . "</info> from (<comment>" . $from . "</comment>) to (<comment>" . $to . "</comment>)");
|
|
|
|
$this->enforceCleanDirectory($path);
|
|
$this->doUpdate($initial, $target, $path);
|
|
|
|
//print the commit logs if in verbose mode
|
|
if ($this->io->isVerbose()) {
|
|
$logs = $this->getCommitLogs($initial->getSourceReference(), $target->getSourceReference(), $path);
|
|
$this->io->write($logs);
|
|
}
|
|
|
|
$this->io->write('');
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function remove(PackageInterface $package, $path)
|
|
{
|
|
$this->enforceCleanDirectory($path);
|
|
$this->io->write(" - Removing <info>" . $package->getName() . "</info> (<comment>" . $package->getPrettyVersion() . "</comment>)");
|
|
if (!$this->filesystem->removeDirectory($path)) {
|
|
throw new \RuntimeException('Could not completely delete '.$path.', aborting.');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Guarantee that no changes have been made to the local copy
|
|
*
|
|
* @throws \RuntimeException if the directory is not clean
|
|
*/
|
|
protected function enforceCleanDirectory($path)
|
|
{
|
|
if (null !== $this->getLocalChanges($path)) {
|
|
throw new \RuntimeException('Source directory ' . $path . ' has uncommitted changes.');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Downloads specific package into specific folder.
|
|
*
|
|
* @param PackageInterface $package package instance
|
|
* @param string $path download path
|
|
*/
|
|
abstract protected function doDownload(PackageInterface $package, $path);
|
|
|
|
/**
|
|
* Updates specific package in specific folder from initial to target version.
|
|
*
|
|
* @param PackageInterface $initial initial package
|
|
* @param PackageInterface $target updated package
|
|
* @param string $path download path
|
|
*/
|
|
abstract protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path);
|
|
|
|
/**
|
|
* Checks for changes to the local copy
|
|
*
|
|
* @param string $path package directory
|
|
* @return string|null changes or null
|
|
*/
|
|
abstract public function getLocalChanges($path);
|
|
|
|
/**
|
|
* Fetches the commit logs between two commits
|
|
*
|
|
* @param string $fromReference the source reference
|
|
* @param string $toReference the target reference
|
|
* @param string $path the package path
|
|
* @return string
|
|
*/
|
|
abstract protected function getCommitLogs($fromReference, $toReference, $path);
|
|
}
|