X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/813d3f5367c15dd21091af6eb7d263e1d98c4c17..52de444faa10f37c4174e9fe2c75e77484342549:/src/phorkie/ForkRemote.php diff --git a/src/phorkie/ForkRemote.php b/src/phorkie/ForkRemote.php index c9ed748..d2b077b 100644 --- a/src/phorkie/ForkRemote.php +++ b/src/phorkie/ForkRemote.php @@ -22,13 +22,15 @@ class ForkRemote public function parse() { - $arUrl = parse_url($this->url); + $arUrl = parse_url($this->url); $scheme = $arUrl['scheme'] ?: ''; + if ($scheme == 'https' && isset($arUrl['host']) && $arUrl['host'] == 'gist.github.com' ) { - $scheme = 'git'; - $this->url = 'git://gist.github.com/'. ltrim($arUrl['path'], '/') . '.git'; + $this->arGitUrls[][] = 'git://gist.github.com/' + . ltrim($arUrl['path'], '/') . '.git'; + return true; } switch ($scheme) { @@ -113,6 +115,22 @@ class ForkRemote return $this->arGitUrls; } + /** + * Get the URL from which the git URL was derived, often + * the HTTP URL. + * + * @return string + */ + public function getUrl() + { + return $this->url; + } + + public function setUrl($url) + { + $this->url = $url; + } + public function isSupported($url) { return parse_url($url, PHP_URL_SCHEME) == 'git';