Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Adding rebuild queue option
- Loading branch information
Dan Cryer
committed
Nov 3, 2015
1 parent
9ea6f29
commit 4b8d25c
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?php | ||
/** | ||
* PHPCI - Continuous Integration for PHP | ||
* | ||
* @copyright Copyright 2015, Block 8 Limited. | ||
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md | ||
* @link https://www.phptesting.org/ | ||
*/ | ||
|
||
namespace PHPCI\Command; | ||
|
||
use b8\Config; | ||
use b8\Store\Factory; | ||
use Monolog\Logger; | ||
use PHPCI\BuildFactory; | ||
use PHPCI\Helper\Lang; | ||
use PHPCI\Logging\OutputLogHandler; | ||
use PHPCI\Service\BuildService; | ||
use Symfony\Component\Console\Command\Command; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
|
||
|
||
/** | ||
* @author Dan Cryer <dan@block8.co.uk> | ||
* @package PHPCI | ||
* @subpackage Console | ||
*/ | ||
class RebuildQueueCommand extends Command | ||
{ | ||
/** | ||
* @var OutputInterface | ||
*/ | ||
protected $output; | ||
|
||
/** | ||
* @var Logger | ||
*/ | ||
protected $logger; | ||
|
||
/** | ||
* @param \Monolog\Logger $logger | ||
* @param string $name | ||
*/ | ||
public function __construct(Logger $logger, $name = null) | ||
{ | ||
parent::__construct($name); | ||
$this->logger = $logger; | ||
} | ||
|
||
protected function configure() | ||
{ | ||
$this | ||
->setName('phpci:rebuild-queue') | ||
->setDescription('Rebuilds the PHPCI worker queue.'); | ||
} | ||
|
||
protected function execute(InputInterface $input, OutputInterface $output) | ||
{ | ||
$this->output = $output; | ||
|
||
// For verbose mode we want to output all informational and above | ||
// messages to the symphony output interface. | ||
if ($input->hasOption('verbose') && $input->getOption('verbose')) { | ||
$this->logger->pushHandler( | ||
new OutputLogHandler($this->output, Logger::INFO) | ||
); | ||
} | ||
|
||
$store = Factory::getStore('Build'); | ||
$result = $store->getByStatus(0); | ||
|
||
$this->logger->addInfo(Lang::get('found_n_builds', count($result['items']))); | ||
|
||
$buildService = new BuildService($store); | ||
|
||
while (count($result['items'])) { | ||
$build = array_shift($result['items']); | ||
$build = BuildFactory::getBuild($build); | ||
|
||
$this->logger->addInfo('Added build #' . $build->getId() . ' to queue.'); | ||
$buildService->addBuildToQueue($build); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters