Installer.php 4.64 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\composer;

use Composer\Package\PackageInterface;
use Composer\Installer\LibraryInstaller;
use Composer\Repository\InstalledRepositoryInterface;
Qiang Xue committed
13
use Composer\Script\CommandEvent;
14
use Composer\Util\Filesystem;
15 16 17 18 19 20 21

/**
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class Installer extends LibraryInstaller
{
Qiang Xue committed
22
	const EXTRA_BOOTSTRAP = 'bootstrap';
Qiang Xue committed
23 24
	const EXTRA_WRITABLE = 'writable';
	const EXTRA_EXECUTABLE = 'executable';
25

26 27
	const EXTENSION_FILE = 'yiisoft/extensions.php';

28 29 30 31 32
	/**
	 * @inheritdoc
	 */
	public function supports($packageType)
	{
33
		return $packageType === 'yii2-extension';
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
	}

	/**
	 * @inheritdoc
	 */
	public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
	{
		parent::install($repo, $package);
		$this->addPackage($package);
	}

	/**
	 * @inheritdoc
	 */
	public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
	{
		parent::update($repo, $initial, $target);
		$this->removePackage($initial);
		$this->addPackage($target);
	}

	/**
	 * @inheritdoc
	 */
	public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
	{
		parent::uninstall($repo, $package);
		$this->removePackage($package);
	}

	protected function addPackage(PackageInterface $package)
	{
Qiang Xue committed
66
		$extension = [
67
			'name' => $package->getName(),
Qiang Xue committed
68 69
			'version' => $package->getVersion(),
		];
70

71 72 73 74
		$alias = $this->generateDefaultAlias($package);
		if (!empty($alias)) {
			$extension['alias'] = $alias;
		}
75
		$extra = $package->getExtra();
Qiang Xue committed
76 77
		if (isset($extra[self::EXTRA_BOOTSTRAP]) && is_string($extra[self::EXTRA_BOOTSTRAP])) {
			$extension['bootstrap'] = $extra[self::EXTRA_BOOTSTRAP];
78 79 80
		}

		$extensions = $this->loadExtensions();
81
		$extensions[$package->getName()] = $extension;
82 83 84
		$this->saveExtensions($extensions);
	}

85 86 87
	protected function generateDefaultAlias(PackageInterface $package)
	{
		$autoload = $package->getAutoload();
Qiang Xue committed
88 89 90 91 92
		if (empty($autoload['psr-0'])) {
			return false;
		}
		$fs = new Filesystem;
		$vendorDir = $fs->normalizePath($this->vendorDir);
Qiang Xue committed
93
		$aliases = [];
Qiang Xue committed
94 95 96 97 98 99 100
		foreach ($autoload['psr-0'] as $name => $path) {
			$name = str_replace('\\', '/', trim($name, '\\'));
			if (!$fs->isAbsolutePath($path)) {
				$path = $this->vendorDir . '/' . $package->getName() . '/' . $path;
			}
			$path = $fs->normalizePath($path);
			if (strpos($path . '/', $vendorDir . '/') === 0) {
Qiang Xue committed
101
				$aliases["@$name"] = '<vendor-dir>' . substr($path, strlen($vendorDir)) . '/' . $name;
Qiang Xue committed
102
			} else {
Qiang Xue committed
103
				$aliases["@$name"] = $path . '/' . $name;
104 105
			}
		}
Qiang Xue committed
106
		return $aliases;
107 108
	}

109 110 111
	protected function removePackage(PackageInterface $package)
	{
		$packages = $this->loadExtensions();
112
		unset($packages[$package->getName()]);
113 114 115 116 117
		$this->saveExtensions($packages);
	}

	protected function loadExtensions()
	{
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
		$file = $this->vendorDir . '/' . self::EXTENSION_FILE;
		if (!is_file($file)) {
			return [];
		}
		$extensions = require($file);

		$vendorDir = str_replace('\\', '/', $this->vendorDir);
		$n = strlen($vendorDir);

		foreach ($extensions as &$extension) {
			if (isset($extension['alias'])) {
				foreach ($extension['alias'] as $alias => $path) {
					$path = str_replace('\\', '/', $path);
					if (strpos($path . '/', $vendorDir . '/') === 0) {
						$extension['alias'][$alias] = '<vendor-dir>' . substr($path, $n);
					}
				}
			}
		}

		return $extensions;
139 140 141 142
	}

	protected function saveExtensions(array $extensions)
	{
143 144 145
		$file = $this->vendorDir . '/' . self::EXTENSION_FILE;
		$array = str_replace("'<vendor-dir>", '$vendorDir . \'', var_export($extensions, true));
		file_put_contents($file, "<?php\n\n\$vendorDir = dirname(__DIR__);\n\nreturn $array;\n");
146
	}
147 148 149


	/**
Qiang Xue committed
150
	 * Sets the correct permission for the files and directories listed in the extra section.
151 152
	 * @param CommandEvent $event
	 */
Qiang Xue committed
153
	public static function setPermission($event)
154
	{
Alexander Makarov committed
155
		$options = array_merge([
Qiang Xue committed
156 157
			self::EXTRA_WRITABLE => [],
			self::EXTRA_EXECUTABLE => [],
Alexander Makarov committed
158
		], $event->getComposer()->getPackage()->getExtra());
159

Qiang Xue committed
160
		foreach ((array)$options[self::EXTRA_WRITABLE] as $path) {
161 162 163 164 165 166 167 168 169 170
			echo "Setting writable: $path ...";
			if (is_dir($path)) {
				chmod($path, 0777);
				echo "done\n";
			} else {
				echo "The directory was not found: " . getcwd() . DIRECTORY_SEPARATOR . $path;
				return;
			}
		}

Qiang Xue committed
171
		foreach ((array)$options[self::EXTRA_EXECUTABLE] as $path) {
172 173 174 175 176 177 178 179 180 181
			echo "Setting executable: $path ...";
			if (is_file($path)) {
				chmod($path, 0755);
				echo "done\n";
			} else {
				echo "\n\tThe file was not found: " . getcwd() . DIRECTORY_SEPARATOR . $path . "\n";
				return;
			}
		}
	}
182
}