magallanes/Mage/Command/BuiltIn/ReleasesCommand.php

83 lines
2.5 KiB
PHP
Raw Normal View History

2012-01-01 16:36:41 +01:00
<?php
2013-11-05 17:12:09 +01:00
/*
* 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;
/**
* Command for Managing the Releases
*
* @author Andrés Montañez <andres@andresmontanez.com>
*/
class ReleasesCommand extends AbstractCommand implements RequiresEnvironment
2012-01-01 16:36:41 +01:00
{
/**
* List the Releases, Rollback to a Release
* @see \Mage\Command\AbstractCommand::run()
*/
public function run()
2012-01-01 16:36:41 +01:00
{
2014-08-06 19:35:50 +02:00
$result = false;
$subCommand = $this->getConfig()->getArgument(1);
2012-01-01 16:36:41 +01:00
// Run Tasks for Deployment
$hosts = $this->getConfig()->getHosts();
2012-01-01 16:36:41 +01:00
if (count($hosts) == 0) {
Console::output(
'<light_purple>Warning!</light_purple> <dark_gray>No hosts defined, unable to get releases.</dark_gray>',
1, 3
);
return false;
}
foreach ($hosts as $host) {
$this->getConfig()->setHost($host);
switch ($subCommand) {
2014-08-06 19:01:39 +02:00
case 'list':
$task = Factory::get('releases/list', $this->getConfig());
$task->init();
$result = $task->run();
break;
2014-08-06 19:01:39 +02:00
case 'rollback':
if (!is_numeric($this->getConfig()->getParameter('release', ''))) {
Console::output('<red>Missing required releaseid.</red>', 1, 2);
2014-08-06 19:01:39 +02:00
return false;
}
2014-08-06 19:01:39 +02:00
$lockFile = getcwd() . '/.mage/' . $this->getConfig()->getEnvironment() . '.lock';
if (file_exists($lockFile)) {
Console::output('<red>This environment is locked!</red>', 1, 2);
echo file_get_contents($lockFile);
2014-08-06 19:01:39 +02:00
return false;
}
2014-08-06 19:01:39 +02:00
$releaseId = $this->getConfig()->getParameter('release', '');
2014-08-06 19:17:26 +02:00
$this->getConfig()->setReleaseId($releaseId);
2014-08-06 19:01:39 +02:00
$task = Factory::get('releases/rollback', $this->getConfig());
$task->init();
$result = $task->run();
break;
2012-01-01 16:36:41 +01:00
}
}
2013-12-19 18:37:26 +01:00
return $result;
2012-01-01 16:36:41 +01:00
}
}