BaseInstaller.php in Zircon Profile 8.0
File
vendor/composer/installers/src/Composer/Installers/BaseInstaller.php
View source
<?php
namespace Composer\Installers;
use Composer\Composer;
use Composer\Package\PackageInterface;
abstract class BaseInstaller {
protected $locations = array();
protected $composer;
protected $package;
public function __construct(PackageInterface $package = null, Composer $composer = null) {
$this->composer = $composer;
$this->package = $package;
}
public function getInstallPath(PackageInterface $package, $frameworkType = '') {
$type = $this->package
->getType();
$prettyName = $this->package
->getPrettyName();
if (strpos($prettyName, '/') !== false) {
list($vendor, $name) = explode('/', $prettyName);
}
else {
$vendor = '';
$name = $prettyName;
}
$availableVars = $this
->inflectPackageVars(compact('name', 'vendor', 'type'));
$extra = $package
->getExtra();
if (!empty($extra['installer-name'])) {
$availableVars['name'] = $extra['installer-name'];
}
if ($this->composer
->getPackage()) {
$extra = $this->composer
->getPackage()
->getExtra();
if (!empty($extra['installer-paths'])) {
$customPath = $this
->mapCustomInstallPaths($extra['installer-paths'], $prettyName, $type);
if ($customPath !== false) {
return $this
->templatePath($customPath, $availableVars);
}
}
}
$packageType = substr($type, strlen($frameworkType) + 1);
$locations = $this
->getLocations();
if (!isset($locations[$packageType])) {
throw new \InvalidArgumentException(sprintf('Package type "%s" is not supported', $type));
}
return $this
->templatePath($locations[$packageType], $availableVars);
}
public function inflectPackageVars($vars) {
return $vars;
}
public function getLocations() {
return $this->locations;
}
protected function templatePath($path, array $vars = array()) {
if (strpos($path, '{') !== false) {
extract($vars);
preg_match_all('@\\{\\$([A-Za-z0-9_]*)\\}@i', $path, $matches);
if (!empty($matches[1])) {
foreach ($matches[1] as $var) {
$path = str_replace('{$' . $var . '}', ${$var}, $path);
}
}
}
return $path;
}
protected function mapCustomInstallPaths(array $paths, $name, $type) {
foreach ($paths as $path => $names) {
if (in_array($name, $names) || in_array('type:' . $type, $names)) {
return $path;
}
}
return false;
}
}