php-censor/src/PHPCensor/Plugin/Git.php

158 lines
3.8 KiB
PHP
Raw Normal View History

2014-04-16 12:14:19 +02:00
<?php
2016-07-19 20:28:11 +02:00
namespace PHPCensor\Plugin;
2014-04-16 12:14:19 +02:00
2016-07-19 20:28:11 +02:00
use PHPCensor\Plugin;
2014-04-16 12:14:19 +02:00
/**
* Git plugin.
*
2017-03-04 16:39:56 +01:00
* @author Dan Cryer <dan@block8.co.uk>
2014-04-16 12:14:19 +02:00
*/
2016-07-11 18:00:04 +02:00
class Git extends Plugin
2014-04-16 12:14:19 +02:00
{
2016-04-21 06:58:09 +02:00
protected $actions = [];
2014-04-16 12:14:19 +02:00
2017-01-11 16:15:54 +01:00
/**
* @return string
*/
public static function pluginName()
{
return 'git';
}
/**
* Run the Git plugin.
* @return bool
*/
2014-04-16 12:14:19 +02:00
public function execute()
{
$buildPath = $this->builder->buildPath;
2014-04-16 12:14:19 +02:00
// Check if there are any actions to be run for the branch we're running on:
if (!array_key_exists($this->build->getBranch(), $this->actions)) {
return true;
}
// If there are, run them:
$curdir = getcwd();
chdir($buildPath);
$success = true;
foreach ($this->actions[$this->build->getBranch()] as $action => $options) {
if (!$this->runAction($action, $options)) {
$success = false;
break;
}
}
chdir($curdir);
return $success;
}
/**
* Determine which action to run, and run it.
* @param $action
* @param array $options
* @return bool
*/
2016-04-21 06:58:09 +02:00
protected function runAction($action, array $options = [])
2014-04-16 12:14:19 +02:00
{
switch ($action) {
case 'merge':
return $this->runMergeAction($options);
case 'tag':
return $this->runTagAction($options);
case 'pull':
return $this->runPullAction($options);
case 'push':
return $this->runPushAction($options);
2014-04-16 12:14:19 +02:00
}
return false;
}
/**
* Handle a merge action.
* @param $options
* @return bool
*/
protected function runMergeAction($options)
{
if (array_key_exists('branch', $options)) {
$cmd = 'cd "%s" && git checkout %s && git merge "%s"';
$path = $this->builder->buildPath;
return $this->builder->executeCommand($cmd, $path, $options['branch'], $this->build->getBranch());
2014-04-16 12:14:19 +02:00
}
}
2014-04-16 12:14:19 +02:00
/**
* Handle a tag action.
* @param $options
* @return bool
*/
protected function runTagAction($options)
{
$tagName = date('Ymd-His');
$message = sprintf('Tag created by PHP Censor: %s', date('Y-m-d H:i:s'));
2014-04-16 12:14:19 +02:00
if (array_key_exists('name', $options)) {
$tagName = $this->builder->interpolate($options['name']);
}
2014-04-16 12:14:19 +02:00
if (array_key_exists('message', $options)) {
$message = $this->builder->interpolate($options['message']);
2014-04-16 12:14:19 +02:00
}
$cmd = 'git tag %s -m "%s"';
return $this->builder->executeCommand($cmd, $tagName, $message);
}
2014-04-16 12:14:19 +02:00
/**
* Handle a pull action.
* @param $options
* @return bool
*/
protected function runPullAction($options)
{
$branch = $this->build->getBranch();
$remote = 'origin';
2014-04-16 12:14:19 +02:00
if (array_key_exists('branch', $options)) {
$branch = $this->builder->interpolate($options['branch']);
}
2014-04-16 12:14:19 +02:00
if (array_key_exists('remote', $options)) {
$remote = $this->builder->interpolate($options['remote']);
2014-04-16 12:14:19 +02:00
}
return $this->builder->executeCommand('git pull %s %s', $remote, $branch);
}
2014-04-16 12:14:19 +02:00
/**
* Handle a push action.
* @param $options
* @return bool
*/
protected function runPushAction($options)
{
$branch = $this->build->getBranch();
$remote = 'origin';
2014-04-16 12:14:19 +02:00
if (array_key_exists('branch', $options)) {
$branch = $this->builder->interpolate($options['branch']);
}
2014-04-16 12:14:19 +02:00
if (array_key_exists('remote', $options)) {
$remote = $this->builder->interpolate($options['remote']);
2014-04-16 12:14:19 +02:00
}
return $this->builder->executeCommand('git push %s %s', $remote, $branch);
2014-04-16 12:14:19 +02:00
}
}