123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
- namespace Composer\Repository\Vcs;
- use Composer\Json\JsonFile;
- /**
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class SvnDriver implements VcsDriverInterface
- {
- protected $url;
- protected $baseUrl;
- protected $tags;
- protected $branches;
- protected $infoCache = array();
- public function __construct($url)
- {
- $this->url = $this->baseUrl = rtrim($url, '/');
- if (false !== ($pos = strrpos($url, '/trunk'))) {
- $this->baseUrl = substr($url, 0, $pos);
- }
- }
- /**
- * {@inheritDoc}
- */
- public function initialize()
- {
- $this->getBranches();
- $this->getTags();
- }
- /**
- * {@inheritDoc}
- */
- public function getRootIdentifier()
- {
- return 'trunk';
- }
- /**
- * {@inheritDoc}
- */
- public function getUrl()
- {
- return $this->url;
- }
- /**
- * {@inheritDoc}
- */
- public function getSource($identifier)
- {
- return array('type' => 'svn', 'url' => $this->baseUrl, 'reference' => $identifier);
- }
- /**
- * {@inheritDoc}
- */
- public function getDist($identifier)
- {
- return null;
- }
- /**
- * {@inheritDoc}
- */
- public function getComposerInformation($identifier)
- {
- if (!isset($this->infoCache[$identifier])) {
- preg_match('{^(.+?)(@\d+)?$}', $identifier, $match);
- if (!empty($match[2])) {
- $identifier = $match[1];
- $rev = $match[2];
- } else {
- $rev = '';
- }
- exec(sprintf('svn cat --non-interactive %s', escapeshellarg($this->baseUrl.$identifier.'composer.json'.$rev)), $output);
- $composer = implode("\n", $output);
- unset($output);
- if (!$composer) {
- throw new \UnexpectedValueException('Failed to retrieve composer information for identifier '.$identifier.' in '.$this->getUrl());
- }
- $composer = JsonFile::parseJson($composer);
- if (!isset($composer['time'])) {
- exec(sprintf('svn info %s', escapeshellarg($this->baseUrl.$identifier.$rev)), $output);
- foreach ($output as $line) {
- if (preg_match('{^Last Changed Date: ([^(]+)}', $line, $match)) {
- $date = new \DateTime($match[1]);
- $composer['time'] = $date->format('Y-m-d H:i:s');
- break;
- }
- }
- }
- $this->infoCache[$identifier] = $composer;
- }
- return $this->infoCache[$identifier];
- }
- /**
- * {@inheritDoc}
- */
- public function getTags()
- {
- if (null === $this->tags) {
- exec(sprintf('svn ls --non-interactive %s', escapeshellarg($this->baseUrl.'/tags')), $output);
- $this->tags = array();
- foreach ($output as $tag) {
- $this->tags[rtrim($tag, '/')] = '/tags/'.$tag;
- }
- }
- return $this->tags;
- }
- /**
- * {@inheritDoc}
- */
- public function getBranches()
- {
- if (null === $this->branches) {
- exec(sprintf('svn ls --verbose --non-interactive %s', escapeshellarg($this->baseUrl.'/')), $output);
- $this->branches = array();
- foreach ($output as $line) {
- preg_match('{^\s*(\S+).*?(\S+)\s*$}', $line, $match);
- if ($match[2] === 'trunk/') {
- $this->branches['trunk'] = '/trunk/@'.$match[1];
- break;
- }
- }
- unset($output);
- exec(sprintf('svn ls --verbose --non-interactive %s', escapeshellarg($this->baseUrl.'/branches')), $output);
- foreach ($output as $line) {
- preg_match('{^\s*(\S+).*?(\S+)\s*$}', $line, $match);
- if ($match[2] === './') {
- continue;
- }
- $this->branches[rtrim($match[2], '/')] = '/branches/'.$match[2].'@'.$match[1];
- }
- }
- return $this->branches;
- }
- /**
- * {@inheritDoc}
- */
- public function hasComposerFile($identifier)
- {
- try {
- $this->getComposerInformation($identifier);
- return true;
- } catch (\Exception $e) {
- }
- return false;
- }
- /**
- * {@inheritDoc}
- */
- public static function supports($url, $deep = false)
- {
- if (preg_match('#(^svn://|//svn\.)#i', $url)) {
- return true;
- }
- if (!$deep) {
- return false;
- }
- exec(sprintf('svn info --non-interactive %s', escapeshellarg($url)), $output);
- return preg_match('{^Repository UUID:}m', implode("\n", $output)) >= 1;
- }
- }
|