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.
97 lines
2.5 KiB
97 lines
2.5 KiB
<?php |
|
/** |
|
* @link http://www.yiiframework.com/ |
|
* @copyright Copyright (c) 2008 Yii Software LLC |
|
* @license http://www.yiiframework.com/license/ |
|
*/ |
|
|
|
namespace yii\composer; |
|
|
|
use Composer\Script\CommandEvent; |
|
use yii\console; |
|
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true); |
|
|
|
// fcgi doesn't have STDIN defined by default |
|
defined('STDIN') or define('STDIN', fopen('php://stdin', 'r')); |
|
|
|
/** |
|
* InstallHandler is called by Composer after it installs/updates the current package. |
|
* |
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
* @author Tobias Munk <schmunk@usrbin.de> |
|
* @since 2.0 |
|
*/ |
|
class InstallHandler |
|
{ |
|
/** |
|
* Sets the correct permissions of files and directories. |
|
* @param CommandEvent $event |
|
*/ |
|
public static function setPermissions($event) |
|
{ |
|
$options = array_merge(array( |
|
'writable' => array(), |
|
'executable' => array(), |
|
), $event->getComposer()->getPackage()->getExtra()); |
|
|
|
foreach ((array)$options['writable'] as $path) { |
|
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; |
|
} |
|
} |
|
|
|
foreach ((array)$options['executable'] as $path) { |
|
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; |
|
} |
|
} |
|
} |
|
|
|
/** |
|
* Executes a yii command. |
|
* @param CommandEvent $event |
|
*/ |
|
public static function run($event) |
|
{ |
|
$options = array_merge(array( |
|
'run' => array(), |
|
'config' => null, |
|
), $event->getComposer()->getPackage()->getExtra()); |
|
|
|
// resolve and include config file |
|
if (($options['config'] === null)) { |
|
throw new console\Exception('Config file not specified in composer.json extra.config'); |
|
} else { |
|
if (!is_file(getcwd() . '/' . $options['config'])) { |
|
throw new console\Exception("Config file '{$options['config']}' specified in composer.json extra.config not found"); |
|
} else { |
|
$config = require($options['config']); |
|
} |
|
} |
|
|
|
require(__DIR__ . '/../../../yii2/yii/Yii.php'); |
|
|
|
foreach ((array)$options['run'] as $rawParams) { |
|
// TODO: we're doing about the same here like console\Request::resolve() |
|
$command = $rawParams[0]; |
|
unset($rawParams[0]); |
|
$params[\yii\console\Request::ANONYMOUS_PARAMS] = $rawParams; |
|
// TODO end |
|
|
|
echo "Running command: {$command}\n"; |
|
$application = new \yii\console\Application($config); |
|
$application->runAction($command, $params); |
|
} |
|
} |
|
}
|
|
|