Files
newznab-tmux-NNTmux/app/Extensions/util/Git.php
T
2020-03-29 14:51:21 +02:00

261 lines
5.8 KiB
PHP

<?php
/**
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program (see LICENSE.txt in the base directory. If
* not, see:.
*
* @link <http://www.gnu.org/licenses/>.
* @author niel
* @copyright 2016 nZEDb
*/
namespace App\Extensions\util;
use Cz\Git\GitRepository;
use Symfony\Component\Process\Process;
class Git
{
/**
* @var \Cz\Git\GitRepository
*/
protected $repo;
/**
* @var array
*/
public $_config;
/**
* @var
*/
protected $gitTagLatest;
/**
* @var string
*/
private $branch;
/**
* Git constructor.
*
* @param array $config
* @throws \Cz\Git\GitException
*/
public function __construct(array $config = [])
{
$defaults = [
'branches' => [
'stable' => [
'master',
'\d+\.\d+\.\d+(\.\d+)?',
],
'development' => [
'dev',
],
],
'filepath' => base_path().'/',
];
$config += $defaults;
$this->_config = $config;
$this->repo = new GitRepository(
$defaults['filepath']
);
$this->branch = $this->repo->getCurrentBranchName();
}
/**
* @param $options
*
* @return string[]
* @throws \Cz\Git\GitException
*/
public function describe($options)
{
return $this->repo->execute(['describe', $options]);
}
/**
* Return the currently active branch.
*
* @return string
*/
public function getBranch()
{
return $this->branch;
}
/**
* @return mixed
*/
public function getBranchesDevelop()
{
return $this->_config['branches']['development'];
}
/**
* Fetches the array of branch names that are considered to be core.
*
* @return array
*/
public function getBranchesMain()
{
return array_merge($this->getBranchesStable(), $this->getBranchesDevelop());
}
/**
* @return mixed
*/
public function getBranchesStable()
{
return $this->_config['branches']['stable'];
}
/**
* @return null|string
* @throws \Cz\Git\GitException
*/
public function getHeadHash()
{
return $this->repo->getLastCommitId();
}
/**
* Determine if the supplied object is commited to the repository or not.
*
* @param $gitObject
*
* @return bool
* @throws \Exception
*/
public function isCommited($gitObject)
{
$cmd = "cat-file -e $gitObject";
try {
$result = new Process($cmd);
$result->run();
return $result->getOutput();
} catch (\Exception $e) {
$message = explode("\n", $e->getMessage());
if ($message[0] === "fatal: Not a valid object name $gitObject") {
$result = false;
} else {
throw new \RuntimeException($message);
}
}
return $result === '';
}
/**
* @param $branch
*
* @return bool
*/
public function isStable($branch)
{
foreach ($this->getBranchesStable() as $pattern) {
if (! preg_match("#$pattern#", $branch)) {
continue;
}
return true;
}
return false;
}
/**
* Run the log command.
*
* @param null $options
*
* @return string
* @throws \Symfony\Component\Process\Exception\LogicException
* @throws \Symfony\Component\Process\Exception\RuntimeException
*/
public function log($options = null)
{
$command = new Process("git log $options");
$command->run();
return $command->getOutput();
}
/**
* @param array $options
*
* @return string[]
* @throws \Cz\Git\GitException
*/
public function gitPull(array $options = [])
{
$default = [
'branch' => $this->getBranch(),
'remote' => 'origin',
];
$options += $default;
return $this->repo->execute(['pull', $options['remote'], $options['branch'], '--tags']);
}
/**
* Run a git command in the git repository
* Accepts a git command to run.
*
*
* @param string $command Command to run
*
* @return string
* @throws \Cz\Git\GitException
*/
public function gitRun($command)
{
return $this->repo->execute([$command]);
}
/**
* Run the tag command.
*
* @param string $options
*
* @return string
* @throws \Symfony\Component\Process\Exception\RuntimeException
* @throws \Symfony\Component\Process\Exception\LogicException
*/
public function tag($options = null)
{
$command = new Process('git tag'.$options);
$command->run();
return $command->getOutput();
}
/**
* @param bool $cached
*
* @return string
* @throws \Cz\Git\GitException
*/
public function tagLatest($cached = true)
{
if (empty($this->gitTagLatest) || $cached === false) {
$this->gitTagLatest = $this->describe('--tags', '--abbrev=0 HEAD');
}
return $this->gitTagLatest[0];
}
}