From: Christian Weiske Date: Fri, 21 Sep 2012 17:49:51 +0000 (+0200) Subject: gist.github.com forking support X-Git-Tag: v0.3.0~26 X-Git-Url: https://git.cweiske.de/phorkie.git/commitdiff_plain/813d3f5367c15dd21091af6eb7d263e1d98c4c17 gist.github.com forking support --- diff --git a/src/phorkie/ForkRemote.php b/src/phorkie/ForkRemote.php index 524255a..c9ed748 100644 --- a/src/phorkie/ForkRemote.php +++ b/src/phorkie/ForkRemote.php @@ -22,7 +22,15 @@ class ForkRemote public function parse() { - $scheme = parse_url($this->url, PHP_URL_SCHEME); + $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'; + } + switch ($scheme) { case 'git': //clearly a git url