12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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 Symfony\Component\Filesystem\Exception\IOException;
- use Symfony\Component\Filesystem\Filesystem;
- /**
- * Download a package from a local path.
- *
- * @author Samuel Roze <samuel.roze@gmail.com>
- * @author Johann Reinke <johann.reinke@gmail.com>
- */
- class PathDownloader extends FileDownloader
- {
- /**
- * {@inheritdoc}
- */
- public function download(PackageInterface $package, $path)
- {
- $fileSystem = new Filesystem();
- $this->filesystem->removeDirectory($path);
- $this->io->writeError(sprintf(
- ' - Installing <info>%s</info> (<comment>%s</comment>)',
- $package->getName(),
- $package->getFullPrettyVersion()
- ));
- $url = $package->getDistUrl();
- $realUrl = realpath($url);
- if (false === $realUrl || !file_exists($realUrl) || !is_dir($realUrl)) {
- throw new \RuntimeException(sprintf(
- 'Path "%s" is not found',
- $url
- ));
- }
- try {
- $shortestPath = $this->filesystem->findShortestPath($path, $realUrl);
- $fileSystem->symlink($shortestPath, $path);
- $this->io->writeError(sprintf(' Symlinked from %s', $url));
- } catch (IOException $e) {
- $fileSystem->mirror($realUrl, $path);
- $this->io->writeError(sprintf(' Mirrored from %s', $url));
- }
- $this->io->writeError('');
- }
- }
|