magallanes/Mage/Command/BuiltIn/RollbackCommand.php

80 lines
2.3 KiB
PHP
Raw Normal View History

2014-06-12 23:16:30 +02:00
<?php
/*
* This file is part of the Magallanes package.
*
* (c) Andrés Montañez <andres@andresmontanez.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mage\Command\BuiltIn;
use Mage\Command\AbstractCommand;
use Mage\Command\RequiresEnvironment;
use Mage\Task\Factory;
use Mage\Console;
/**
* This is an Alias of "release rollback"
*
* @author Andrés Montañez <andres@andresmontanez.com>
*/
class RollbackCommand extends AbstractCommand implements RequiresEnvironment
{
/**
* Rollback a release
* @see \Mage\Command\AbstractCommand::run()
*/
public function run()
{
2014-11-01 22:19:05 +01:00
$exitCode = 105;
2014-06-12 23:16:30 +02:00
$releaseId = $this->getConfig()->getArgument(1);
2014-08-06 19:35:50 +02:00
2014-06-12 23:22:13 +02:00
if (!is_numeric($releaseId)) {
Console::output('<red>This release is mandatory.</red>', 1, 2);
2014-11-01 22:19:05 +01:00
return 104;
2014-06-12 23:22:13 +02:00
}
$lockFile = getcwd() . '/.mage/' . $this->getConfig()->getEnvironment() . '.lock';
2014-08-06 19:35:50 +02:00
if (file_exists($lockFile)) {
2014-06-12 23:16:30 +02:00
Console::output('<red>This environment is locked!</red>', 1, 2);
echo file_get_contents($lockFile);
2014-11-01 22:19:05 +01:00
return 106;
2014-06-12 23:16:30 +02:00
}
// Run Tasks for Deployment
$hosts = $this->getConfig()->getHosts();
if (count($hosts) == 0) {
2014-11-01 22:31:04 +01:00
Console::output('<light_purple>Warning!</light_purple> <bold>No hosts defined, unable to get releases.</bold>', 1, 3);
2014-06-12 23:16:30 +02:00
} else {
2014-08-07 02:43:29 +02:00
$result = true;
2014-11-01 22:09:25 +01:00
foreach ($hosts as $hostKey => $host) {
// Check if Host has specific configuration
$hostConfig = null;
if (is_array($host)) {
$hostConfig = $host;
$host = $hostKey;
}
// Set Host and Host Specific Config
2014-06-12 23:16:30 +02:00
$this->getConfig()->setHost($host);
2014-11-01 22:09:25 +01:00
$this->getConfig()->setHostConfig($hostConfig);
2014-06-12 23:16:30 +02:00
2014-08-06 19:17:26 +02:00
$this->getConfig()->setReleaseId($releaseId);
2014-06-12 23:16:30 +02:00
$task = Factory::get('releases/rollback', $this->getConfig());
$task->init();
2014-08-07 02:43:29 +02:00
$result = $task->run() && $result;
}
if ($result) {
$exitCode = 0;
2014-06-12 23:16:30 +02:00
}
}
2014-08-07 02:43:29 +02:00
return $exitCode;
2014-06-12 23:16:30 +02:00
}
}