1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?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;
- /**
- * @author Per Bernhardt <plb@webfactory.de>
- */
- class HgDownloader 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('hg clone %s %s && cd %2$s && hg up %s', $url, $path, $ref));
- }
- /**
- * {@inheritDoc}
- */
- public function update(PackageInterface $initial, PackageInterface $target, $path)
- {
- if (!$target->getSourceReference()) {
- throw new \InvalidArgumentException('The given package is missing reference information');
- }
- $this->enforceCleanDirectory($path);
- system(sprintf('cd %s && hg pull && hg up %s', $path, $target->getSourceReference()));
- }
- /**
- * {@inheritDoc}
- */
- public function remove(PackageInterface $package, $path)
- {
- $this->enforceCleanDirectory($path);
- $fs = new Util\Filesystem();
- $fs->remove($path);
- }
- private function enforceCleanDirectory($path)
- {
- exec(sprintf('cd %s && hg st', $path), $output);
- if (implode('', $output)) {
- throw new \RuntimeException('Source directory has uncommitted changes');
- }
- }
- }
|