aboutsummaryrefslogtreecommitdiffstats
path: root/clients/common.go
blob: b2e906da9d3ebf0258d511ea76ab9ef741fc61ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package clients

import (
	"fmt"
	"net/url"

	"gopkg.in/src-d/go-git.v2/clients/common"
	"gopkg.in/src-d/go-git.v2/clients/file"
	"gopkg.in/src-d/go-git.v2/clients/http"
	"gopkg.in/src-d/go-git.v2/clients/ssh"
)

// NewGitUploadPackService returns the appropiate upload pack service
// among of the set of supported protocols: HTTP, SSH or file.
// TODO: should this get a scheme as an argument instead of an URL?
func NewGitUploadPackService(repoURL string) (common.GitUploadPackService, error) {
	u, err := url.Parse(repoURL)
	if err != nil {
		return nil, fmt.Errorf("invalid url %q", repoURL)
	}
	switch u.Scheme {
	case "http", "https":
		return http.NewGitUploadPackService(), nil
	case "ssh":
		return ssh.NewGitUploadPackService(), nil
	case "file":
		return file.NewGitUploadPackService(), nil
	default:
		return nil, fmt.Errorf("unsupported scheme %q", u.Scheme)
	}
}