remote forking: use the original http/https url in description
[phorkie.git] / src / phorkie / ForkRemote.php
index 524255aca5564184eae44fa65a98c658afc98154..d2b077be06b7762219141a3ecaadf0ffe90150bf 100644 (file)
@@ -22,7 +22,17 @@ 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'
+        ) {
+            $this->arGitUrls[][] = 'git://gist.github.com/'
+                . ltrim($arUrl['path'], '/') . '.git';
+            return true;
+        }
+
         switch ($scheme) {
         case 'git':
             //clearly a git url
@@ -105,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';