*/ class Builder implements LoggerAwareInterface { /** * @var string */ public $buildPath; /** * @var string[] */ public $ignore = array(); /** * @var string */ protected $directory; /** * @var bool */ protected $verbose = true; /** * @var \PHPCI\Model\Build */ protected $build; /** * @var LoggerInterface */ protected $logger; /** * @var array */ protected $config; /** * @var string */ protected $lastOutput; /** * @var BuildInterpolator */ protected $interpolator; /** * @var \PHPCI\Store\BuildStore */ protected $store; /** * @var bool */ public $quiet = false; /** * @var \PHPCI\Plugin\Util\Executor */ protected $pluginExecutor; /** * @var Helper\CommandExecutor */ protected $commandExecutor; /** * @var Logging\BuildLogger */ protected $buildLogger; /** * Set up the builder. * @param \PHPCI\Model\Build $build * @param LoggerInterface $logger */ public function __construct(Build $build, LoggerInterface $logger = null) { $this->build = $build; $this->store = Factory::getStore('Build'); $this->buildLogger = new BuildLogger($logger, $build); $pluginFactory = $this->buildPluginFactory($build); $pluginFactory->addConfigFromFile(PHPCI_DIR . "/pluginconfig.php"); $this->pluginExecutor = new Plugin\Util\Executor($pluginFactory, $this->buildLogger); $executorClass = 'PHPCI\Helper\UnixCommandExecutor'; if (IS_WIN) { $executorClass = 'PHPCI\Helper\WindowsCommandExecutor'; } $this->commandExecutor = new $executorClass( $this->buildLogger, PHPCI_DIR, $this->quiet, $this->verbose ); $this->interpolator = new BuildInterpolator(); } /** * Set the config array, as read from phpci.yml * @param array|null $config * @throws \Exception */ public function setConfigArray($config) { if (is_null($config) || !is_array($config)) { throw new \Exception(Lang::get('missing_phpci_yml')); } $this->config = $config; } /** * Access a variable from the phpci.yml file. * @param string * @return mixed */ public function getConfig($key) { $rtn = null; if (isset($this->config[$key])) { $rtn = $this->config[$key]; } return $rtn; } /** * Access a variable from the config.yml * @param $key * @return mixed */ public function getSystemConfig($key) { return Config::getInstance()->get($key); } /** * @return string The title of the project being built. */ public function getBuildProjectTitle() { return $this->build->getProject()->getTitle(); } /** * Run the active build. */ public function execute() { // Update the build in the database, ping any external services. $this->build->setStatus(Build::STATUS_RUNNING); $this->build->setStarted(new \DateTime()); $this->store->save($this->build); $this->build->sendStatusPostback(); $success = true; try { // Set up the build: $this->setupBuild(); // Run the core plugin stages: foreach (array('setup', 'test') as $stage) { $success &= $this->pluginExecutor->executePlugins($this->config, $stage); } // Set the status so this can be used by complete, success and failure // stages. if ($success) { $this->build->setStatus(Build::STATUS_SUCCESS); } else { $this->build->setStatus(Build::STATUS_FAILED); } // Complete stage plugins are always run $this->pluginExecutor->executePlugins($this->config, 'complete'); if ($success) { $this->pluginExecutor->executePlugins($this->config, 'success'); $this->buildLogger->logSuccess(Lang::get('build_success')); } else { $this->pluginExecutor->executePlugins($this->config, 'failure'); $this->buildLogger->logFailure(Lang::get('build_failed')); } } catch (\Exception $ex) { $this->build->setStatus(Build::STATUS_FAILED); $this->buildLogger->logFailure(Lang::get('exception') . $ex->getMessage()); } // Update the build in the database, ping any external services, etc. $this->build->sendStatusPostback(); $this->build->setFinished(new \DateTime()); // Clean up: $this->buildLogger->log(Lang::get('removing_build')); $this->build->removeBuildDirectory(); $this->store->save($this->build); } /** * Used by this class, and plugins, to execute shell commands. */ public function executeCommand() { return $this->commandExecutor->executeCommand(func_get_args()); } /** * Returns the output from the last command run. */ public function getLastOutput() { return $this->commandExecutor->getLastOutput(); } /** * Specify whether exec output should be logged. * @param bool $enableLog */ public function logExecOutput($enableLog = true) { $this->commandExecutor->logExecOutput = $enableLog; } /** * Find a binary required by a plugin. * @param $binary * @return null|string */ public function findBinary($binary) { return $this->commandExecutor->findBinary($binary, $this->buildPath); } /** * Replace every occurrence of the interpolation vars in the given string * Example: "This is build %PHPCI_BUILD%" => "This is build 182" * @param string $input * @return string */ public function interpolate($input) { return $this->interpolator->interpolate($input); } /** * Set up a working copy of the project for building. */ protected function setupBuild() { $this->buildPath = $this->build->getBuildPath() . '/'; $this->build->currentBuildPath = $this->buildPath; $this->interpolator->setupInterpolationVars( $this->build, $this->buildPath, PHPCI_URL ); $this->commandExecutor->setBuildPath($this->buildPath); // Create a working copy of the project: if (!$this->build->createWorkingCopy($this, $this->buildPath)) { throw new \Exception(Lang::get('could_not_create_working')); } // Does the project's phpci.yml request verbose mode? if (!isset($this->config['build_settings']['verbose']) || !$this->config['build_settings']['verbose']) { $this->verbose = false; } // Does the project have any paths it wants plugins to ignore? if (isset($this->config['build_settings']['ignore'])) { $this->ignore = $this->config['build_settings']['ignore']; } $this->buildLogger->logSuccess(Lang::get('working_copy_created', $this->buildPath)); return true; } /** * Sets a logger instance on the object * * @param LoggerInterface $logger * @return null */ public function setLogger(LoggerInterface $logger) { $this->buildLogger->setLogger($logger); } /** * Write to the build log. * @param $message * @param string $level * @param array $context */ public function log($message, $level = LogLevel::INFO, $context = array()) { $this->buildLogger->log($message, $level, $context); } /** * Add a success-coloured message to the log. * @param string */ public function logSuccess($message) { $this->buildLogger->logSuccess($message); } /** * Add a failure-coloured message to the log. * @param string $message * @param \Exception $exception The exception that caused the error. */ public function logFailure($message, \Exception $exception = null) { $this->buildLogger->logFailure($message, $exception); } /** * Returns a configured instance of the plugin factory. * * @param Build $build * @return PluginFactory */ private function buildPluginFactory(Build $build) { $pluginFactory = new PluginFactory(); $self = $this; $pluginFactory->registerResource( function () use ($self) { return $self; }, null, 'PHPCI\Builder' ); $pluginFactory->registerResource( function () use ($build) { return $build; }, null, 'PHPCI\Model\Build' ); $logger = $this->logger; $pluginFactory->registerResource( function () use ($logger) { return $logger; }, null, 'Psr\Log\LoggerInterface' ); $pluginFactory->registerResource( function () use ($self) { $factory = new MailerFactory($self->getSystemConfig('phpci')); return $factory->getSwiftMailerFromConfig(); }, null, 'Swift_Mailer' ); return $pluginFactory; } }