You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					133 lines
				
				3.2 KiB
			
		
		
			
		
	
	
					133 lines
				
				3.2 KiB
			| 
											12 years ago
										 | <?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;
 | ||
| 
											12 years ago
										 | use Composer\Script\CommandEvent;
 | ||
| 
											12 years ago
										 | 
 | ||
|  | /**
 | ||
|  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
|  |  * @since 2.0
 | ||
|  |  */
 | ||
|  | class Installer extends LibraryInstaller
 | ||
|  | {
 | ||
| 
											12 years ago
										 | 	const EXTRA_BOOTSTRAP = 'bootstrap';
 | ||
| 
											12 years ago
										 | 	const EXTRA_WRITABLE = 'writable';
 | ||
|  | 	const EXTRA_EXECUTABLE = 'executable';
 | ||
| 
											12 years ago
										 | 
 | ||
| 
											12 years ago
										 | 	/**
 | ||
|  | 	 * @inheritdoc
 | ||
|  | 	 */
 | ||
|  | 	public function supports($packageType)
 | ||
|  | 	{
 | ||
| 
											12 years ago
										 | 		return $packageType === 'yii2-extension';
 | ||
| 
											12 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * @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)
 | ||
|  | 	{
 | ||
| 
											12 years ago
										 | 		$extension = [
 | ||
| 
											12 years ago
										 | 			'name' => $package->getName(),
 | ||
| 
											12 years ago
										 | 			'version' => $package->getVersion(),
 | ||
|  | 		];
 | ||
| 
											12 years ago
										 | 
 | ||
|  | 		$extra = $package->getExtra();
 | ||
|  | 
 | ||
| 
											12 years ago
										 | 		if (isset($extra[self::EXTRA_BOOTSTRAP]) && is_string($extra[self::EXTRA_BOOTSTRAP])) {
 | ||
|  | 			$extension['bootstrap'] = $extra[self::EXTRA_BOOTSTRAP];
 | ||
| 
											12 years ago
										 | 		}
 | ||
|  | 
 | ||
|  | 		$extensions = $this->loadExtensions();
 | ||
| 
											12 years ago
										 | 		$extensions[$package->getName()] = $extension;
 | ||
| 
											12 years ago
										 | 		$this->saveExtensions($extensions);
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	protected function removePackage(PackageInterface $package)
 | ||
|  | 	{
 | ||
|  | 		$packages = $this->loadExtensions();
 | ||
| 
											12 years ago
										 | 		unset($packages[$package->getName()]);
 | ||
| 
											12 years ago
										 | 		$this->saveExtensions($packages);
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	protected function loadExtensions()
 | ||
|  | 	{
 | ||
|  | 		$file = $this->vendorDir . '/yii-extensions.php';
 | ||
| 
											12 years ago
										 | 		return is_file($file) ? require($file) : [];
 | ||
| 
											12 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	protected function saveExtensions(array $extensions)
 | ||
|  | 	{
 | ||
|  | 		$file = $this->vendorDir . '/yii-extensions.php';
 | ||
| 
											12 years ago
										 | 		file_put_contents($file, "<?php\nreturn " . var_export($extensions, true) . ";\n");
 | ||
| 
											12 years ago
										 | 	}
 | ||
| 
											12 years ago
										 | 
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											12 years ago
										 | 	 * Sets the correct permission for the files and directories listed in the extra section.
 | ||
| 
											12 years ago
										 | 	 * @param CommandEvent $event
 | ||
|  | 	 */
 | ||
| 
											12 years ago
										 | 	public static function setPermission($event)
 | ||
| 
											12 years ago
										 | 	{
 | ||
| 
											12 years ago
										 | 		$options = array_merge([
 | ||
| 
											12 years ago
										 | 			self::EXTRA_WRITABLE => [],
 | ||
|  | 			self::EXTRA_EXECUTABLE => [],
 | ||
| 
											12 years ago
										 | 		], $event->getComposer()->getPackage()->getExtra());
 | ||
| 
											12 years ago
										 | 
 | ||
| 
											12 years ago
										 | 		foreach ((array)$options[self::EXTRA_WRITABLE] as $path) {
 | ||
| 
											12 years ago
										 | 			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;
 | ||
|  | 			}
 | ||
|  | 		}
 | ||
|  | 
 | ||
| 
											12 years ago
										 | 		foreach ((array)$options[self::EXTRA_EXECUTABLE] as $path) {
 | ||
| 
											12 years ago
										 | 			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;
 | ||
|  | 			}
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
| 
											12 years ago
										 | }
 |