1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114:
<?php
namespace Net\Bazzline\Component\CommandCollection\Vcs;
use Net\Bazzline\Component\Command\AbstractCommand;
use Net\Bazzline\Component\Command\InvalidSystemEnvironmentException;
use Net\Bazzline\Component\Command\RuntimeException;
class Git extends AbstractCommand
{
public function __invoke()
{
return $this->execute('/usr/bin/env git');
}
public function checkout($source, $branch)
{
$this->validateRepositoryPath($source, 'source');
$currentWorkingDirectory = getcwd();
chdir($source);
$return = $this->execute('/usr/bin/env git checkout ' . $branch);
chdir($currentWorkingDirectory);
return $return;
}
public function create($source, $destination)
{
return $this->execute('/usr/bin/env git clone ' . $source . ' ' . $destination);
}
public function listTags($source)
{
$this->validateRepositoryPath($source, 'source');
$currentWorkingDirectory = getcwd();
chdir($source);
$return = $this->execute('/usr/bin/env git tag -l');
chdir($currentWorkingDirectory);
return $return;
}
public function update($source)
{
$this->validateRepositoryPath($source, 'source');
$currentWorkingDirectory = getcwd();
chdir($source);
$return = $this->execute('/usr/bin/env git pull');
chdir($currentWorkingDirectory);
return $return;
}
public function validateSystemEnvironment()
{
if (!is_executable('/usr/bin/git')) {
throw new InvalidSystemEnvironmentException(
'/usr/bin/git is mandatory'
);
}
}
private function validateRepositoryPath($path, $identifier = 'source')
{
if (!is_writable($path)
|| !is_dir($path)) {
throw new RuntimeException(
'given ' . $identifier . ' needs to be a writable directory'
);
}
}
}