/src/Composer/Repository/Vcs/GitBitbucketDriver.php
https://github.com/ecoleman/composer · PHP · 162 lines · 99 code · 24 blank · 39 comment · 9 complexity · bc6e4cee8ddd234060deaba1503c07bd MD5 · raw file
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\Repository\Vcs;
- use Composer\Json\JsonFile;
- use Composer\IO\IOInterface;
- /**
- * @author Per Bernhardt <plb@webfactory.de>
- */
- class GitBitbucketDriver extends VcsDriver implements VcsDriverInterface
- {
- protected $owner;
- protected $repository;
- protected $tags;
- protected $branches;
- protected $rootIdentifier;
- protected $infoCache = array();
- /**
- * {@inheritDoc}
- */
- public function initialize()
- {
- preg_match('#^https://bitbucket\.org/([^/]+)/(.+?)\.git$#', $this->url, $match);
- $this->owner = $match[1];
- $this->repository = $match[2];
- $this->originUrl = 'bitbucket.org';
- }
- /**
- * {@inheritDoc}
- */
- public function getRootIdentifier()
- {
- if (null === $this->rootIdentifier) {
- $resource = $this->getScheme() . '://api.bitbucket.org/1.0/repositories/'.$this->owner.'/'.$this->repository;
- $repoData = JsonFile::parseJson($this->getContents($resource), $resource);
- $this->rootIdentifier = !empty($repoData['main_branch']) ? $repoData['main_branch'] : 'master';
- }
- return $this->rootIdentifier;
- }
- /**
- * {@inheritDoc}
- */
- public function getUrl()
- {
- return $this->url;
- }
- /**
- * {@inheritDoc}
- */
- public function getSource($identifier)
- {
- $label = array_search($identifier, $this->getTags()) ?: $identifier;
- return array('type' => 'git', 'url' => $this->getUrl(), 'reference' => $label);
- }
- /**
- * {@inheritDoc}
- */
- public function getDist($identifier)
- {
- $label = array_search($identifier, $this->getTags()) ?: $identifier;
- $url = $this->getScheme() . '://bitbucket.org/'.$this->owner.'/'.$this->repository.'/get/'.$label.'.zip';
- return array('type' => 'zip', 'url' => $url, 'reference' => $label, 'shasum' => '');
- }
- /**
- * {@inheritDoc}
- */
- public function getComposerInformation($identifier)
- {
- if (!isset($this->infoCache[$identifier])) {
- $resource = $this->getScheme() . '://bitbucket.org/'.$this->owner.'/'.$this->repository.'/raw/'.$identifier.'/composer.json';
- $composer = $this->getContents($resource);
- if (!$composer) {
- return;
- }
- $composer = JsonFile::parseJson($composer, $resource);
- if (!isset($composer['time'])) {
- $resource = $this->getScheme() . '://api.bitbucket.org/1.0/repositories/'.$this->owner.'/'.$this->repository.'/changesets/'.$identifier;
- $changeset = JsonFile::parseJson($this->getContents($resource), $resource);
- $composer['time'] = $changeset['timestamp'];
- }
- $this->infoCache[$identifier] = $composer;
- }
- return $this->infoCache[$identifier];
- }
- /**
- * {@inheritDoc}
- */
- public function getTags()
- {
- if (null === $this->tags) {
- $resource = $this->getScheme() . '://api.bitbucket.org/1.0/repositories/'.$this->owner.'/'.$this->repository.'/tags';
- $tagsData = JsonFile::parseJson($this->getContents($resource), $resource);
- $this->tags = array();
- foreach ($tagsData as $tag => $data) {
- $this->tags[$tag] = $data['raw_node'];
- }
- }
- return $this->tags;
- }
- /**
- * {@inheritDoc}
- */
- public function getBranches()
- {
- if (null === $this->branches) {
- $resource = $this->getScheme() . '://api.bitbucket.org/1.0/repositories/'.$this->owner.'/'.$this->repository.'/branches';
- $branchData = JsonFile::parseJson($this->getContents($resource), $resource);
- $this->branches = array();
- foreach ($branchData as $branch => $data) {
- $this->branches[$branch] = $data['raw_node'];
- }
- }
- return $this->branches;
- }
- /**
- * {@inheritDoc}
- */
- public static function supports(IOInterface $io, $url, $deep = false)
- {
- if (!preg_match('#^https://bitbucket\.org/([^/]+)/(.+?)\.git$#', $url)) {
- return false;
- }
- if (!extension_loaded('openssl')) {
- if ($io->isVerbose()) {
- $io->write('Skipping Bitbucket git driver for '.$url.' because the OpenSSL PHP extension is missing.');
- }
- return false;
- }
- return true;
- }
- }