updating for v2.0.0 release

This commit is contained in:
Dave Olsen 2016-05-18 22:59:12 -04:00
parent 1f9a6c244a
commit 94fea340b0
2 changed files with 131 additions and 61 deletions

View File

@ -24,14 +24,21 @@
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.3.6",
"pattern-lab/core": "dev-dev"
},
"scripts": {
"post-create-project-cmd": [
"PatternLab\\Installer::postCreateProjectCmd"
"post-install-cmd": [
"PatternLab\\Installer::postInstallCmd"
],
"post-update-cmd": [
"PatternLab\\Installer::postUpdateCmd"
],
"post-root-package-install": [
"PatternLab\\Installer::setProjectInstall",
"PatternLab\\Installer::getSuggestedStarterKits",
"PatternLab\\Installer::getConfigOverrides"
],
"post-package-install": [
"PatternLab\\Installer::postPackageInstall"
@ -39,9 +46,6 @@
"post-package-update": [
"PatternLab\\Installer::postPackageUpdate"
],
"pre-install-cmd": [
"PatternLab\\Installer::preInstallCmd"
],
"pre-package-uninstall": [
"PatternLab\\Installer::prePackageUninstall"
]

View File

@ -17,80 +17,146 @@ use \Composer\Installer\PackageEvent;
use \PatternLab\InstallerUtil;
class Installer {
protected static $installerInfo = array("projectInstall" => false, "packagesRemove" => false, "suggestedStarterKits" => array(), "configOverrides" => array(), "patternLabPackages" => array());
/**
* Run the PL tasks when a package is installed
* Get any config overrides that may exist for the edition
* @param {Object} a script event object from composer
*/
public static function postCreateProjectCmd(Event $event) {
// make sure pattern lab has been loaded
if (class_exists("\PatternLab\Config")) {
InstallerUtil::postCreateProjectCmd($event);
public static function getConfigOverrides(Event $event) {
$extra = $event->getComposer()->getPackage()->getExtra();
if (isset($extra["patternlab"]) && isset($extra["patternlab"]["config"]) && is_array($extra["patternlab"]["config"])) {
self::$installerInfo["configOverrides"] = $extra["patternlab"]["config"];
}
}
/**
* Run the PL tasks when a package is installed
* Get the package info from each patternlab-* package's composer.json
* @param {String} the type of event fired during the composer install
* @param {Object} a script event object from composer
*/
public static function getPackageInfo($type, $event) {
$package = ($type == "update") ? $event->getOperation()->getTargetPackage() : $event->getOperation()->getPackage();
$packageType = $package->getType();
$packageExtra = $package->getExtra();
$packageInfo = array();
// make sure we're only evaluating pattern lab packages
if (strpos($packageType,"patternlab-") !== false) {
$packageInfo["name"] = $package->getName();
$packageInfo["type"] = $packageType;
$packageInfo["pathBase"] = $event->getComposer()->getInstallationManager()->getInstallPath($package);
$packageInfo["pathDist"] = $packageInfo["pathBase"].DIRECTORY_SEPARATOR."dist".DIRECTORY_SEPARATOR;
$packageInfo["extra"] = (isset($packageExtra["patternlab"])) ? $packageExtra["patternlab"] : array();
self::$installerInfo["packages"][] = $packageInfo;
}
}
/**
* Get the suggested starter kits from the root package composer.json
* @param {Object} a script event object from composer
*/
public static function getSuggestedStarterKits(Event $event) {
$extra = $event->getComposer()->getPackage()->getExtra();
if (isset($extra["patternlab"]) && isset($extra["patternlab"]["starterKitSuggestions"]) && is_array($extra["patternlab"]["starterKitSuggestions"])) {
self::$installerInfo["suggestedStarterKits"] = $extra["patternlab"]["starterKitSuggestions"];
}
}
/**
* Run the centralized postInstallCmd
* @param {Object} a script event object from composer
*/
public static function postInstallCmd(Event $event) {
InstallerUtil::postInstallCmd(self::$installerInfo, $event);
}
/**
* Run the centralized postUpdateCmd
* @param {Object} a script event object from composer
*/
public static function postUpdateCmd(Event $event) {
InstallerUtil::postUpdateCmd(self::$installerInfo, $event);
}
/**
* Clean-up when a package is removed
* @param {Object} a script event object from composer
*/
public static function postPackageInstall(PackageEvent $event) {
// make sure pattern lab has been loaded
if (class_exists("\PatternLab\Config")) {
InstallerUtil::postPackageInstall($event);
}
self::getPackageInfo("install", $event);
}
/**
* Run the PL tasks when a package is updated
* Clean-up when a package is removed
* @param {Object} a script event object from composer
*/
public static function postPackageUpdate(PackageEvent $event) {
// make sure pattern lab has been loaded
if (class_exists("\PatternLab\Config")) {
InstallerUtil::postPackageUpdate($event);
}
self::getPackageInfo("update", $event);
}
/**
* Make sure certain things are set-up before running composer's install
* @param {Object} a script event object from composer
*/
public static function preInstallCmd(Event $event) {
// make sure pattern lab has been loaded
if (class_exists("\PatternLab\Config")) {
InstallerUtil::preInstallCmd($event);
}
}
/**
* Run the PL tasks when a package is removed
* Clean-up when a package is removed
* @param {Object} a script event object from composer
*/
public static function prePackageUninstall(PackageEvent $event) {
// make sure pattern lab has been loaded
if (class_exists("\PatternLab\Config")) {
InstallerUtil::prePackageUninstallCmd($event);
// make sure the postUpdateCmd doesnt actually do anything
self::setPackagesRemove();
// get the basic package info
$package = $event->getOperation()->getPackage();
$packageType = $package->getType();
$packageInfo = array();
// make sure we're only evaluating pattern lab packages. remove attributes related to them.
if (strpos($packageType,"patternlab-") !== false) {
$packageInfo["name"] = $package->getName();
$packageInfo["type"] = $packageType;
$packageInfo["pathBase"] = $event->getComposer()->getInstallationManager()->getInstallPath($package);
InstallerUtil::packageRemove($packageInfo);
}
}
/**
* Set the packages remove boolean to true
*/
public static function setPackagesRemove() {
self::$installerInfo["packagesRemove"] = true;
}
/**
* Set the project install boolean to true
* @param {Object} a script event object from composer
*/
public static function setProjectInstall(Event $event) {
self::$installerInfo["projectInstall"] = true;
}
}