You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.6 KiB
PHTML

<?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\Installer;
use Composer\Downloader\DownloaderInterface;
use Composer\Package\PackageInterface;
use Composer\Composer;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
* @author Konstantin Kudryashov <ever.zet@gmail.com>
*/
class LibraryInstaller implements InstallerInterface
{
private $dir;
private $composer;
private $preferSource;
public function __construct($dir = 'vendor', $preferSource = false)
{
$this->dir = $dir;
$this->preferSource = $preferSource;
}
public function setComposer(Composer $composer)
{
$this->composer = $composer;
}
public function install(PackageInterface $package)
{
if (!is_dir($this->dir)) {
if (file_exists($this->dir)) {
throw new \UnexpectedValueException($this->dir.' exists and is not a directory.');
}
if (!mkdir($this->dir, 0777, true)) {
throw new \UnexpectedValueException($this->path.' does not exist and could not be created.');
}
}
if (!($this->preferSource && $package->getSourceType()) && $package->getDistType()) {
$downloader = $this->composer->getDownloader($package->getDistType());
return $downloader->download(
$package, $this->dir, $package->getDistUrl(), $package->getDistSha1Checksum()
);
}
if ($package->getSourceType()) {
$downloader = $this->composer->getDownloader($package->getSourceType());
return $downloader->download(
$package, $this->dir, $package->getSourceUrl()
);
}
throw new \InvalidArgumentException('Package should have dist or source specified');
}
public function isInstalled(PackageInterface $package)
{
if ($package->getSourceType()) {
$downloader = $this->composer->getDownloader($package->getSourceType());
if ($downloader->isDownloaded($package, $this->dir)) {
return true;
}
}
if ($package->getDistType()) {
$downloader = $this->composer->getDownloader($package->getDistType());
if ($downloader->isDownloaded($package, $this->dir)) {
return true;
}
}
return false;
}
}