| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 | 
							- <?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;
 
- use Composer\Script\CommandEvent;
 
- use Composer\Script\Event;
 
- use Composer\Util\Filesystem;
 
- /**
 
-  * @author Qiang Xue <qiang.xue@gmail.com>
 
-  * @since 2.0
 
-  */
 
- class Installer extends LibraryInstaller
 
- {
 
-     const EXTRA_BOOTSTRAP = 'bootstrap';
 
-     const EXTENSION_FILE = 'yiisoft/extensions.php';
 
-     /**
 
-      * @inheritdoc
 
-      */
 
-     public function supports($packageType)
 
-     {
 
-         return $packageType === 'yii2-extension';
 
-     }
 
-     /**
 
-      * @inheritdoc
 
-      */
 
-     public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
 
-     {
 
-         // install the package the normal composer way
 
-         parent::install($repo, $package);
 
-         // add the package to yiisoft/extensions.php
 
-         $this->addPackage($package);
 
-         // ensure the yii2-dev package also provides Yii.php in the same place as yii2 does
 
-         if ($package->getName() == 'yiisoft/yii2-dev') {
 
-             $this->linkBaseYiiFiles();
 
-         }
 
-     }
 
-     /**
 
-      * @inheritdoc
 
-      */
 
-     public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
 
-     {
 
-         parent::update($repo, $initial, $target);
 
-         $this->removePackage($initial);
 
-         $this->addPackage($target);
 
-         // ensure the yii2-dev package also provides Yii.php in the same place as yii2 does
 
-         if ($initial->getName() == 'yiisoft/yii2-dev') {
 
-             $this->linkBaseYiiFiles();
 
-         }
 
-     }
 
-     /**
 
-      * @inheritdoc
 
-      */
 
-     public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
 
-     {
 
-         // uninstall the package the normal composer way
 
-         parent::uninstall($repo, $package);
 
-         // remove the package from yiisoft/extensions.php
 
-         $this->removePackage($package);
 
-         // remove links for Yii.php
 
-         if ($package->getName() == 'yiisoft/yii2-dev') {
 
-             $this->removeBaseYiiFiles();
 
-         }
 
-     }
 
-     protected function addPackage(PackageInterface $package)
 
-     {
 
-         $extension = [
 
-             'name' => $package->getName(),
 
-             'version' => $package->getVersion(),
 
-         ];
 
-         $alias = $this->generateDefaultAlias($package);
 
-         if (!empty($alias)) {
 
-             $extension['alias'] = $alias;
 
-         }
 
-         $extra = $package->getExtra();
 
-         if (isset($extra[self::EXTRA_BOOTSTRAP])) {
 
-             $extension['bootstrap'] = $extra[self::EXTRA_BOOTSTRAP];
 
-         }
 
-         $extensions = $this->loadExtensions();
 
-         $extensions[$package->getName()] = $extension;
 
-         $this->saveExtensions($extensions);
 
-     }
 
-     protected function generateDefaultAlias(PackageInterface $package)
 
-     {
 
-         $fs = new Filesystem;
 
-         $vendorDir = $fs->normalizePath($this->vendorDir);
 
-         $autoload = $package->getAutoload();
 
-         $aliases = [];
 
-         if (!empty($autoload['psr-0'])) {
 
-             foreach ($autoload['psr-0'] as $name => $path) {
 
-                 $name = str_replace('\\', '/', trim($name, '\\'));
 
-                 if (!$fs->isAbsolutePath($path)) {
 
-                     $path = $this->vendorDir . '/' . $package->getPrettyName() . '/' . $path;
 
-                 }
 
-                 $path = $fs->normalizePath($path);
 
-                 if (strpos($path . '/', $vendorDir . '/') === 0) {
 
-                     $aliases["@$name"] = '<vendor-dir>' . substr($path, strlen($vendorDir)) . '/' . $name;
 
-                 } else {
 
-                     $aliases["@$name"] = $path . '/' . $name;
 
-                 }
 
-             }
 
-         }
 
-         if (!empty($autoload['psr-4'])) {
 
-             foreach ($autoload['psr-4'] as $name => $path) {
 
-                 if (is_array($path)) {
 
-                     // ignore psr-4 autoload specifications with multiple search paths
 
-                     // we can not convert them into aliases as they are ambiguous
 
-                     continue;
 
-                 }
 
-                 $name = str_replace('\\', '/', trim($name, '\\'));
 
-                 if (!$fs->isAbsolutePath($path)) {
 
-                     $path = $this->vendorDir . '/' . $package->getPrettyName() . '/' . $path;
 
-                 }
 
-                 $path = $fs->normalizePath($path);
 
-                 if (strpos($path . '/', $vendorDir . '/') === 0) {
 
-                     $aliases["@$name"] = '<vendor-dir>' . substr($path, strlen($vendorDir));
 
-                 } else {
 
-                     $aliases["@$name"] = $path;
 
-                 }
 
-             }
 
-         }
 
-         return $aliases;
 
-     }
 
-     protected function removePackage(PackageInterface $package)
 
-     {
 
-         $packages = $this->loadExtensions();
 
-         unset($packages[$package->getName()]);
 
-         $this->saveExtensions($packages);
 
-     }
 
-     protected function loadExtensions()
 
-     {
 
-         $file = $this->vendorDir . '/' . static::EXTENSION_FILE;
 
-         if (!is_file($file)) {
 
-             return [];
 
-         }
 
-         // invalidate opcache of extensions.php if exists
 
-         if (function_exists('opcache_invalidate')) {
 
-             @opcache_invalidate($file, true);
 
-         }
 
-         $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;
 
-     }
 
-     protected function saveExtensions(array $extensions)
 
-     {
 
-         $file = $this->vendorDir . '/' . static::EXTENSION_FILE;
 
-         if (!file_exists(dirname($file))) {
 
-             mkdir(dirname($file), 0777, true);
 
-         }
 
-         $array = str_replace("'<vendor-dir>", '$vendorDir . \'', var_export($extensions, true));
 
-         file_put_contents($file, "<?php\n\n\$vendorDir = dirname(__DIR__);\n\nreturn $array;\n");
 
-         // invalidate opcache of extensions.php if exists
 
-         if (function_exists('opcache_invalidate')) {
 
-             @opcache_invalidate($file, true);
 
-         }
 
-     }
 
-     protected function linkBaseYiiFiles()
 
-     {
 
-         $yiiDir = $this->vendorDir . '/yiisoft/yii2';
 
-         if (!file_exists($yiiDir)) {
 
-             mkdir($yiiDir, 0777, true);
 
-         }
 
-         foreach (['Yii.php', 'BaseYii.php', 'classes.php'] as $file) {
 
-             file_put_contents($yiiDir . '/' . $file, <<<EOF
 
- <?php
 
- /**
 
-  * This is a link provided by the yiisoft/yii2-dev package via yii2-composer plugin.
 
-  *
 
-  * @link http://www.yiiframework.com/
 
-  * @copyright Copyright (c) 2008 Yii Software LLC
 
-  * @license http://www.yiiframework.com/license/
 
-  */
 
- return require(__DIR__ . '/../yii2-dev/framework/$file');
 
- EOF
 
-             );
 
-         }
 
-     }
 
-     protected function removeBaseYiiFiles()
 
-     {
 
-         $yiiDir = $this->vendorDir . '/yiisoft/yii2';
 
-         foreach (['Yii.php', 'BaseYii.php', 'classes.php'] as $file) {
 
-             if (file_exists($yiiDir . '/' . $file)) {
 
-                 unlink($yiiDir . '/' . $file);
 
-             }
 
-         }
 
-         if (file_exists($yiiDir)) {
 
-             rmdir($yiiDir);
 
-         }
 
-     }
 
-     /**
 
-      * Special method to run tasks defined in `[extra][yii\composer\Installer::postCreateProject]` key in `composer.json`
 
-      *
 
-      * @param Event $event
 
-      */
 
-     public static function postCreateProject($event)
 
-     {
 
-         static::runCommands($event, __METHOD__);
 
-     }
 
-     /**
 
-      * Special method to run tasks defined in `[extra][yii\composer\Installer::postInstall]` key in `composer.json`
 
-      *
 
-      * @param Event $event
 
-      * @since 2.0.5
 
-      */
 
-     public static function postInstall($event)
 
-     {
 
-         static::runCommands($event, __METHOD__);
 
-     }
 
-     /**
 
-      * Special method to run tasks defined in `[extra][$extraKey]` key in `composer.json`
 
-      *
 
-      * @param Event $event
 
-      * @param string $extraKey
 
-      * @since 2.0.5
 
-      */
 
-     protected static function runCommands($event, $extraKey)
 
-     {
 
-         $params = $event->getComposer()->getPackage()->getExtra();
 
-         if (isset($params[$extraKey]) && is_array($params[$extraKey])) {
 
-             foreach ($params[$extraKey] as $method => $args) {
 
-                 call_user_func_array([__CLASS__, $method], (array) $args);
 
-             }
 
-         }
 
-     }
 
-     /**
 
-      * Sets the correct permission for the files and directories listed in the extra section.
 
-      * @param array $paths the paths (keys) and the corresponding permission octal strings (values)
 
-      */
 
-     public static function setPermission(array $paths)
 
-     {
 
-         foreach ($paths as $path => $permission) {
 
-             echo "chmod('$path', $permission)...";
 
-             if (is_dir($path) || is_file($path)) {
 
-                 try {
 
-                     if (chmod($path, octdec($permission))) {
 
-                         echo "done.\n";
 
-                     };
 
-                 } catch (\Exception $e) {
 
-                     echo $e->getMessage() . "\n";
 
-                 }
 
-             } else {
 
-                 echo "file not found.\n";
 
-             }
 
-         }
 
-     }
 
-     /**
 
-      * Generates a cookie validation key for every app config listed in "config" in extra section.
 
-      * You can provide one or multiple parameters as the configuration files which need to have validation key inserted.
 
-      */
 
-     public static function generateCookieValidationKey()
 
-     {
 
-         $configs = func_get_args();
 
-         $key = self::generateRandomString();
 
-         foreach ($configs as $config) {
 
-             if (is_file($config)) {
 
-                 $content = preg_replace('/(("|\')cookieValidationKey("|\')\s*=>\s*)(""|\'\')/', "\\1'$key'", file_get_contents($config), -1, $count);
 
-                 if ($count > 0) {
 
-                     file_put_contents($config, $content);
 
-                 }
 
-             }
 
-         }
 
-     }
 
-     protected static function generateRandomString()
 
-     {
 
-         if (!extension_loaded('openssl')) {
 
-             throw new \Exception('The OpenSSL PHP extension is required by Yii2.');
 
-         }
 
-         $length = 32;
 
-         $bytes = openssl_random_pseudo_bytes($length);
 
-         return strtr(substr(base64_encode($bytes), 0, $length), '+/=', '_-.');
 
-     }
 
-     /**
 
-      * Copy files to specified locations.
 
-      * @param array $paths The source files paths (keys) and the corresponding target locations
 
-      * for copied files (values). Location can be specified as an array - first element is target
 
-      * location, second defines whether file can be overwritten (by default method don't overwrite
 
-      * existing files).
 
-      * @since 2.0.5
 
-      */
 
-     public static function copyFiles(array $paths)
 
-     {
 
-         foreach ($paths as $source => $target) {
 
-             // handle file target as array [path, overwrite]
 
-             $target = (array) $target;
 
-             echo "Copying file $source to $target[0] - ";
 
-             if (!is_file($source)) {
 
-                 echo "source file not found.\n";
 
-                 continue;
 
-             }
 
-             if (is_file($target[0]) && empty($target[1])) {
 
-                 echo "target file exists - skip.\n";
 
-                 continue;
 
-             } elseif (is_file($target[0]) && !empty($target[1])) {
 
-                 echo "target file exists - overwrite - ";
 
-             }
 
-             try {
 
-                 if (!is_dir(dirname($target[0]))) {
 
-                     mkdir(dirname($target[0]), 0777, true);
 
-                 }
 
-                 if (copy($source, $target[0])) {
 
-                     echo "done.\n";
 
-                 }
 
-             } catch (\Exception $e) {
 
-                 echo $e->getMessage() . "\n";
 
-             }
 
-         }
 
-     }
 
- }
 
 
  |